Skip to content

Commit c64b897

Browse files
committed
Fix
1 parent 255aff1 commit c64b897

File tree

10 files changed

+153
-19
lines changed

10 files changed

+153
-19
lines changed
584 Bytes
Binary file not shown.

.idea/caches/gradle_models.ser

160 KB
Binary file not shown.

.idea/codeStyles/Project.xml

Lines changed: 116 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/gradle.xml

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 18 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ apply plugin: 'com.android.application'
22
apply from : 'signing.gradle'
33

44
android {
5-
compileSdkVersion 27
6-
buildToolsVersion "27.0.3"
5+
compileSdkVersion 28
6+
buildToolsVersion "28.0.3"
77
defaultConfig {
88
applicationId "com.zeroone.concealexample"
99
minSdkVersion 16
10-
targetSdkVersion 27
10+
targetSdkVersion 28
1111
versionCode 1
1212
versionName "1.0.0"
1313

@@ -33,9 +33,9 @@ android {
3333

3434
dependencies {
3535
implementation fileTree(include: ['*.jar'], dir: 'libs')
36-
implementation 'com.android.support:appcompat-v7:27.1.1'
36+
implementation 'com.android.support:appcompat-v7:28.0.0'
3737
androidTestImplementation 'junit:junit:4.12'
38-
androidTestImplementation 'com.android.support:support-annotations:27.1.1'
38+
androidTestImplementation 'com.android.support:support-annotations:28.0.0'
3939
androidTestImplementation 'com.android.support.test:runner:1.0.2'
4040
androidTestImplementation 'com.android.support.test:rules:1.0.2'
4141
androidTestImplementation 'com.android.support.test:runner:1.0.2'
@@ -51,5 +51,5 @@ dependencies {
5151
exclude group: 'com.google.code.gson', module: 'gson'
5252
}
5353

54-
implementation 'com.google.code.gson:gson:2.8.2'
54+
implementation 'com.google.code.gson:gson:2.8.5'
5555
}

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ buildscript {
66
google()
77
}
88
dependencies {
9-
classpath 'com.android.tools.build:gradle:3.1.0'
9+
classpath 'com.android.tools.build:gradle:3.5.0'
1010
// NOTE: Do not place your application dependencies here; they belong
1111
// in the individual module build.gradle files
1212
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Tue Nov 07 23:40:06 MYT 2017
1+
#Fri Sep 27 21:41:52 MYT 2019
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-5.4.1-all.zip

library/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ apply plugin: 'com.android.library'
33
group='com.github.afiqiqmal'
44

55
android {
6-
compileSdkVersion 27
6+
compileSdkVersion 28
77
buildToolsVersion "27.0.3"
88

99
defaultConfig {
1010
minSdkVersion 16
11-
targetSdkVersion 27
11+
targetSdkVersion 28
1212
versionCode 1
13-
versionName "2.5.0"
13+
versionName "2.6.0"
1414
}
1515
buildTypes {
1616
release {
@@ -23,6 +23,6 @@ android {
2323
dependencies {
2424
implementation fileTree(dir: 'libs', include: ['*.jar'])
2525
implementation 'com.facebook.conceal:conceal:2.0.2@aar'
26-
implementation 'com.android.support:support-annotations:27.1.1'
27-
implementation 'com.google.code.gson:gson:2.8.2'
26+
implementation 'com.android.support:support-annotations:28.0.0'
27+
implementation 'com.google.code.gson:gson:2.8.5'
2828
}

library/src/main/AndroidManifest.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
package="com.zeroone.conceal">
44

5-
<application android:allowBackup="true" android:label="@string/app_name"
6-
android:supportsRtl="true">
5+
<application
6+
android:label="@string/app_name">
77

88
</application>
99

0 commit comments

Comments
 (0)