Skip to content

Commit 669a656

Browse files
committed
AGP 8.0.2, upgrade libraries, openjdk17 in jitpack.yml, pump library version to 0.0.3
1 parent 310ba31 commit 669a656

File tree

6 files changed

+17
-15
lines changed

6 files changed

+17
-15
lines changed

SydneySuburbs/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ publishing {
4646
release(MavenPublication) {
4747
groupId = 'com.github.vinchamp77'
4848
artifactId = 'demo-simple-android-lib'
49-
version = '0.0.2'
49+
version = '0.0.3'
5050

5151
afterEvaluate {
5252
from components.release

app/build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -56,15 +56,15 @@ android {
5656

5757
dependencies {
5858

59-
implementation 'androidx.core:core-ktx:1.9.0'
60-
implementation 'androidx.appcompat:appcompat:1.5.1'
61-
implementation 'com.google.android.material:material:1.7.0'
59+
implementation 'androidx.core:core-ktx:1.10.1'
60+
implementation 'androidx.appcompat:appcompat:1.6.1'
61+
implementation 'com.google.android.material:material:1.9.0'
6262
implementation "androidx.compose.ui:ui:$compose_version"
6363
implementation "androidx.compose.material:material:$compose_version"
6464
implementation "androidx.compose.ui:ui-tooling-preview:$compose_version"
65-
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.5.1'
66-
implementation 'androidx.activity:activity-compose:1.6.1'
65+
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.6.1'
66+
implementation 'androidx.activity:activity-compose:1.7.2'
6767

6868
implementation project(':SydneySuburbs')
69-
//implementation 'com.github.vinchamp77:demo-simple-android-lib:0.0.2'
69+
//implementation 'com.github.vinchamp77:demo-simple-android-lib:0.0.3'
7070
}

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
22
buildscript {
33
ext {
4-
compose_version = '1.3.0'
4+
compose_version = '1.4.3'
55
}
66
repositories {
77
google()
88
mavenCentral()
99
}
1010
dependencies {
11-
classpath 'com.android.tools.build:gradle:7.4.2'
12-
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.10"
11+
classpath 'com.android.tools.build:gradle:8.0.2'
12+
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.10"
1313

1414
// NOTE: Do not place your application dependencies here; they belong
1515
// in the individual module build.gradle files

gradle.properties

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8
1515
# Android operating system, and which are packaged with your app"s APK
1616
# https://developer.android.com/topic/libraries/support-library/androidx-rn
1717
android.useAndroidX=true
18-
# Automatically convert third-party libraries to use AndroidX
19-
android.enableJetifier=true
2018
# Kotlin code style for this project: "official" or "obsolete":
21-
kotlin.code.style=official
19+
kotlin.code.style=official
20+
# Enables namespacing of each library's R class so that its R class includes only the
21+
# resources declared in the library itself and none from the library's dependencies,
22+
# thereby reducing the size of the R class for that library
23+
android.nonTransitiveRClass=true
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#Thu Jan 06 00:18:14 AEDT 2022
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

jitpack.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
jdk:
2-
- openjdk11
2+
- openjdk17

0 commit comments

Comments
 (0)