prepare build.gradle for kotlin switch.

This commit is contained in:
soloturn 2019-02-09 16:13:43 +01:00 committed by Isaac Hutt
parent c3da448aca
commit 1196dc0e6a
2 changed files with 24 additions and 24 deletions

View File

@ -12,29 +12,29 @@ buildscript {
}
ext {
androidGradlePluginVersion = '3.3.0'
testdroidGradlePluginVersion = '2.63.0'
appCompatVersion = '1.0.2'
materialVersion = '1.0.0'
annotationVersion = '1.0.0'
cardViewVersion = '1.0.0'
rxJavaVersion = '2.2.5'
rxAndroidVersion = '2.1.0'
okHttpVersion = '3.12.1'
retrofitVersion = '2.5.0'
javaxAnnotationVersion = '1.3.2'
daggerVersion = '2.16'
inkPageIndicatorVersion = '1.3.0'
constraintLayoutVersion = '1.1.3'
butterKnifeVersion = '10.0.0'
espressoVersion = '3.1.1'
apacheCommonsVersion = '2.6'
multidexVersion = '2.0.1'
jUnitVersion = '4.12'
mockitoVersion = '2.19.1'
powerMockVersion = '1.6.6'
powerMockJUnitVersion = '1.7.4'
baristaVersion = '2.7.1'
set("androidGradlePluginVersion", "3.3.0")
set("testdroidGradlePluginVersion", "2.63.0")
set("appCompatVersion", "1.0.2")
set("materialVersion", "1.0.0")
set("annotationVersion", "1.0.0")
set("cardViewVersion", "1.0.0")
set("rxJavaVersion", "2.2.5")
set("rxAndroidVersion", "2.1.0")
set("okHttpVersion", "3.12.1")
set("retrofitVersion", "2.5.0")
set("javaxAnnotationVersion", "1.3.2")
set("daggerVersion", "2.16")
set("inkPageIndicatorVersion", "1.3.0")
set("constraintLayoutVersion", "1.1.3")
set("butterKnifeVersion", "10.0.0")
set("espressoVersion", "3.1.1")
set("apacheCommonsVersion", "2.6")
set("multidexVersion", "2.0.1")
set("jUnitVersion", "4.12")
set("mockitoVersion", "2.19.1")
set("powerMockVersion", "1.6.6")
set("powerMockJUnitVersion", "1.7.4")
set("baristaVersion", "2.7.1")
}
allprojects {

View File

@ -1 +1 @@
include ':app', ':kiwixlib'
include(":app", ":kiwixlib")