-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbuild.gradle
More file actions
executable file
·35 lines (30 loc) · 1.21 KB
/
Copy pathbuild.gradle
File metadata and controls
executable file
·35 lines (30 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile "com.ibuildapp:sdk:$iBuildAppSdkVersion"
// compile project(':api')
compile "com.github.bumptech.glide:glide:$GlideVersion"
compile "com.google.android.gms:play-services-maps:$PlayServicesAdsVersion"
compile "com.squareup.retrofit2:adapter-rxjava:$RetrofitAdapterRxJavaVersion"
compile "com.squareup.retrofit2:converter-gson:$RetrofitGsonConverterVersion"
compile "io.reactivex:rxandroid:$RxAndroidVertion"
compile "io.reactivex:rxjava:$RxJavaVersion"
compile "com.squareup.retrofit2:retrofit:$RetrofitVersion"
compile "com.squareup.okhttp3:logging-interceptor:$Okhttp3LoggingInterceptorVersion"
}