| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- apply plugin: 'com.android.library'
- android {
- compileSdkVersion ANDROID_COMPILE_SDK_VERSION as int
- defaultConfig {
- minSdkVersion ANDROID_MIN_SDK_VERSION as int
- targetSdkVersion ANDORID_TARGET_SDK_VERSION as int
- versionCode VERSION_CODE as int
- versionName VERSION_NAME
- }
- lintOptions {
- abortOnError false
- }
- dexOptions {
- preDexLibraries = false
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- }
- compileOptions {
- sourceCompatibility JavaVersion.VERSION_1_8
- targetCompatibility JavaVersion.VERSION_1_8
- }
- }
- dependencies {
- implementation 'androidx.appcompat:appcompat:1.0.0'
- implementation 'androidx.legacy:legacy-support-v4:1.0.0'
- //api 'com.tencent.tbs.tbssdk:sdk:43939'
- api files('libs/tbs_sdk_thirdapp_v4.3.0.93_43993_sharewithdownloadwithfile_withoutGame_obfs_20210220_114728.jar')
- //api files('libs/tbs_sdk_thirdapp_v4.3.0.1072_43646.jar')
- // api files('libs/tbs_sdk_thirdapp_v3.6.0.1325.jar')
- // implementation 'com.github.bumptech.glide:glide:3.7.0'
- // implementation ('jp.wasabeef:glide-transformations:2.0.2'){
- // exclude group: 'com.github.bumptech.glide', module: 'glide'
- // }
- // implementation project(':sheep')
- }
|