| 123456789101112131415161718192021222324252627282930 |
- 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 1
- versionName "1.0"
- testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- }
- }
- dependencies {
- //fast json
- compileOnly 'com.alibaba:fastjson:1.2.52'
- api project(':joevideolib')
- }
|