Skip to content

Commit b882066

Browse files
committed
dev commit
1 parent 92759da commit b882066

File tree

7 files changed

+20
-14
lines changed

7 files changed

+20
-14
lines changed

.idea/compiler.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/kotlinc.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: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/build.gradle

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ android {
1010
minSdkVersion 23
1111
targetSdkVersion 33
1212
multiDexEnabled true
13-
versionCode 71
13+
versionCode 75
1414
vectorDrawables.useSupportLibrary = true
15-
versionName "2.3"
15+
versionName "2.4"
1616
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1717
}
1818

@@ -34,25 +34,25 @@ android {
3434
}
3535

3636
compileOptions {
37-
sourceCompatibility JavaVersion.VERSION_11
38-
targetCompatibility JavaVersion.VERSION_11
37+
sourceCompatibility JavaVersion.VERSION_17
38+
targetCompatibility JavaVersion.VERSION_17
3939
}
4040

4141
kotlinOptions {
42-
jvmTarget = "11"
42+
jvmTarget = "17"
4343
}
4444
namespace 'com.bharathvishal.textfilegeneratorbenchmark'
4545
}
4646

4747
dependencies {
4848
implementation fileTree(dir: 'libs', include: ['*.jar'])
49-
implementation 'com.google.android.material:material:1.9.0-alpha01'
50-
implementation 'com.github.bumptech.glide:glide:4.14.2'
51-
annotationProcessor 'com.github.bumptech.glide:compiler:4.14.2'
49+
implementation 'com.google.android.material:material:1.9.0-rc01'
50+
implementation 'com.github.bumptech.glide:glide:4.15.1'
51+
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.9.0'
55+
implementation 'androidx.core:core-ktx:1.10.0'
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

Lines changed: 2 additions & 2 deletions
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.10'
4+
ext.kotlin_version = '1.8.20'
55
repositories {
66
google()
77
mavenCentral()
88
}
99
dependencies {
10-
classpath 'com.android.tools.build:gradle:7.4.1'
10+
classpath 'com.android.tools.build:gradle:8.0.0'
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

gradle.properties

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,6 @@ android.useAndroidX=true
1919
android.enableJetifier=true
2020
# Kotlin code style for this project: "official" or "obsolete":
2121
kotlin.code.style=official
22+
android.defaults.buildfeatures.buildconfig=true
23+
android.nonTransitiveRClass=false
24+
android.nonFinalResIds=false
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#Wed Feb 08 17:57:03 IST 2023
22
distributionBase=GRADLE_USER_HOME
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-bin.zip
44
distributionPath=wrapper/dists
55
zipStorePath=wrapper/dists
66
zipStoreBase=GRADLE_USER_HOME

0 commit comments

Comments
 (0)