升级阿里云推送SDK

This commit is contained in:
Lihongda 2024-01-05 02:13:47 +08:00
parent 88b1db20a0
commit 9f93d3c9ce
2 changed files with 9 additions and 6 deletions

View File

@ -25,8 +25,8 @@ allprojects {
}
}
ext {
compileSdkVersion = 28
buildToolsVersion = "28.0.2"
compileSdkVersion = 33
buildToolsVersion = "33.0.0"
minSdkVersion = 21
targetSdkVersion = 28
targetSdkVersion = 33
}

View File

@ -1,5 +1,8 @@
apply plugin: 'com.android.application'
gradle.ext {
pushVersion = '3.8.6'
thirdPushVersion = '3.8.6'
}
android {
packagingOptions {
@ -34,8 +37,8 @@ android {
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
applicationId "com.ifish.activity"
versionCode Integer.parseInt(System.properties['versionCode'])
versionName System.properties['versionName']
versionCode project.versionCode.toInteger()
versionName project.versionName
multiDexEnabled true
ndk {
abiFilters 'armeabi','arm64-v8a'