Skip to content

Commit c466362

Browse files
authored
fix: capacitor 5 changes (#21)
1 parent 84d33e6 commit c466362

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

android/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ ext {
33
androidxAppCompatVersion = project.hasProperty('androidxAppCompatVersion') ? rootProject.ext.androidxAppCompatVersion : '1.6.1'
44
androidxJunitVersion = project.hasProperty('androidxJunitVersion') ? rootProject.ext.androidxJunitVersion : '1.1.5'
55
androidxEspressoCoreVersion = project.hasProperty('androidxEspressoCoreVersion') ? rootProject.ext.androidxEspressoCoreVersion : '3.5.1'
6-
kotlinVersion = project.hasProperty('kotlinVersion') ? rootProject.ext.kotlinVersion : '1.7.10'
6+
kotlinVersion = project.hasProperty('kotlinVersion') ? rootProject.ext.kotlinVersion : '1.8.20'
77
coreKtx = project.hasProperty('coreKtx') ? rootProject.ext.coreKtx : '1.9.0'
88
coroutinesVersion = project.hasProperty('coroutinesVersion') ? rootProject.ext.coroutinesVersion : '1.6.0'
99
androidxLifecycleVersion = project.hasProperty('androidxLifecycleVersion') ? rootProject.ext.androidxLifecycleVersion : '2.5.1'
@@ -18,7 +18,7 @@ buildscript {
1818
}
1919
dependencies {
2020
classpath 'com.android.tools.build:gradle:8.0.0'
21-
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.10"
21+
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.20"
2222
}
2323
}
2424

@@ -65,7 +65,7 @@ dependencies {
6565
implementation fileTree(dir: 'libs', include: ['*.jar'])
6666
implementation project(':capacitor-android')
6767
implementation "androidx.appcompat:appcompat:1.6.1"
68-
implementation "org.jetbrains.kotlin:kotlin-stdlib:1.7.10"
68+
implementation "org.jetbrains.kotlin:kotlin-stdlib:1.8.20"
6969
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.0"
7070
implementation 'com.google.android.material:material:1.6.1'
7171
implementation 'androidx.appcompat:appcompat:1.4.2'

android/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ org.gradle.jvmargs=-Xmx1536m
2222
android.useAndroidX=true
2323

2424
androidxEspressoCoreVersion=3.5.1
25-
kotlinVersion=1.7.10
25+
kotlinVersion=1.8.20
2626
coreKtx='1.9.0
2727
coroutinesVersion=1.6.0
2828
androidxLifecycleVersion=2.5.1

android/src/main/AndroidManifest.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
2-
xmlns:tools="http://schemas.android.com/tools"
3-
package="com.resgrid.plugins.resgrid">
2+
xmlns:tools="http://schemas.android.com/tools">
43

54
<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
65
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />

0 commit comments

Comments
 (0)