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.
68 lines
2.2 KiB
68 lines
2.2 KiB
apply plugin: 'com.android.library'
|
|
|
|
android {
|
|
compileSdkVersion 29
|
|
buildToolsVersion "28.0.3"
|
|
|
|
|
|
defaultConfig {
|
|
minSdkVersion 23
|
|
targetSdkVersion 26
|
|
// versionCode rootProject.ext.versionCode
|
|
// versionName rootProject.ext.versionName
|
|
|
|
renderscriptTargetApi = 14
|
|
renderscriptSupportModeEnabled = true
|
|
multiDexEnabled = true
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled = false
|
|
proguardFiles.add(file('proguard-rules.pro'))
|
|
signingConfig signingConfigs.debug
|
|
}
|
|
}
|
|
signingConfigs {
|
|
debug {
|
|
storeFile file('debug.keystore')
|
|
storePassword "android"
|
|
keyAlias "androiddebugkey"
|
|
keyPassword "android"
|
|
}
|
|
}
|
|
|
|
dexOptions {
|
|
javaMaxHeapSize "4g"
|
|
}
|
|
|
|
packagingOptions {
|
|
pickFirst '**/libc++_shared.so'
|
|
doNotStrip "*/armeabi/libYTCommon.so"
|
|
doNotStrip "*/armeabi-v7a/libYTCommon.so"
|
|
doNotStrip "*/x86/libYTCommon.so"
|
|
doNotStrip "*/arm64-v8a/libYTCommon.so"
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(include: ['*.jar'], dir: 'libs')
|
|
implementation fileTree(include: ['*.jar'], dir: 'src/main/jniLibs')
|
|
implementation 'com.google.android.material:material:1.0.0'
|
|
implementation 'androidx.recyclerview:recyclerview:1.0.0'
|
|
implementation 'com.google.code.gson:gson:2.3.1'
|
|
api 'com.github.bumptech.glide:glide:4.12.0@aar'
|
|
implementation 'androidx.exifinterface:exifinterface:1.2.0'
|
|
implementation 'androidx.vectordrawable:vectordrawable-animated:1.1.0'
|
|
compileOnly rootProject.ext.liteavSdk
|
|
implementation 'androidx.multidex:multidex:2.0.0'
|
|
implementation 'de.hdodenhof:circleimageview:3.1.0'
|
|
implementation 'com.github.castorflex.verticalviewpager:library:19.0.1'
|
|
implementation 'org.greenrobot:eventbus:3.0.0'
|
|
implementation 'androidx.annotation:annotation:1.0.0'
|
|
implementation 'com.squareup.okhttp3:okhttp:3.11.0'
|
|
implementation 'com.squareup.okio:okio:1.14.0'
|
|
implementation project(':beautysettingkit')
|
|
implementation 'com.qcloud.cos:cos-android-nobeacon:5.8.5'
|
|
implementation 'com.qcloud.cos:quic:1.5.38'
|
|
}
|