Skip to content

Commit c837700

Browse files
committed
Dev commit
- Upgraded gradle plugin to 8.2 - Updated all internal dependencies.
1 parent a6b2e9c commit c837700

File tree

9 files changed

+44
-29
lines changed

9 files changed

+44
-29
lines changed

.idea/deploymentTargetDropDown.xml

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

.idea/gradle.xml

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

.idea/kotlinc.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/migrations.xml

Lines changed: 10 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: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ android {
1010
applicationId "com.bharathvishal.coroutineasasynctask"
1111
minSdk 23
1212
targetSdk 34
13-
versionCode 19
14-
versionName "1.0.11"
13+
versionCode 21
14+
versionName "1.0.12"
1515

1616
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
1717
vectorDrawables {
@@ -42,7 +42,7 @@ android {
4242
compose true
4343
}
4444
composeOptions {
45-
kotlinCompilerExtensionVersion "1.5.4"
45+
kotlinCompilerExtensionVersion "1.5.7"
4646
}
4747
packagingOptions {
4848
resources {
@@ -55,12 +55,12 @@ android {
5555
dependencies {
5656
implementation 'androidx.core:core-ktx:1.12.0'
5757
implementation "androidx.compose.ui:ui:1.5.4"
58-
implementation 'androidx.compose.material3:material3:1.2.0-alpha10'
59-
implementation "androidx.compose.material3:material3-window-size-class:1.2.0-alpha10"
58+
implementation 'androidx.compose.material3:material3:1.2.0-beta01'
59+
implementation "androidx.compose.material3:material3-window-size-class:1.2.0-beta01"
6060
implementation "androidx.compose.ui:ui-tooling-preview:1.5.4"
6161
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.6.2'
62-
implementation 'androidx.activity:activity-compose:1.8.0'
63-
implementation 'com.google.android.material:material:1.10.0'
62+
implementation 'androidx.activity:activity-compose:1.8.2'
63+
implementation 'com.google.android.material:material:1.11.0'
6464
testImplementation 'junit:junit:4.13.2'
6565
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
6666
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'

app/src/main/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<!--
3-
Copyright 2022-2023 Bharath Vishal G.
3+
Copyright 2022-2024 Bharath Vishal G.
44
55
Licensed under the Apache License, Version 2.0 (the "License");
66
you may not use this file except in compliance with the License.

app/src/main/java/com/bharathvishal/coroutineasasynctask/activities/MainActivity.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
*
3-
* Copyright 2022-2023 Bharath Vishal G.
3+
* Copyright 2022-2024 Bharath Vishal G.
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License");
66
* you may not use this file except in compliance with the License.

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
buildscript {
22
}// Top-level build file where you can add configuration options common to all sub-projects/modules.
33
plugins {
4-
id 'com.android.application' version '8.1.3' apply false
5-
id 'com.android.library' version '8.1.3' apply false
6-
id 'org.jetbrains.kotlin.android' version '1.9.20' apply false
4+
id 'com.android.application' version '8.2.0' apply false
5+
id 'com.android.library' version '8.2.0' apply false
6+
id 'org.jetbrains.kotlin.android' version '1.9.21' apply false
77
}
88

99
tasks.register('clean', Delete) {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#Thu Aug 11 08:16:27 IST 2022
22
distributionBase=GRADLE_USER_HOME
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-bin.zip
44
distributionPath=wrapper/dists
55
zipStorePath=wrapper/dists
66
zipStoreBase=GRADLE_USER_HOME

0 commit comments

Comments
 (0)