Skip to content

Commit 18a7fe7

Browse files
committed
v1.1 commit
- Updated all internal libraries - Updated gradle to 6.1.1
1 parent 8e70cf6 commit 18a7fe7

File tree

4 files changed

+30
-13
lines changed

4 files changed

+30
-13
lines changed

.idea/codeStyles/Project.xml

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

app/build.gradle

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,17 @@ apply plugin: 'kotlin-android'
33
apply plugin: 'kotlin-android-extensions'
44

55
android {
6-
compileSdkVersion 30
6+
compileSdkVersion 29
77

8-
buildToolsVersion "30.0.1"
8+
buildToolsVersion "29.0.3"
99
defaultConfig {
1010
applicationId "com.bharathvishal.textfilegeneratorbenchmark"
1111
minSdkVersion 21
12-
targetSdkVersion 30
12+
targetSdkVersion 29
1313
multiDexEnabled true
14-
versionCode 1
14+
versionCode 4
1515
vectorDrawables.useSupportLibrary = true
16-
versionName "1.0"
16+
versionName "1.1"
1717
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1818
}
1919

@@ -35,17 +35,17 @@ 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-alpha01'
38+
implementation 'com.google.android.material:material:1.3.0-alpha02'
3939
implementation 'com.github.bumptech.glide:glide:4.11.0'
4040
annotationProcessor 'com.github.bumptech.glide:compiler:4.11.0'
4141
implementation 'androidx.cardview:cardview:1.0.0'
4242
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
43-
implementation 'androidx.appcompat:appcompat:1.1.0'
43+
implementation 'androidx.appcompat:appcompat:1.2.0'
4444
implementation 'androidx.core:core-ktx:1.3.1'
45-
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
45+
implementation 'androidx.constraintlayout:constraintlayout:2.0.1'
4646
testImplementation 'junit:junit:4.13'
47-
androidTestImplementation 'androidx.test:runner:1.2.0'
48-
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.5'
47+
androidTestImplementation 'androidx.test:runner:1.3.0'
48+
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.7'
4949
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.3.5"
50-
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
50+
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
5151
}

app/src/main/AndroidManifest.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@
1313
android:label="@string/app_name"
1414
android:roundIcon="@mipmap/ic_launcher_round"
1515
android:supportsRtl="true"
16-
android:theme="@style/AppTheme" tools:ignore="GoogleAppIndexingWarning">
16+
android:theme="@style/AppTheme" tools:ignore="GoogleAppIndexingWarning"
17+
tools:targetApi="q">
1718
<activity android:name=".MainActivity"
1819
android:screenOrientation="portrait">
1920
<intent-filter>

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
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.3.72'
4+
ext.kotlin_version = '1.4.10'
55
repositories {
66
google()
77
jcenter()

0 commit comments

Comments
 (0)