Skip to content

Commit aabea01

Browse files
Updated example app
1 parent 069aeea commit aabea01

7 files changed

Lines changed: 26 additions & 25 deletions

File tree

.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/gradle.xml

Lines changed: 0 additions & 1 deletion
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: 18 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@ android {
99
compose true
1010
}
1111
composeOptions {
12-
kotlinCompilerExtensionVersion '1.4.3'
13-
kotlinCompilerVersion '1.8.10'
12+
kotlinCompilerExtensionVersion '1.4.6'
1413
}
1514

1615
defaultConfig {
@@ -31,12 +30,12 @@ android {
3130
}
3231

3332
compileOptions {
34-
sourceCompatibility JavaVersion.VERSION_1_8
35-
targetCompatibility JavaVersion.VERSION_1_8
33+
sourceCompatibility JavaVersion.VERSION_11
34+
targetCompatibility JavaVersion.VERSION_11
3635
}
3736

3837
kotlinOptions {
39-
jvmTarget = '1.8'
38+
jvmTarget = '11'
4039
}
4140
namespace 'com.dapi.dapiconnect'
4241

@@ -46,28 +45,28 @@ dependencies {
4645
implementation fileTree(dir: "libs", include: ["*.jar"])
4746

4847
//Dapi
49-
implementation 'co.dapi:connect:2.33.0'
48+
implementation 'co.dapi:connect:2.37.3'
5049

5150
// Compose
52-
implementation "androidx.compose.runtime:runtime:1.3.3"
53-
implementation "androidx.compose.ui:ui:1.3.3"
54-
implementation "androidx.compose.foundation:foundation:1.3.1"
55-
implementation "androidx.compose.foundation:foundation-layout:1.3.1"
56-
implementation "androidx.compose.material:material:1.3.1"
57-
implementation "androidx.compose.ui:ui-tooling:1.3.3"
51+
implementation "androidx.compose.runtime:runtime:1.4.3"
52+
implementation "androidx.compose.ui:ui:1.4.3"
53+
implementation "androidx.compose.foundation:foundation:1.4.3"
54+
implementation "androidx.compose.foundation:foundation-layout:1.4.3"
55+
implementation "androidx.compose.material:material:1.4.3"
56+
implementation "androidx.compose.ui:ui-tooling:1.4.3"
5857
implementation "com.google.android.material:compose-theme-adapter:1.2.1"
59-
implementation "androidx.activity:activity-compose:1.6.1"
58+
implementation "androidx.activity:activity-compose:1.7.2"
6059
implementation "io.coil-kt:coil-compose:2.0.0"
61-
implementation "androidx.navigation:navigation-compose:2.5.3"
62-
implementation "androidx.compose.ui:ui-tooling-preview:1.3.3"
63-
implementation "androidx.lifecycle:lifecycle-runtime-ktx:2.6.0"
60+
implementation "androidx.navigation:navigation-compose:2.6.0"
61+
implementation "androidx.compose.ui:ui-tooling-preview:1.4.3"
62+
implementation "androidx.lifecycle:lifecycle-runtime-ktx:2.6.1"
6463
implementation "androidx.multidex:multidex:2.0.1"
65-
implementation "androidx.core:core-ktx:1.9.0"
66-
implementation "androidx.compose.runtime:runtime-livedata:1.3.3"
64+
implementation "androidx.core:core-ktx:1.10.1"
65+
implementation "androidx.compose.runtime:runtime-livedata:1.4.3"
6766

6867
//Android Architecture Components
6968
implementation "androidx.lifecycle:lifecycle-extensions:2.2.0"
70-
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.0"
69+
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.1"
7170

7271
testImplementation "junit:junit:4.13.2"
7372
androidTestImplementation "androidx.test.ext:junit:1.1.5"

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
buildscript {
3-
ext.kotlin_version = '1.8.10'
3+
ext.kotlin_version = '1.8.20'
44
repositories {
55
mavenCentral()
66
google()
77

88
}
99
dependencies {
10-
classpath 'com.android.tools.build:gradle:7.3.1'
10+
classpath 'com.android.tools.build:gradle:8.0.0'
1111
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
1212

1313
// NOTE: Do not place your application dependencies here; they belong

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

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4-bin.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-bin.zip

0 commit comments

Comments
 (0)