123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- apply plugin: 'com.android.library'
- android {
- compileSdkVersion 25
- buildToolsVersion "25.0.2"
- defaultConfig {
- minSdkVersion 19
- targetSdkVersion 25
- versionCode 1
- versionName "1.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')
- compile 'com.android.support.constraint:constraint-layout:1.1.0'
- androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
- exclude group: 'com.android.support', module: 'support-annotations'
- })
- compile project(':common')
- compile "com.squareup.retrofit2:retrofit:$rootProject.ext.retrofitVersion"
- compile "com.squareup.retrofit2:converter-gson:$rootProject.ext.retrofitVersion"
- compile "com.google.code.gson:gson:$rootProject.ext.gsonVersion"
- annotationProcessor "com.github.Raizlabs.DBFlow:dbflow-processor:${rootProject.ext.dbflowVersion}"
- compile "com.github.Raizlabs.DBFlow:dbflow-core:${rootProject.ext.dbflowVersion}"
- compile "com.github.Raizlabs.DBFlow:dbflow:${rootProject.ext.dbflowVersion}"
- compile "net.qiujuer.genius:kit-reflect:$rootProject.ext.geniusVersion"
- compile "com.squareup.okhttp3:logging-interceptor:$rootProject.logging_interceptorVersion"
- testCompile 'junit:junit:4.12'
- compile 'com.liulishuo.filedownloader:library:1.6.5'
- compile 'com.github.franmontiel:PersistentCookieJar:v1.0.1'
- compile project(':lang')
- compile 'io.reactivex.rxjava2:rxjava:2.1.6'
- compile 'io.reactivex.rxjava2:rxandroid:2.0.1'
- compile 'com.squareup.retrofit2:adapter-rxjava2:2.3.0'
- }
|