build.gradle 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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 "com.android.support:appcompat-v7:$supportLibVersion"
  29. implementation "com.android.support:support-v4:$supportLibVersion"
  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_v3.6.0.1325.jar')
  33. // implementation 'com.github.bumptech.glide:glide:3.7.0'
  34. // implementation ('jp.wasabeef:glide-transformations:2.0.2'){
  35. // exclude group: 'com.github.bumptech.glide', module: 'glide'
  36. // }
  37. // implementation project(':sheep')
  38. }