build.gradle 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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 files('libs/tbs_sdk_thirdapp_v4.3.0.1072_43646.jar')
  31. // api files('libs/tbs_sdk_thirdapp_v3.6.0.1325.jar')
  32. // implementation 'com.github.bumptech.glide:glide:3.7.0'
  33. // implementation ('jp.wasabeef:glide-transformations:2.0.2'){
  34. // exclude group: 'com.github.bumptech.glide', module: 'glide'
  35. // }
  36. // implementation project(':sheep')
  37. }