Files
sensTools/android/settings.gradle
T
茂之钳 595b6a72ce fix-build: APK compilation fixes
- 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
2026-05-25 04:43:42 +00:00

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'