forked from MobileTribe/pandroid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsupport.gradle
27 lines (18 loc) · 1.2 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
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:$libraryGmsVersion", //PandroidScannerView
"com.google.android.gms:play-services-analytics:$libraryGmsVersion", //GoogleAnalyticsManager
"com.google.firebase:firebase-analytics:$libraryGmsVersion", // 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
"com.github.frankiesardo:icepick:$libraryIcepickVersion",//IcepickLifecycleDelegate
"com.squareup.retrofit2:retrofit:$libraryRetrofitVersion", //Retrofit
"com.squareup.retrofit2:converter-gson:$libraryRetrofitVersion",
"com.squareup.okhttp3:logging-interceptor:$libraryLoggingInterceptorVersion",
]