@@ -2,32 +2,31 @@ import java.text.SimpleDateFormat
22
33apply plugin : ' com.android.application'
44apply plugin : ' io.fabric'
5- apply plugin : ' android-apt'
65
76def versionMajor = 2
87def versionMinor = 2
98def versionPatch = 1
109def versionBuild = 1
1110
12- def buildTime () {
11+ static def buildTime () {
1312 def df = new SimpleDateFormat (" yyyyMMdd HH:mm 'UTC'" )
1413 df. setTimeZone(TimeZone . getTimeZone(" UTC" ))
1514 return df. format(new Date ())
1615}
1716
18- def gitSha () {
17+ static def gitSha () {
1918 return ' git rev-parse --short HEAD' . execute(). text. trim()
2019}
2120
2221
2322android {
24- compileSdkVersion 24
25- buildToolsVersion ' 25 .0.0 '
23+ compileSdkVersion 26
24+ buildToolsVersion ' 26 .0.1 '
2625 defaultConfig {
2726 applicationId " org.gnucash.android"
2827 testApplicationId ' org.gnucash.android.test'
2928 minSdkVersion 19
30- targetSdkVersion 23
29+ targetSdkVersion 26
3130 versionCode versionMajor * 10000 + versionMinor * 1000 + versionPatch * 100 + versionBuild
3231 versionName " ${ versionMajor} .${ versionMinor} .${ versionPatch} "
3332 resValue " string" , " app_version_name" , " ${ versionName} "
@@ -192,9 +191,9 @@ android.productFlavors.all { flavour ->
192191}
193192
194193
195- def androidSupportVersion = " 25.3 .1"
196- def androidEspressoVersion = " 2.2.2 "
197- def androidSupportTestVersion = " 0.5 "
194+ def androidSupportVersion = " 26.0 .1"
195+ def androidEspressoVersion = " 3.0.0 "
196+ def androidSupportTestVersion = " 1.0.0 "
198197
199198repositories {
200199 flatDir{
@@ -221,16 +220,16 @@ dependencies {
221220 ' com.github.techfreak:wizardpager:1.0.3' ,
222221 ' net.objecthunter:exp4j:0.4.7' ,
223222 ' org.apache.jackrabbit:jackrabbit-webdav:2.13.3' ,
224- ' com.dropbox.core:dropbox-core-sdk:2.1.2 ' ,
223+ ' com.dropbox.core:dropbox-core-sdk:3.0.3 ' ,
225224 ' com.android.support:multidex:1.0.1'
226225 )
227226
228- debugCompile ' com.facebook.stetho:stetho:1.4.2 '
227+ debugCompile ' com.facebook.stetho:stetho:1.5.0 '
229228
230- compile ' com.jakewharton:butterknife:8.5 .1'
231- apt ' com.jakewharton:butterknife-compiler:8.5 .1'
229+ compile ' com.jakewharton:butterknife:8.8 .1'
230+ annotationProcessor ' com.jakewharton:butterknife-compiler:8.8 .1'
232231
233- compile (' com.uservoice:uservoice-android-sdk:1.2.5 ' ) {
232+ compile (' com.uservoice:uservoice-android-sdk:1.2.6 ' ) {
234233 exclude module : ' commons-logging'
235234 exclude module : ' httpcore'
236235 exclude module : ' httpclient'
0 commit comments