升级阿里云推送SDK
This commit is contained in:
parent
88b1db20a0
commit
9f93d3c9ce
|
|
@ -25,8 +25,8 @@ allprojects {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
ext {
|
ext {
|
||||||
compileSdkVersion = 28
|
compileSdkVersion = 33
|
||||||
buildToolsVersion = "28.0.2"
|
buildToolsVersion = "33.0.0"
|
||||||
minSdkVersion = 21
|
minSdkVersion = 21
|
||||||
targetSdkVersion = 28
|
targetSdkVersion = 33
|
||||||
}
|
}
|
||||||
|
|
@ -1,5 +1,8 @@
|
||||||
apply plugin: 'com.android.application'
|
apply plugin: 'com.android.application'
|
||||||
|
gradle.ext {
|
||||||
|
pushVersion = '3.8.6'
|
||||||
|
thirdPushVersion = '3.8.6'
|
||||||
|
}
|
||||||
|
|
||||||
android {
|
android {
|
||||||
packagingOptions {
|
packagingOptions {
|
||||||
|
|
@ -34,8 +37,8 @@ android {
|
||||||
minSdkVersion rootProject.ext.minSdkVersion
|
minSdkVersion rootProject.ext.minSdkVersion
|
||||||
targetSdkVersion rootProject.ext.targetSdkVersion
|
targetSdkVersion rootProject.ext.targetSdkVersion
|
||||||
applicationId "com.ifish.activity"
|
applicationId "com.ifish.activity"
|
||||||
versionCode Integer.parseInt(System.properties['versionCode'])
|
versionCode project.versionCode.toInteger()
|
||||||
versionName System.properties['versionName']
|
versionName project.versionName
|
||||||
multiDexEnabled true
|
multiDexEnabled true
|
||||||
ndk {
|
ndk {
|
||||||
abiFilters 'armeabi','arm64-v8a'
|
abiFilters 'armeabi','arm64-v8a'
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue