1234567891011121314151617181920212223242526272829303132333435363738 |
- apply plugin: 'com.android.library'
- apply from: 'library.gradle'
- android {
- compileSdkVersion 30
- buildToolsVersion '31.0.0-rc3'
- defaultConfig {
- minSdkVersion 14
- targetSdkVersion 30
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- }
- }
- dependencies {
- implementation fileTree(dir: 'libs', include: ['*.jar'])
- testImplementation 'junit:junit:4.12'
- implementation 'com.github.bumptech.glide:glide:4.9.0'
- implementation 'com.google.code.gson:gson:2.8.5'
- implementation 'androidx.legacy:legacy-support-v4:1.0.0'
- implementation 'androidx.appcompat:appcompat:1.1.0-rc01'
- implementation 'io.reactivex.rxjava2:rxandroid:2.1.1'
- implementation 'io.reactivex.rxjava2:rxjava:2.1.13'
- api "org.reactivestreams:reactive-streams:1.0.3"
- implementation 'com.squareup.retrofit2:retrofit:2.6.2'
- implementation 'com.squareup.retrofit2:adapter-rxjava2:2.6.2'
- implementation 'com.squareup.retrofit2:converter-gson:2.6.2'
- implementation 'com.squareup.okhttp3:okhttp:3.12.0'
- implementation 'com.squareup.okhttp3:logging-interceptor:3.12.0'
- }
|