Skip to content

Commit 816bea6

Browse files
committed
Dev commit
- Upgraded gradle plugin - Upgraded compile and target sdk to 34. - Updated all internal libraries.
1 parent 90929f9 commit 816bea6

File tree

4 files changed

+10
-11
lines changed

4 files changed

+10
-11
lines changed

.idea/kotlinc.xml

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/build.gradle

+7-7
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@ apply plugin: 'com.android.application'
22
apply plugin: 'kotlin-android'
33

44
android {
5-
compileSdkVersion 33
5+
compileSdkVersion 34
66

7-
buildToolsVersion "33.0.0"
7+
buildToolsVersion "34.0.0"
88
defaultConfig {
99
applicationId "com.bharathvishal.textfilegeneratorbenchmark"
1010
minSdkVersion 23
11-
targetSdkVersion 33
11+
targetSdkVersion 34
1212
multiDexEnabled true
13-
versionCode 75
13+
versionCode 80
1414
vectorDrawables.useSupportLibrary = true
15-
versionName "2.4"
15+
versionName "2.5"
1616
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1717
}
1818

@@ -46,13 +46,13 @@ android {
4646

4747
dependencies {
4848
implementation fileTree(dir: 'libs', include: ['*.jar'])
49-
implementation 'com.google.android.material:material:1.9.0-rc01'
49+
implementation 'com.google.android.material:material:1.10.0-alpha04'
5050
implementation 'com.github.bumptech.glide:glide:4.15.1'
5151
annotationProcessor 'com.github.bumptech.glide:compiler:4.15.1'
5252
implementation 'androidx.cardview:cardview:1.0.0'
5353
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
5454
implementation 'androidx.appcompat:appcompat:1.6.1'
55-
implementation 'androidx.core:core-ktx:1.10.0'
55+
implementation 'androidx.core:core-ktx:1.10.1'
5656
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
5757
testImplementation 'junit:junit:4.13.2'
5858
androidTestImplementation 'androidx.test:runner:1.5.2'

build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
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.8.20'
4+
ext.kotlin_version = '1.8.21'
55
repositories {
66
google()
77
mavenCentral()
88
}
99
dependencies {
10-
classpath 'com.android.tools.build:gradle:8.0.0'
10+
classpath 'com.android.tools.build:gradle:8.0.2'
1111
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
1212
// NOTE: Do not place your application dependencies here; they belong
1313
// in the individual module build.gradle files

0 commit comments

Comments
 (0)