10
0
MetaPluginAndroidDemo/settings.gradle
andre 92fedb7b19 [MWA-5265] Meta Demo: Theming via xml
{Update actionId placeholder and add theming strings}

[MWA-5265] Meta Demo: Theming via xml

{Clean up dependencies and UI}

[MWA-5265] Meta Demo: Theming via xml

{cr fixes}

[MWA-5265] Meta Demo: Theming via xml

{Configure light and dark themes}

[MWA-5265] Meta Demo: Theming via xml

{Update placeholder for action ID}

[MWA-5265] Meta Demo: Theming via xml

{CR fixes}

[MWA-5265] Meta Demo: Theming via xml

{updated dependencies}

[MWA-5265] Meta Demo: Theming via xml

{added Standart Theme}

[MWA-5265] Meta Demo: Theming via xml

{change theme colors}

c[MWA-5265] Meta Demo: Theming via xml

{Use RadioButton for theming choice}

[MWA-5265] Meta Demo: Theming via xml

{Update demo app UI and theming}

[MWA-5265] Meta Demo: Theming via xml testen

{added more colors}

[MWA-5265] Meta Demo: Theming via xml testen

{Update app theme to WebId.PluginTheme}

[MWA-5265] Meta Demo: Theming via xml testen

{addAdd Compose theming option to MetaPl}ugin

[MWA-5265] Meta Demo: Theming via xml testen

{Update dependencies and plugin initialization}

[MWA-5265] Meta Demo: Theming via xml testen

{Refactor UI to Jetpack Compose}

[MWA-5265] Meta Demo: Theming via xml testen

{added translations}
2025-11-25 11:02:49 +01:00

33 lines
890 B
Groovy

pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
// add the webid repo to receive the plugin
maven {
url "https://api.webid-solutions.de/releases/android/maven/repository/snapshots"
}
maven {
url "https://api.webid-solutions.de/releases/android/maven2/snapshots"
}
// use our release repository for releases
maven {
url "https://api.webid-solutions.de/releases/android/maven/repository/internal"
}
maven {
url "https://api.webid-solutions.de/releases/android/maven2/releases"
}
}
}
rootProject.name = "MetaPluginDemo"
include ':app'