Skip to content

Commit e3edf51

Browse files
committed
update versions
1 parent f128dcb commit e3edf51

File tree

5 files changed

+16
-13
lines changed

5 files changed

+16
-13
lines changed

app/build.gradle

+9-8
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ apply plugin: 'com.android.application'
22
//apply plugin: "com.flurry.android.symbols"
33

44
android {
5-
compileSdkVersion 33
5+
compileSdk 34
66
defaultConfig {
77
applicationId "me.ghui.v2er"
88
minSdkVersion 27
9-
targetSdkVersion 33
9+
targetSdkVersion 34
1010
versionCode rootProject.ext.app.versionCode
1111
versionName rootProject.ext.app.versionName
1212
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
@@ -43,16 +43,17 @@ android {
4343
sourceCompatibility JavaVersion.VERSION_1_8
4444
targetCompatibility JavaVersion.VERSION_1_8
4545
}
46-
4746
packagingOptions {
48-
exclude 'META-INF/rxjava.properties'
47+
resources {
48+
excludes += ['META-INF/rxjava.properties']
49+
}
4950
}
5051

51-
lintOptions {
52-
checkReleaseBuilds false
53-
// Or, if you prefer, you can continue to check for errors in release builds,
54-
// but continue the build even when errors are found:
52+
53+
namespace 'me.ghui.v2er'
54+
lint {
5555
abortOnError false
56+
checkReleaseBuilds false
5657
}
5758
}
5859

app/src/main/AndroidManifest.xml

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
3-
package="me.ghui.v2er">
2+
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
43

54
<uses-permission android:name="android.permission.INTERNET" />
65
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ buildscript {
88
maven { url "https://plugins.gradle.org/m2/" }
99
}
1010
dependencies {
11-
classpath 'com.android.tools.build:gradle:4.2.1'
11+
classpath 'com.android.tools.build:gradle:8.1.0'
1212
// classpath "gradle.plugin.com.flurry:symbol-upload:+"
1313
}
1414
}

gradle.properties

+4-1
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,7 @@ org.gradle.jvmargs=-Xmx1536M \
2525
systemProp.http.proxyPort=6153
2626

2727
android.useAndroidX=true
28-
android.enableJetifier=true
28+
android.enableJetifier=true
29+
android.defaults.buildfeatures.buildconfig=true
30+
android.nonTransitiveRClass=false
31+
android.nonFinalResIds=false
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)