@pi-r/android 0.8.0 → 0.8.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/extensions/gradle/dependencies/index.js +39 -37
- package/package.json +29 -29
- 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.properties +3 -3
- package/template/java/build.gradle +38 -38
- package/template/java/static/build.gradle +2 -2
- package/template/java+kotlin/build.gradle +43 -43
- package/template/java+kotlin/static/build.gradle +3 -3
- package/template/kotlin/build.gradle.kts +48 -48
- package/template/kotlin/libs.versions.toml +4 -4
|
@@ -1,39 +1,39 @@
|
|
|
1
|
-
plugins {
|
|
2
|
-
id 'com.android.application'
|
|
3
|
-
}
|
|
4
|
-
|
|
5
|
-
android {
|
|
6
|
-
namespace ''
|
|
7
|
-
compileSdk 35
|
|
8
|
-
|
|
9
|
-
defaultConfig {
|
|
10
|
-
applicationId ''
|
|
11
|
-
minSdk
|
|
12
|
-
targetSdk 35
|
|
13
|
-
versionCode 1
|
|
14
|
-
versionName '1.0'
|
|
15
|
-
|
|
16
|
-
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
|
|
17
|
-
}
|
|
18
|
-
buildTypes {
|
|
19
|
-
release {
|
|
20
|
-
debuggable false
|
|
21
|
-
minifyEnabled true
|
|
22
|
-
shrinkResources false
|
|
23
|
-
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
24
|
-
}
|
|
25
|
-
}
|
|
26
|
-
compileOptions {
|
|
27
|
-
sourceCompatibility JavaVersion.VERSION_1_8
|
|
28
|
-
targetCompatibility JavaVersion.VERSION_1_8
|
|
29
|
-
}
|
|
30
|
-
buildFeatures {
|
|
31
|
-
viewBinding false
|
|
32
|
-
}
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
dependencies {
|
|
36
|
-
testImplementation 'junit:junit:4.13.2'
|
|
37
|
-
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
|
|
38
|
-
androidTestImplementation 'androidx.test.espresso:espresso-core:3.
|
|
1
|
+
plugins {
|
|
2
|
+
id 'com.android.application'
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
android {
|
|
6
|
+
namespace ''
|
|
7
|
+
compileSdk 35
|
|
8
|
+
|
|
9
|
+
defaultConfig {
|
|
10
|
+
applicationId ''
|
|
11
|
+
minSdk 24
|
|
12
|
+
targetSdk 35
|
|
13
|
+
versionCode 1
|
|
14
|
+
versionName '1.0'
|
|
15
|
+
|
|
16
|
+
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
|
|
17
|
+
}
|
|
18
|
+
buildTypes {
|
|
19
|
+
release {
|
|
20
|
+
debuggable false
|
|
21
|
+
minifyEnabled true
|
|
22
|
+
shrinkResources false
|
|
23
|
+
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
compileOptions {
|
|
27
|
+
sourceCompatibility JavaVersion.VERSION_1_8
|
|
28
|
+
targetCompatibility JavaVersion.VERSION_1_8
|
|
29
|
+
}
|
|
30
|
+
buildFeatures {
|
|
31
|
+
viewBinding false
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
dependencies {
|
|
36
|
+
testImplementation 'junit:junit:4.13.2'
|
|
37
|
+
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
|
|
38
|
+
androidTestImplementation 'androidx.test.espresso:espresso-core:3.6.1'
|
|
39
39
|
}
|
|
@@ -1,44 +1,44 @@
|
|
|
1
|
-
plugins {
|
|
2
|
-
id 'com.android.application'
|
|
3
|
-
id 'org.jetbrains.kotlin.android'
|
|
4
|
-
}
|
|
5
|
-
|
|
6
|
-
android {
|
|
7
|
-
namespace ''
|
|
8
|
-
compileSdk 35
|
|
9
|
-
|
|
10
|
-
defaultConfig {
|
|
11
|
-
applicationId ''
|
|
12
|
-
minSdk
|
|
13
|
-
targetSdk 35
|
|
14
|
-
versionCode 1
|
|
15
|
-
versionName '1.0'
|
|
16
|
-
|
|
17
|
-
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
|
|
18
|
-
}
|
|
19
|
-
buildTypes {
|
|
20
|
-
release {
|
|
21
|
-
debuggable false
|
|
22
|
-
minifyEnabled true
|
|
23
|
-
shrinkResources false
|
|
24
|
-
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
25
|
-
}
|
|
26
|
-
}
|
|
27
|
-
compileOptions {
|
|
28
|
-
sourceCompatibility JavaVersion.VERSION_1_8
|
|
29
|
-
targetCompatibility JavaVersion.VERSION_1_8
|
|
30
|
-
}
|
|
31
|
-
kotlinOptions {
|
|
32
|
-
jvmTarget = '1.8'
|
|
33
|
-
}
|
|
34
|
-
buildFeatures {
|
|
35
|
-
viewBinding false
|
|
36
|
-
}
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
dependencies {
|
|
40
|
-
implementation 'androidx.core:core-ktx:1.13.1'
|
|
41
|
-
testImplementation 'junit:junit:4.13.2'
|
|
42
|
-
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
|
|
43
|
-
androidTestImplementation 'androidx.test.espresso:espresso-core:3.
|
|
1
|
+
plugins {
|
|
2
|
+
id 'com.android.application'
|
|
3
|
+
id 'org.jetbrains.kotlin.android'
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
android {
|
|
7
|
+
namespace ''
|
|
8
|
+
compileSdk 35
|
|
9
|
+
|
|
10
|
+
defaultConfig {
|
|
11
|
+
applicationId ''
|
|
12
|
+
minSdk 24
|
|
13
|
+
targetSdk 35
|
|
14
|
+
versionCode 1
|
|
15
|
+
versionName '1.0'
|
|
16
|
+
|
|
17
|
+
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
|
|
18
|
+
}
|
|
19
|
+
buildTypes {
|
|
20
|
+
release {
|
|
21
|
+
debuggable false
|
|
22
|
+
minifyEnabled true
|
|
23
|
+
shrinkResources false
|
|
24
|
+
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
compileOptions {
|
|
28
|
+
sourceCompatibility JavaVersion.VERSION_1_8
|
|
29
|
+
targetCompatibility JavaVersion.VERSION_1_8
|
|
30
|
+
}
|
|
31
|
+
kotlinOptions {
|
|
32
|
+
jvmTarget = '1.8'
|
|
33
|
+
}
|
|
34
|
+
buildFeatures {
|
|
35
|
+
viewBinding false
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
dependencies {
|
|
40
|
+
implementation 'androidx.core:core-ktx:1.13.1'
|
|
41
|
+
testImplementation 'junit:junit:4.13.2'
|
|
42
|
+
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
|
|
43
|
+
androidTestImplementation 'androidx.test.espresso:espresso-core:3.6.1'
|
|
44
44
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
plugins {
|
|
2
|
-
id 'com.android.application' version '8.5.
|
|
3
|
-
id 'com.android.library' version '8.5.
|
|
4
|
-
id 'org.jetbrains.kotlin.android' version '1.9.
|
|
2
|
+
id 'com.android.application' version '8.5.2' apply false
|
|
3
|
+
id 'com.android.library' version '8.5.2' apply false
|
|
4
|
+
id 'org.jetbrains.kotlin.android' version '1.9.25' apply false
|
|
5
5
|
}
|
|
@@ -1,49 +1,49 @@
|
|
|
1
|
-
plugins {
|
|
2
|
-
alias(libs.plugins.android.application)
|
|
3
|
-
alias(libs.plugins.jetbrains.kotlin.android)
|
|
4
|
-
alias(libs.plugins.jetbrains.kotlin.compose)
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
android {
|
|
8
|
-
namespace = ""
|
|
9
|
-
compileSdk = 35
|
|
10
|
-
|
|
11
|
-
defaultConfig {
|
|
12
|
-
applicationId = ""
|
|
13
|
-
minSdk =
|
|
14
|
-
targetSdk = 35
|
|
15
|
-
versionCode = 1
|
|
16
|
-
versionName = "1.0"
|
|
17
|
-
|
|
18
|
-
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
|
19
|
-
}
|
|
20
|
-
buildTypes {
|
|
21
|
-
release {
|
|
22
|
-
isDebuggable = false
|
|
23
|
-
isMinifyEnabled = true
|
|
24
|
-
isShrinkResources = false
|
|
25
|
-
proguardFiles(getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro")
|
|
26
|
-
}
|
|
27
|
-
}
|
|
28
|
-
kotlinOptions {
|
|
29
|
-
jvmTarget = "1.8"
|
|
30
|
-
}
|
|
31
|
-
buildFeatures {
|
|
32
|
-
viewBinding = true
|
|
33
|
-
}
|
|
34
|
-
}
|
|
35
|
-
|
|
36
|
-
java {
|
|
37
|
-
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
38
|
-
targetCompatibility = JavaVersion.VERSION_1_8
|
|
39
|
-
}
|
|
40
|
-
|
|
41
|
-
dependencies {
|
|
42
|
-
implementation(libs.jetbrains.kotlin)
|
|
43
|
-
implementation(libs.androidx.core.ktx)
|
|
44
|
-
implementation(libs.androidx.appcompat)
|
|
45
|
-
implementation(libs.androidx.constraintlayout)
|
|
46
|
-
testImplementation(libs.junit)
|
|
47
|
-
androidTestImplementation(libs.androidx.junit)
|
|
48
|
-
androidTestImplementation(libs.androidx.espresso.core)
|
|
1
|
+
plugins {
|
|
2
|
+
alias(libs.plugins.android.application)
|
|
3
|
+
alias(libs.plugins.jetbrains.kotlin.android)
|
|
4
|
+
alias(libs.plugins.jetbrains.kotlin.compose)
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
android {
|
|
8
|
+
namespace = ""
|
|
9
|
+
compileSdk = 35
|
|
10
|
+
|
|
11
|
+
defaultConfig {
|
|
12
|
+
applicationId = ""
|
|
13
|
+
minSdk = 24
|
|
14
|
+
targetSdk = 35
|
|
15
|
+
versionCode = 1
|
|
16
|
+
versionName = "1.0"
|
|
17
|
+
|
|
18
|
+
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
|
19
|
+
}
|
|
20
|
+
buildTypes {
|
|
21
|
+
release {
|
|
22
|
+
isDebuggable = false
|
|
23
|
+
isMinifyEnabled = true
|
|
24
|
+
isShrinkResources = false
|
|
25
|
+
proguardFiles(getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro")
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
kotlinOptions {
|
|
29
|
+
jvmTarget = "1.8"
|
|
30
|
+
}
|
|
31
|
+
buildFeatures {
|
|
32
|
+
viewBinding = true
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
java {
|
|
37
|
+
sourceCompatibility = JavaVersion.VERSION_1_8
|
|
38
|
+
targetCompatibility = JavaVersion.VERSION_1_8
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
dependencies {
|
|
42
|
+
implementation(libs.jetbrains.kotlin)
|
|
43
|
+
implementation(libs.androidx.core.ktx)
|
|
44
|
+
implementation(libs.androidx.appcompat)
|
|
45
|
+
implementation(libs.androidx.constraintlayout)
|
|
46
|
+
testImplementation(libs.junit)
|
|
47
|
+
androidTestImplementation(libs.androidx.junit)
|
|
48
|
+
androidTestImplementation(libs.androidx.espresso.core)
|
|
49
49
|
}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
[versions]
|
|
2
|
-
agp = "8.5.
|
|
3
|
-
kotlin = "2.0.
|
|
2
|
+
agp = "8.5.2"
|
|
3
|
+
kotlin = "2.0.20"
|
|
4
4
|
coreKtx = "1.13.1"
|
|
5
5
|
junit = "4.13.2"
|
|
6
|
-
junitVersion = "1.1
|
|
7
|
-
espressoCore = "3.
|
|
6
|
+
junitVersion = "1.2.1"
|
|
7
|
+
espressoCore = "3.6.1"
|
|
8
8
|
appcompat = "1.7.0"
|
|
9
9
|
constraintlayout = "2.1.4"
|
|
10
10
|
|