41 lines
1.1 KiB
Groovy
41 lines
1.1 KiB
Groovy
apply plugin: 'com.android.library'
|
|
apply plugin: 'me.tatarka.retrolambda'
|
|
|
|
android {
|
|
compileSdkVersion 23
|
|
buildToolsVersion "23.0.3"
|
|
|
|
compileOptions {
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
}
|
|
|
|
defaultConfig {
|
|
minSdkVersion 9
|
|
targetSdkVersion 23
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile project(':libraries:core')
|
|
|
|
provided 'com.android.support:appcompat-v7:23.4.0'
|
|
provided 'com.android.support:recyclerview-v7:23.4.0'
|
|
|
|
provided 'io.reactivex:rxandroid:1.1.0'
|
|
|
|
provided('com.google.http-client:google-http-client-android:1.21.0') {
|
|
exclude(group: 'org.apache.httpcomponents', module: 'httpclient')
|
|
}
|
|
provided('com.google.http-client:google-http-client-jackson2:1.21.0') {
|
|
exclude(group: 'org.apache.httpcomponents', module: 'httpclient')
|
|
}
|
|
provided 'com.squareup.okhttp:okhttp:2.7.5'
|
|
provided 'com.facebook.fresco:fbcore:0.10.0'
|
|
provided 'com.facebook.fresco:imagepipeline-okhttp3:0.10.0'
|
|
|
|
provided('io.socket:socket.io-client:0.7.0') {
|
|
exclude group: 'org.json', module: 'json'
|
|
}
|
|
}
|