build.gradle 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. apply plugin: 'com.android.library'
  2. android {
  3. compileSdkVersion ANDROID_COMPILE_SDK_VERSION as int
  4. defaultConfig {
  5. minSdkVersion ANDROID_MIN_SDK_VERSION as int
  6. targetSdkVersion ANDORID_TARGET_SDK_VERSION as int
  7. versionCode VERSION_CODE as int
  8. versionName VERSION_NAME
  9. }
  10. lintOptions {
  11. abortOnError false
  12. }
  13. dexOptions {
  14. preDexLibraries = false
  15. }
  16. buildTypes {
  17. release {
  18. minifyEnabled false
  19. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  20. }
  21. }
  22. compileOptions {
  23. sourceCompatibility JavaVersion.VERSION_1_8
  24. targetCompatibility JavaVersion.VERSION_1_8
  25. }
  26. }
  27. dependencies {
  28. implementation 'androidx.appcompat:appcompat:1.0.0'
  29. implementation 'androidx.legacy:legacy-support-v4:1.0.0'
  30. //api 'com.tencent.tbs.tbssdk:sdk:43939'
  31. api files('libs/tbs_sdk_thirdapp_v4.3.0.93_43993_sharewithdownloadwithfile_withoutGame_obfs_20210220_114728.jar')
  32. //api files('libs/tbs_sdk_thirdapp_v4.3.0.1072_43646.jar')
  33. // api files('libs/tbs_sdk_thirdapp_v3.6.0.1325.jar')
  34. // implementation 'com.github.bumptech.glide:glide:3.7.0'
  35. // implementation ('jp.wasabeef:glide-transformations:2.0.2'){
  36. // exclude group: 'com.github.bumptech.glide', module: 'glide'
  37. // }
  38. // implementation project(':sheep')
  39. }