595b6a72ce
- Fix XML encoding issues (corrupted degree symbols, non-UTF8 bytes) - Add swiperefreshlayout dependency for SwipeRefreshLayout - Add missing string resources (language_*, select_map_type, select_language) - Fix SettingsFragment ViewBinding AutoCompleteTextView compatibility - Replace Material AutoCompleteTextView with android.widget version - Add jitpack.io repo for MPAndroidChart dependency - Add gradle wrapper (8.2) for reproducible builds - Update .gitignore for build artifacts
20 lines
413 B
Groovy
20 lines
413 B
Groovy
pluginManagement {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
maven { url "https://jitpack.io" }
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
maven { url "https://jitpack.io" }
|
|
}
|
|
}
|
|
|
|
rootProject.name = "sensTools"
|
|
include ':app'
|