build.gradle 670 B

123456789101112131415161718192021222324252627282930
  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 1
  8. versionName "1.0"
  9. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  10. }
  11. buildTypes {
  12. release {
  13. minifyEnabled false
  14. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  15. }
  16. }
  17. }
  18. dependencies {
  19. //fast json
  20. compileOnly 'com.alibaba:fastjson:1.2.52'
  21. api project(':joevideolib')
  22. }