Skip to content

Commit c6d7db3

Browse files
committed
chore: Upgrade gradle plugin
1 parent 6add8c8 commit c6d7db3

File tree

13 files changed

+20
-11
lines changed

13 files changed

+20
-11
lines changed

.idea/compiler.xml

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/gradle.xml

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/kotlinc.xml

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/build.gradle

+1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ android {
2929
kotlinOptions {
3030
jvmTarget = '1.8'
3131
}
32+
namespace 'im.angry.openeuicc'
3233
}
3334

3435
dependencies {

app/src/main/AndroidManifest.xml

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
33
xmlns:tools="http://schemas.android.com/tools"
4-
package="im.angry.openeuicc"
54
tools:ignore="ProtectedPermissions">
65

76
<uses-permission android:name="android.permission.MODIFY_PHONE_STATE" />

build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
22
plugins {
3-
id 'com.android.application' version '7.2.1' apply false
4-
id 'com.android.library' version '7.2.1' apply false
3+
id 'com.android.application' version '8.1.2' apply false
4+
id 'com.android.library' version '8.1.2' apply false
55
id 'org.jetbrains.kotlin.android' version '1.6.21' apply false
66
id 'org.jetbrains.kotlin.multiplatform' version '1.6.21' apply false
77
}

gradle.properties

+3-1
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,6 @@ kotlin.code.style=official
2020
# Enables namespacing of each library's R class so that its R class includes only the
2121
# resources declared in the library itself and none from the library's dependencies,
2222
# thereby reducing the size of the R class for that library
23-
android.nonTransitiveRClass=true
23+
android.nonTransitiveRClass=true
24+
android.defaults.buildfeatures.buildconfig=true
25+
android.nonFinalResIds=false
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#Wed Jun 08 13:28:20 EDT 2022
22
distributionBase=GRADLE_USER_HOME
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-bin.zip
44
distributionPath=wrapper/dists
55
zipStorePath=wrapper/dists
66
zipStoreBase=GRADLE_USER_HOME

libs/hidden-apis-shim/build.gradle

+1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ android {
2727
kotlinOptions {
2828
jvmTarget = '1.8'
2929
}
30+
namespace 'im.angry.openeuicc.hidden_apis_shim'
3031
}
3132

3233
dependencies {
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3-
package="im.angry.openeuicc.hidden_apis_shim">
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
43

54
</manifest>

libs/hidden-apis-stub/build.gradle

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ plugins {
44

55
android {
66
compileSdk 31
7+
namespace 'im.angry.hidden.apis'
78
}
89

910
java {
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
33
xmlns:tools="http://schemas.android.com/tools"
4-
package="im.angry.hidden.apis"
54
tools:ignore="ProtectedPermissions">
65

76
</manifest>

0 commit comments

Comments
 (0)