123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- apply plugin: 'com.android.library'
- android {
- compileSdkVersion 28
- defaultConfig {
- minSdkVersion 19
- targetSdkVersion 28
- versionCode 1
- versionName "1.0"
- testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- }
- }
- dependencies {
- implementation fileTree(include: ['*.jar'], dir: 'libs')
- implementation 'com.android.support.constraint:constraint-layout:1.1.0'
- androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
- exclude group: 'com.android.support', module: 'support-annotations'
- })
- implementation project(':common')
- implementation 'com.android.support:support-v4:28.0.0'
- implementation "com.squareup.retrofit2:retrofit:$rootProject.ext.retrofitVersion"
- implementation "com.squareup.retrofit2:converter-gson:$rootProject.ext.retrofitVersion"
- implementation "com.google.code.gson:gson:$rootProject.ext.gsonVersion"
- annotationProcessor "com.github.Raizlabs.DBFlow:dbflow-processor:${rootProject.ext.dbflowVersion}"
- implementation "com.github.Raizlabs.DBFlow:dbflow-core:${rootProject.ext.dbflowVersion}"
- implementation "com.github.Raizlabs.DBFlow:dbflow:${rootProject.ext.dbflowVersion}"
- implementation "net.qiujuer.genius:kit-reflect:$rootProject.ext.geniusVersion"
- implementation "com.squareup.okhttp3:logging-interceptor:$rootProject.logging_interceptorVersion"
- testImplementation 'junit:junit:4.12'
- implementation 'com.liulishuo.filedownloader:library:1.6.5'
- implementation 'com.github.bumptech.glide:glide:3.7.0'
- implementation 'com.github.franmontiel:PersistentCookieJar:v1.0.1'
- implementation project(':lang')
- implementation 'com.android.support:multidex:1.0.1'
- implementation 'io.reactivex.rxjava2:rxjava:2.1.6'
- implementation 'io.reactivex.rxjava2:rxandroid:2.0.1'
- implementation 'com.squareup.retrofit2:adapter-rxjava2:2.3.0'
- }
|