You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.7 KiB
48 lines
1.7 KiB
apply plugin: 'com.android.library'
|
|
|
|
android {
|
|
compileSdkVersion rootProject.ext.compileSdkVersion
|
|
buildToolsVersion rootProject.ext.buildToolsVersion
|
|
|
|
defaultConfig {
|
|
minSdkVersion rootProject.ext.minSdkVersion
|
|
targetSdkVersion rootProject.ext.targetSdkVersion
|
|
versionCode 1
|
|
versionName "1.0"
|
|
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
dataBinding {
|
|
enabled = true
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
|
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
|
|
exclude group: 'com.android.support', module: 'support-annotations'
|
|
})
|
|
testCompile 'junit:junit:4.12'
|
|
api "com.android.support:appcompat-v7:${rootProject.ext.supportLibVersion}"
|
|
api 'com.google.code.gson:gson:2.8.2'
|
|
api 'io.reactivex:rxandroid:1.2.0'
|
|
api 'io.reactivex:rxjava:1.1.5'
|
|
implementation 'com.squareup.okhttp3:okhttp:3.2.0'
|
|
implementation 'com.squareup.retrofit2:retrofit:2.1.0'
|
|
implementation 'com.squareup.retrofit2:adapter-rxjava:2.1.0'
|
|
implementation 'com.squareup.retrofit2:converter-gson:2.1.0'
|
|
implementation 'com.squareup.okhttp3:logging-interceptor:3.2.0'
|
|
implementation 'com.github.franmontiel:PersistentCookieJar:v1.0.1'
|
|
implementation 'com.android.support:multidex:1.0.3'
|
|
|
|
api "android.arch.lifecycle:runtime:${rootProject.ext.lifecycleVersion}"
|
|
api "android.arch.lifecycle:extensions:${rootProject.ext.lifecycleVersion}"
|
|
annotationProcessor "android.arch.lifecycle:compiler:${rootProject.ext.lifecycleVersion}"
|
|
|
|
}
|
|
|