Skip to content

Commit 831c044

Browse files
committed
gradle commit
gradle commit
1 parent dac03b9 commit 831c044

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

app/build.gradle

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ android {
1111
minSdkVersion 21
1212
targetSdkVersion 29
1313
multiDexEnabled true
14-
versionCode 8
14+
versionCode 9
1515
vectorDrawables.useSupportLibrary = true
16-
versionName "1.2.1"
16+
versionName "1.2.2"
1717
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1818
}
1919

@@ -35,17 +35,16 @@ android {
3535
dependencies {
3636
implementation fileTree(dir: 'libs', include: ['*.jar'])
3737
implementation "org.jetbrains.anko:anko-commons:0.10.4"
38-
implementation 'com.google.android.material:material:1.3.0-alpha04'
39-
implementation 'com.github.bumptech.glide:glide:4.11.0'
40-
annotationProcessor 'com.github.bumptech.glide:compiler:4.11.0'
38+
implementation 'com.google.android.material:material:1.3.0'
39+
implementation 'com.github.bumptech.glide:glide:4.12.0'
40+
annotationProcessor 'com.github.bumptech.glide:compiler:4.12.0'
4141
implementation 'androidx.cardview:cardview:1.0.0'
4242
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
4343
implementation 'androidx.appcompat:appcompat:1.2.0'
4444
implementation 'androidx.core:core-ktx:1.3.2'
4545
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
4646
testImplementation 'junit:junit:4.13'
4747
androidTestImplementation 'androidx.test:runner:1.3.0'
48-
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.7'
49-
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.7"
48+
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.8"
5049
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
5150
}

app/proguard-rules.pro

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,4 @@
2525
**[] $VALUES;
2626
public *;
2727
}
28+
-keep class kotlinx.coroutines.android.AndroidDispatcherFactory {*;}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<resources>
22
<string name="app_name">Text File Generator and Benchmark</string>
3-
<string name="txtCredits">©2020. Developed by Bharath Vishal.G<a href="https://github.com/BharathVishal">\nGithub</a></string>
3+
<string name="txtCredits" 2020 – 2021. Developed by Bharath Vishal.G<a href="https://github.com/BharathVishal">\nGithub</a></string>
44
</resources>

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
22

33
buildscript {
4-
ext.kotlin_version = '1.4.20'
4+
ext.kotlin_version = '1.4.30'
55
repositories {
66
google()
77
jcenter()
88

99
}
1010
dependencies {
11-
classpath 'com.android.tools.build:gradle:4.1.1'
11+
classpath 'com.android.tools.build:gradle:4.1.2'
1212
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
1313
// NOTE: Do not place your application dependencies here; they belong
1414
// in the individual module build.gradle files

0 commit comments

Comments
 (0)