Skip to content
Merged
Show file tree
Hide file tree
Changes from 7 commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
0663c49
chore(android): update Gradle dependencies to latest versions
alexgerardojacinto Nov 7, 2025
df84d2e
chore(android): update compileSdk and targetSdk to 36
alexgerardojacinto Nov 7, 2025
1a82db4
chore(android): update Gradle dependencies in example-app to latest
alexgerardojacinto Nov 7, 2025
654887f
Merge branch 'main' into chore/RMET-4678/up-gradle-dep
alexgerardojacinto Nov 10, 2025
726f910
chore(android): use variable for `kotlinCoroutinesVersion`
alexgerardojacinto Nov 10, 2025
9c230a6
Merge branch 'chore/RMET-4678/up-gradle-dep' of github.com:ionic-team…
alexgerardojacinto Nov 10, 2025
7674f45
Merge branch 'main' into chore/RMET-4678/up-gradle-dep
alexgerardojacinto Nov 25, 2025
4dc76cc
chore: update Capacitor dependencies to latest (8.0.0-beta.0)
alexgerardojacinto Nov 26, 2025
55ae6d1
Merge branch 'main' into chore/RMET-4678/up-gradle-dep
alexgerardojacinto Nov 26, 2025
8eb9672
chore: get npm dependencies from main branch
alexgerardojacinto Nov 26, 2025
56a8753
chore: update npm version
alexgerardojacinto Nov 26, 2025
e327c41
chore: update compileSdkVersion to 36
alexgerardojacinto Nov 26, 2025
89eec51
chore: update capacitor/core
alexgerardojacinto Nov 26, 2025
6d0578b
Merge branch 'chore/RMET-4678/up-gradle-dep' of github.com:ionic-team…
alexgerardojacinto Nov 26, 2025
8ff1919
chore: update ios deployment target to 15
alexgerardojacinto Nov 26, 2025
703f185
chore: update ios deployment target in example-app to 15.0
alexgerardojacinto Nov 26, 2025
5d174c9
chore: set Capacitor to stable version (8.0.0) in preparation for rel…
alexgerardojacinto Dec 3, 2025
d9a7215
chore: update macos image to macos-latest
alexgerardojacinto Dec 8, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions example-app/android/variables.gradle
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
ext {
minSdkVersion = 26
compileSdkVersion = 35
targetSdkVersion = 35
compileSdkVersion = 36
targetSdkVersion = 36
androidxActivityVersion = '1.8.0'
androidxAppCompatVersion = '1.7.0'
androidxCoordinatorLayoutVersion = '1.2.0'
androidxAppCompatVersion = '1.7.1'
androidxCoordinatorLayoutVersion = '1.3.0'
androidxCoreVersion = '1.12.0'
androidxFragmentVersion = '1.6.2'
coreSplashScreenVersion = '1.0.1'
coreSplashScreenVersion = '1.2.0'
androidxWebkitVersion = '1.9.0'
junitVersion = '4.13.2'
androidxJunitVersion = '1.1.5'
androidxEspressoCoreVersion = '3.5.1'
androidxJunitVersion = '1.3.0'
androidxEspressoCoreVersion = '3.7.0'
cordovaAndroidVersion = '10.1.1'
}
29 changes: 15 additions & 14 deletions plugin/android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
ext {
junitVersion = project.hasProperty('junitVersion') ? rootProject.ext.junitVersion : '4.13.2'
androidxAppCompatVersion = project.hasProperty('androidxAppCompatVersion') ? rootProject.ext.androidxAppCompatVersion : '1.7.0'
androidxJunitVersion = project.hasProperty('androidxJunitVersion') ? rootProject.ext.androidxJunitVersion : '1.2.1'
androidxEspressoCoreVersion = project.hasProperty('androidxEspressoCoreVersion') ? rootProject.ext.androidxEspressoCoreVersion : '3.6.1'
androidxAppCompatVersion = project.hasProperty('androidxAppCompatVersion') ? rootProject.ext.androidxAppCompatVersion : '1.7.1'
androidxJunitVersion = project.hasProperty('androidxJunitVersion') ? rootProject.ext.androidxJunitVersion : '1.3.0'
androidxEspressoCoreVersion = project.hasProperty('androidxEspressoCoreVersion') ? rootProject.ext.androidxEspressoCoreVersion : '3.7.0'
kotlinxCoroutinesVersion = project.hasProperty('kotlinxCoroutinesVersion') ? rootProject.ext.kotlinxCoroutinesVersion : '1.10.2'
}

buildscript {
Expand All @@ -28,7 +29,7 @@ android {
compileSdk = project.hasProperty('compileSdkVersion') ? rootProject.ext.compileSdkVersion : 35
defaultConfig {
minSdkVersion project.hasProperty('minSdkVersion') ? rootProject.ext.minSdkVersion : 26
targetSdkVersion project.hasProperty('targetSdkVersion') ? rootProject.ext.targetSdkVersion : 35
targetSdkVersion project.hasProperty('targetSdkVersion') ? rootProject.ext.targetSdkVersion : 36
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
Expand Down Expand Up @@ -61,17 +62,17 @@ dependencies {
implementation "io.ionic.libs:ionbarcode-android:2.0.1@aar"
implementation project(':capacitor-android')
implementation "androidx.appcompat:appcompat:$androidxAppCompatVersion"
implementation 'androidx.activity:activity-ktx:1.9.3'
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:1.7.3'
implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3'
implementation 'com.google.zxing:core:3.4.1'
implementation 'androidx.activity:activity-ktx:1.11.0'
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm:$kotlinxCoroutinesVersion"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:$kotlinxCoroutinesVersion"
implementation 'com.google.zxing:core:3.5.3'
implementation 'com.google.mlkit:barcode-scanning:17.3.0'
implementation 'androidx.camera:camera-camera2:1.4.0'
implementation 'androidx.camera:camera-lifecycle:1.4.0'
implementation 'androidx.camera:camera-view:1.4.0'
implementation 'androidx.activity:activity-compose:1.9.3'
implementation 'androidx.compose.material3:material3:1.3.1'
implementation 'androidx.compose.material3:material3-window-size-class:1.3.1'
implementation 'androidx.camera:camera-camera2:1.5.1'
implementation 'androidx.camera:camera-lifecycle:1.5.1'
implementation 'androidx.camera:camera-view:1.5.1'
implementation 'androidx.activity:activity-compose:1.11.0'
implementation 'androidx.compose.material3:material3:1.4.0'
implementation 'androidx.compose.material3:material3-window-size-class:1.4.0'
testImplementation "junit:junit:$junitVersion"
androidTestImplementation "androidx.test.ext:junit:$androidxJunitVersion"
androidTestImplementation "androidx.test.espresso:espresso-core:$androidxEspressoCoreVersion"
Expand Down
Loading