Skip to content

Commit

Permalink
Updating dependencies to latest. Removing top level Cargo file which …
Browse files Browse the repository at this point in the history
…was causing slight issues with the Android build.
  • Loading branch information
JonForShort committed Dec 26, 2023
1 parent bcf23a9 commit 902126b
Show file tree
Hide file tree
Showing 9 changed files with 192 additions and 132 deletions.
3 changes: 0 additions & 3 deletions Cargo.toml

This file was deleted.

8 changes: 4 additions & 4 deletions source/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -39,20 +39,20 @@ android {
}

compileOptions {
sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_11
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}

kotlinOptions {
jvmTarget = '11'
jvmTarget = JavaVersion.VERSION_17.toString()
}

buildFeatures {
compose true
}

composeOptions {
kotlinCompilerExtensionVersion '1.4.7'
kotlinCompilerExtensionVersion '1.5.7'
}

packagingOptions {
Expand Down
4 changes: 2 additions & 2 deletions source/android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
buildscript {
ext {
kotlin_version = '1.8.21'
kotlin_version = '1.9.21'
}

repositories {
Expand All @@ -9,7 +9,7 @@ buildscript {
}

dependencies {
classpath 'com.android.tools.build:gradle:8.0.2'
classpath 'com.android.tools.build:gradle:8.2.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
Expand Down
6 changes: 3 additions & 3 deletions source/android/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

# Specifies the JVM arguments used for the daemon process.
# The setting is particularly useful for tweaking memory settings.
org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8
org.gradle.jvmargs=-Xmx4096m -Dfile.encoding=UTF-8

# When configured, Gradle will run in incubating parallel mode.
# This option should only be used with decoupled projects. More details, visit
Expand All @@ -20,10 +20,10 @@ org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8
android.useAndroidX=true

# Automatically convert third-party libraries to use AndroidX
#android.enableJetifier=true
# android.enableJetifier=true

# Kotlin code style for this project: "official" or "obsolete":
kotlin.code.style=official

# Generate a build config
android.defaults.buildfeatures.buildconfig=true
android.defaults.buildfeatures.buildconfig=true
Binary file modified source/android/gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
4 changes: 2 additions & 2 deletions source/android/gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Sat May 06 12:42:37 PDT 2023
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
networkTimeout=10000
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Loading

0 comments on commit 902126b

Please sign in to comment.