修改 build

This commit is contained in:
bingshi 2023-02-06 17:00:40 +08:00
parent 404aee4af7
commit e7d1fd9ee3

View File

@ -5,14 +5,15 @@ apply plugin: 'com.android.application'
android { android {
compileSdkVersion PROP_COMPILE_SDK_VERSION.toInteger() compileSdkVersion PROP_COMPILE_SDK_VERSION.toInteger()
buildToolsVersion PROP_BUILD_TOOLS_VERSION buildToolsVersion PROP_BUILD_TOOLS_VERSION
assetPacks = [":install-time-asset_pack"] //PAD资源分发
ndkVersion "21.3.6528147" ndkVersion "21.3.6528147"
defaultConfig { defaultConfig {
applicationId "com.cege.games.release" applicationId "com.cege.games.release"
minSdkVersion PROP_MIN_SDK_VERSION minSdkVersion PROP_MIN_SDK_VERSION
targetSdkVersion PROP_TARGET_SDK_VERSION targetSdkVersion PROP_TARGET_SDK_VERSION
versionCode 5 versionCode 12
versionName "1.0.5" versionName "1.0.10"
ndk{ ndk{
abiFilters 'armeabi-v7a','arm64-v8a' abiFilters 'armeabi-v7a','arm64-v8a'
} }
@ -135,4 +136,5 @@ dependencies {
implementation 'org.greenrobot:eventbus:3.0.0' implementation 'org.greenrobot:eventbus:3.0.0'
implementation 'androidx.constraintlayout:constraintlayout:2.0.4' implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
implementation 'com.bytedance.ies.ugc.aweme:opensdk-oversea-external:0.2.1.0' implementation 'com.bytedance.ies.ugc.aweme:opensdk-oversea-external:0.2.1.0'
implementation 'com.google.android.play:core:1.10.0' //PAD资源分发
} }