-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsupport.gradle
35 lines (24 loc) · 1.4 KB
/
support.gradle
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
Properties properties = new Properties()
properties.load(new FileInputStream(file('./pandroid-library/pandroid.properties')))
properties.each { prop ->
ext.set(prop.key, prop.value)
}
ext.optionalLibs = [
"com.google.android.gms:play-services-vision:$libraryGmsVisionVersion", //PandroidScannerView
"com.google.android.gms:play-services-analytics:$libraryGmsAnalyticsVersion", //GoogleAnalyticsManager
"com.google.firebase:firebase-core:$libraryFirebaseVersion", // Firebase Analytics
"com.github.johnpersano:supertoasts:$librarySupertoastsVersion@aar", //SuperToastManagerImpl
"com.github.bumptech.glide:glide:$libraryGlideVersion", //GlidePictureManagerImpl
"com.crashlytics.sdk.android:crashlytics:$libraryCrashlyticsVersion@aar", //CrashlyticsLogger
"com.jakewharton:butterknife:$libraryButterknifeVersion", //ButterknifeLifecycleDelegate
"frankiesardo:icepick:$libraryIcepickVersion",//IcepickLifecycleDelegate
"com.squareup.retrofit2:retrofit:$libraryRetrofitVersion", //Retrofit
"com.squareup.retrofit2:converter-gson:$libraryRetrofitVersion",
"com.squareup.okhttp3:logging-interceptor:$libraryLoggingInterceptorVersion",
//RX
"io.reactivex.rxjava2:rxandroid:$libraryRxAndroidVersion",
"io.reactivex.rxjava2:rxjava:$libraryRxJavaVersion"
]
ext.deps = [
javapoet: 'com.squareup:javapoet:1.9.0',
]