You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
112 lines
3.6 KiB
112 lines
3.6 KiB
apply plugin: 'com.android.application'
|
|
|
|
android {
|
|
compileSdkVersion 30
|
|
buildToolsVersion '30.0.3'
|
|
defaultConfig {
|
|
applicationId "net.ouxuan.checkoutpad"
|
|
minSdkVersion 21
|
|
targetSdkVersion 28 //建议此属性值设为21 io.dcloud.PandoraEntry 作为apk入口时 必须设置 targetSDKVersion>=21 沉浸式才生效
|
|
|
|
versionCode 117
|
|
versionName "1.1.7"
|
|
multiDexEnabled true
|
|
ndk {
|
|
// abiFilters 'x86','armeabi-v7a'
|
|
abiFilters "armeabi", "armeabi-v7a", "x86", "mips"
|
|
|
|
}
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
}
|
|
|
|
signingConfigs {
|
|
config {
|
|
keyAlias 'key_checkpad'
|
|
keyPassword '123456'
|
|
storeFile file('signature/key_checkpad.jks')
|
|
storePassword '123456'
|
|
v1SigningEnabled true
|
|
v2SigningEnabled true
|
|
}
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
signingConfig signingConfigs.config
|
|
// zipAlignEnabled false
|
|
// minifyEnabled false
|
|
// proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
debug {
|
|
signingConfig signingConfigs.config
|
|
// zipAlignEnabled true
|
|
// minifyEnabled true
|
|
// proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
//使用uniapp时,需复制下面代码
|
|
/*代码开始*/
|
|
aaptOptions {
|
|
additionalParameters '--auto-add-overlay'
|
|
//noCompress 'foo', 'bar'
|
|
ignoreAssetsPattern "!.svn:!.git:.*:!CVS:!thumbs.db:!picasa.ini:!*.scc:*~"
|
|
}
|
|
/*代码结束*/
|
|
|
|
// 解决打包生成apk时出现的错误问题
|
|
lintOptions{
|
|
checkReleaseBuilds false
|
|
abortOnError false
|
|
}
|
|
|
|
//解决uni和百度人脸SDK资源重复问题
|
|
packagingOptions {
|
|
exclude 'classes.dex'
|
|
pickFirst 'lib/arm64-v8a/libc++_shared.so'
|
|
pickFirst 'lib/armeabi-v7a/libc++_shared.so'
|
|
}
|
|
}
|
|
repositories {
|
|
flatDir {
|
|
dirs 'libs'
|
|
}
|
|
}
|
|
dependencies {
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
implementation fileTree(dir: 'libs', include: ['*.aar'])
|
|
|
|
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
|
|
implementation 'androidx.appcompat:appcompat:1.0.0'
|
|
|
|
/*uniapp所需库-----------------------开始*/
|
|
implementation 'androidx.recyclerview:recyclerview:1.0.0'
|
|
implementation 'com.facebook.fresco:fresco:1.13.0'
|
|
implementation "com.facebook.fresco:animated-gif:1.13.0"
|
|
/*uniapp所需库-----------------------结束*/
|
|
// 基座需要,必须添加
|
|
implementation 'com.github.bumptech.glide:glide:4.9.0'
|
|
// implementation 'com.alibaba:fastjson:1.1.46.android'
|
|
implementation 'com.alibaba:fastjson:1.2.83'
|
|
implementation 'androidx.webkit:webkit:1.3.0'
|
|
|
|
implementation 'androidx.core:core:1.1.0'
|
|
implementation "androidx.fragment:fragment:1.1.0"
|
|
implementation 'androidx.appcompat:appcompat:1.1.0'
|
|
|
|
//调试库leakcanary-debug模式下分析内存泄露
|
|
// debugImplementation 'com.squareup.leakcanary:leakcanary-android:2.12'
|
|
// 添加uni-app插件
|
|
implementation project(':uniplugin_component')
|
|
implementation project(':uniplugin_module')
|
|
implementation project(':uniplugin_richalert')
|
|
implementation project(':uniplugin_padprinter') //Pad Printer
|
|
|
|
// implementation project(':uniplugin_v4_ph')
|
|
implementation project(':daemonlibrary')
|
|
// implementation project(path: ':uniplugin_module_nanohttpd')
|
|
|
|
|
|
}
|