@pi-r/android 0.9.1 → 0.9.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/data/google-maven-snapshot.json +1 -1
- package/data/google-maven.json +1 -1
- package/index.d.ts +6 -6
- package/package.json +1 -1
- package/project/${app}/${src}/res/drawable/ic_launcher_background.xml +170 -170
- package/project/${app}/${src}/res/drawable/ic_launcher_foreground.xml +29 -29
- package/project/${app}/${src}/res/mipmap-anydpi-v26/ic_launcher.xml +5 -5
- package/project/${app}/${src}/res/mipmap-anydpi-v26/ic_launcher_round.xml +5 -5
- package/project/gradle/wrapper/gradle-wrapper.properties +4 -4
- package/project/gradle.properties +3 -3
- package/template/AndroidManifest.xml +24 -24
- package/template/java/build.gradle +1 -1
- package/template/java/settings.gradle +17 -17
- package/template/java/static/build.gradle +2 -2
- package/template/java+kotlin/build.gradle +1 -1
- package/template/java+kotlin/settings.gradle +23 -23
- package/template/java+kotlin/static/build.gradle +2 -2
- package/template/kotlin/build.gradle.kts +2 -2
- package/template/kotlin/libs.versions.toml +4 -4
- package/template/kotlin/settings.gradle.kts +23 -29
- package/template/kotlin/static/build.gradle.kts +4 -4
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
[versions]
|
|
2
|
-
agp = "8.8.
|
|
2
|
+
agp = "8.8.2"
|
|
3
3
|
kotlin = "2.1.10"
|
|
4
4
|
coreKtx = "1.15.0"
|
|
5
5
|
junit = "4.13.2"
|
|
6
6
|
junitVersion = "1.2.1"
|
|
7
7
|
espressoCore = "3.6.1"
|
|
8
8
|
appcompat = "1.7.0"
|
|
9
|
-
constraintlayout = "2.2.
|
|
9
|
+
constraintlayout = "2.2.1"
|
|
10
10
|
|
|
11
11
|
[libraries]
|
|
12
12
|
androidx-core-ktx = { group = "androidx.core", name = "core-ktx", version.ref = "coreKtx" }
|
|
@@ -19,5 +19,5 @@ androidx-constraintlayout = { group = "androidx.constraintlayout", name = "const
|
|
|
19
19
|
|
|
20
20
|
[plugins]
|
|
21
21
|
android-application = { id = "com.android.application", version.ref = "agp" }
|
|
22
|
-
|
|
23
|
-
|
|
22
|
+
kotlin-android = { id = "org.jetbrains.kotlin.android", version.ref = "kotlin" }
|
|
23
|
+
kotlin-compose = { id = "org.jetbrains.kotlin.plugin.compose", version.ref = "kotlin" }
|
|
@@ -1,30 +1,24 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
includeGroupByRegex("
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
google()
|
|
25
|
-
mavenCentral()
|
|
26
|
-
}
|
|
27
|
-
}
|
|
28
|
-
|
|
29
|
-
rootProject.name = "{{projectName}}"
|
|
1
|
+
pluginManagement {
|
|
2
|
+
repositories {
|
|
3
|
+
google {
|
|
4
|
+
content {
|
|
5
|
+
includeGroupByRegex("com\\.android.*")
|
|
6
|
+
includeGroupByRegex("com\\.google.*")
|
|
7
|
+
includeGroupByRegex("androidx.*")
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
mavenCentral()
|
|
11
|
+
gradlePluginPortal()
|
|
12
|
+
}
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
dependencyResolutionManagement {
|
|
16
|
+
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
17
|
+
repositories {
|
|
18
|
+
google()
|
|
19
|
+
mavenCentral()
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
rootProject.name = "{{projectName}}"
|
|
30
24
|
include("{{name}}")
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
plugins {
|
|
2
|
-
alias(libs.plugins.android.application) apply false
|
|
3
|
-
alias(libs.plugins.
|
|
4
|
-
alias(libs.plugins.
|
|
1
|
+
plugins {
|
|
2
|
+
alias(libs.plugins.android.application) apply false
|
|
3
|
+
alias(libs.plugins.kotlin.android) apply false
|
|
4
|
+
alias(libs.plugins.kotlin.compose) apply false
|
|
5
5
|
}
|