File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ android {
21
21
}
22
22
// pick first six characters
23
23
return stdout. toString(). trim(). substring(0 , 6 )
24
- } catch (Exception e) {
24
+ } catch (Exception e) {
25
25
return " "
26
26
}
27
27
}
@@ -30,15 +30,15 @@ android {
30
30
applicationId " com.ms_square.android.design.overlay"
31
31
minSdkVersion project. ANDROID_BUILD_MIN_SDK_VERSION
32
32
targetSdkVersion project. ANDROID_BUILD_TARGET_SDK_VERSION
33
- versionCode 4
34
- versionName " 1.0.3 "
33
+ versionCode 5
34
+ versionName " 1.0.4 "
35
35
}
36
36
37
37
signingConfigs {
38
38
release {
39
39
def Properties keyProps = new Properties ()
40
40
// double check if keystore.properties exists to avoid exception
41
- if (file(" ../keystore.properties" ). exists()) {
41
+ if (file(" ../keystore.properties" ). exists()) {
42
42
keyProps. load(new FileInputStream (file(' ../keystore.properties' )))
43
43
}
44
44
storeFile keyProps[" storeFile" ] != null ? file(keyProps[" storeFile" ]) : null
@@ -62,7 +62,7 @@ android {
62
62
proguardFiles getDefaultProguardFile(' proguard-android.txt' ), ' proguard-rules.pro'
63
63
64
64
// check if keystore.properties exists in the root
65
- if (file(" ../keystore.properties" ). exists()) {
65
+ if (file(" ../keystore.properties" ). exists()) {
66
66
signingConfig signingConfigs. release
67
67
}
68
68
}
You can’t perform that action at this time.
0 commit comments