3 files changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -44,15 +44,15 @@ Point to the Android SDK directory by setting the environment variable
44
44
45
45
ANDROID_HOME=${HOME}/myapps/android-sdk/
46
46
47
- Create the file ` gradle.properties ` containing the lines:
47
+ In order to change your build environment create the file ` gradle.properties `
48
+ at a location pointed to by the environment variable ` GRADLE_USER_HOME ` .
49
+ This will extend and override the definitions found in the ` gradle.properties `
50
+ that is part of the release. Add e.g.
48
51
49
52
org.gradle.jvmargs=-Xmx1536m
50
53
org.gradle.parallel=true
51
- android.enableD8=true
52
- android.useAndroidX=true
53
- android.enableJetifier=true
54
- # Using the default ("false") for now because "true" actually makes the APK bigger for some reason
55
- # android.enableR8.fullMode=true
54
+ # Experimental (makes the APK a bit smaller)
55
+ android.enableR8.fullMode=true
56
56
57
57
Build the Kõnele app
58
58
@@ -63,7 +63,7 @@ If you have access to a release keystore then
63
63
64
64
- point to its location by setting the environment variable ` KEYSTORE `
65
65
- set ` KEY_ALIAS ` to the key alias
66
- - add these lines to ` gradle.properties ` :
66
+ - add these lines to your ` gradle.properties ` found in ` GRADLE_USER_HOME ` :
67
67
68
68
storePassword=<password1>
69
69
keyPassword=<password2>
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ dependencies {
12
12
implementation ' androidx.recyclerview:recyclerview:1.1.0'
13
13
// implementation 'androidx.activity:activity:1.2.0-alpha06'
14
14
implementation ' androidx.dynamicanimation:dynamicanimation:1.0.0'
15
- implementation ' com.google.android.material:material:1.1 .0'
15
+ implementation ' com.google.android.material:material:1.2 .0'
16
16
}
17
17
18
18
android {
@@ -26,8 +26,8 @@ android {
26
26
applicationId ' ee.ioc.phon.android.speak'
27
27
minSdkVersion 16
28
28
targetSdkVersion 30
29
- versionCode 1734
30
- versionName ' 1.7.34 '
29
+ versionCode 1736
30
+ versionName ' 1.7.36 '
31
31
vectorDrawables. useSupportLibrary = true
32
32
// Keep only en and et resources
33
33
resConfigs " en" , " et"
@@ -70,9 +70,7 @@ android {
70
70
}
71
71
72
72
buildFeatures {
73
- viewBinding {
74
- enabled = true
75
- }
73
+ viewBinding true
76
74
}
77
75
78
76
}
Original file line number Diff line number Diff line change
1
+ android.enableD8 =true
2
+ android.enableJetifier =true
1
3
android.useAndroidX =true
0 commit comments