- settings.gradle.kts: add dependencyResolutionManagement repositories so app deps resolve - activity_main.xml: move help text with raw quotes to a string resource (commands_help) - RingService.kt: import NotificationChannel and PendingIntent - gradle wrapper: add gradlew + gradle-wrapper.jar, regenerate properties - add .gitignore for build outputs and local.properties
17 lines
No EOL
265 B
Kotlin
17 lines
No EOL
265 B
Kotlin
pluginManagement {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
rootProject.name = "LostMyPhone"
|
|
include(":app") |