Order is now getting saved properly

Also enabled Java 8
This commit is contained in:
Michael Schättgen 2016-10-25 23:53:33 +02:00
parent 036dd2b2cb
commit 22524136a7
7 changed files with 106 additions and 25 deletions

View file

@ -10,6 +10,9 @@ android {
targetSdkVersion 24
versionCode 1
versionName "1.0"
jackOptions {
enabled true
}
}
buildTypes {
release {
@ -17,6 +20,10 @@ android {
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
compileOptions {
targetCompatibility 1.8
sourceCompatibility 1.8
}
}