123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- apply plugin: 'com.android.library'
- android {
- compileSdkVersion 25
- buildToolsVersion "25.0.2"
- defaultConfig {
- minSdkVersion 19
- targetSdkVersion 25
- versionCode 2
- versionName "2.0"
- testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- }
- }
- dependencies {
- compile fileTree(include: ['*.jar'], dir: 'libs')
- androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
- exclude group: 'com.android.support', module: 'support-annotations'
- })
- compile "com.android.support:appcompat-v7:$rootProject.ext.supportVersion"
- compile "com.android.support:recyclerview-v7:$rootProject.ext.supportVersion"
- compile "com.android.support:design:$rootProject.ext.supportVersion"
- compile "net.qiujuer.genius:ui:$rootProject.ext.geniusVersion"
- compile "net.qiujuer.genius:res:$rootProject.ext.geniusVersion"
- compile "de.hdodenhof:circleimageview:$rootProject.ext.circleimageviewVersion"
- compile "com.github.bumptech.glide:glide:$rootProject.ext.glideVersion"
- compile "com.jakewharton:butterknife:$rootProject.ext.butterknifeVersion"
- compile "net.qiujuer.genius:kit-handler:$rootProject.ext.geniusVersion"
- compile "com.google.code.gson:gson:$rootProject.ext.gsonVersion"
- // 空气面板
- compile "net.qiujuer.widget:airpanel:$rootProject.ext.airpanelVersion"
- // Lame 录音 MP3 转码器
- compile "net.qiujuer.lame:lame:$rootProject.ext.lameVersion"
- annotationProcessor "com.jakewharton:butterknife-compiler:$rootProject.ext.butterknifeVersion"
- compile project(':lang')
- compile 'com.android.support.constraint:constraint-layout:1.0.2'
- testCompile 'junit:junit:4.12'
- compile 'com.umeng.analytics:analytics:latest.integration'
- compile 'com.zhy:autolayout:1.4.5'
- }
|