| 12345678910111213141516171819202122232425262728293031323334 |
- apply plugin: 'com.android.library'
- android {
- compileSdkVersion 25
- buildToolsVersion "25.0.2"
- defaultConfig {
- minSdkVersion 15
- targetSdkVersion 22
- versionCode 1
- versionName "1.0"
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- }
- }
- dependencies {
- compile fileTree(dir: 'libs', include: ['*.jar'])
-
- compile 'com.github.zj565061763:animator:1.0.7'
- compile 'com.github.zj565061763:libcore:1.0.91'
- compile 'com.github.zj565061763:looper:1.0.5'
- compile 'pl.droidsonroids.gif:android-gif-drawable:1.2.7'
- compile('com.zhy:percent-support-extends:1.1.1') {
- exclude module: 'appcompat-v7'
- }
- }
|