Committed by
GitHub
Merge pull request #1355 from navaronbracke/chore/remove-kotlin-bom
chore: remove Kotlin bom
Showing
6 changed files
with
14 additions
and
7 deletions
| @@ -104,6 +104,10 @@ unlinked_spec.ds | @@ -104,6 +104,10 @@ unlinked_spec.ds | ||
| 104 | **/macos/Flutter/GeneratedPluginRegistrant.swift | 104 | **/macos/Flutter/GeneratedPluginRegistrant.swift |
| 105 | **/macos/Flutter/ephemeral | 105 | **/macos/Flutter/ephemeral |
| 106 | 106 | ||
| 107 | +# Swift Package Manager related | ||
| 108 | +.build/ | ||
| 109 | +.swiftpm/ | ||
| 110 | + | ||
| 107 | # Coverage | 111 | # Coverage |
| 108 | coverage/ | 112 | coverage/ |
| 109 | 113 |
| @@ -73,10 +73,6 @@ dependencies { | @@ -73,10 +73,6 @@ dependencies { | ||
| 73 | implementation 'com.google.mlkit:barcode-scanning:17.3.0' | 73 | implementation 'com.google.mlkit:barcode-scanning:17.3.0' |
| 74 | } | 74 | } |
| 75 | 75 | ||
| 76 | - // org.jetbrains.kotlin:kotlin-bom artifact purpose is to align kotlin stdlib and related code versions. | ||
| 77 | - // See: https://youtrack.jetbrains.com/issue/KT-55297/kotlin-stdlib-should-declare-constraints-on-kotlin-stdlib-jdk8-and-kotlin-stdlib-jdk7 | ||
| 78 | - implementation(platform("org.jetbrains.kotlin:kotlin-bom:1.8.22")) | ||
| 79 | - | ||
| 80 | implementation 'androidx.camera:camera-lifecycle:1.3.4' | 76 | implementation 'androidx.camera:camera-lifecycle:1.3.4' |
| 81 | implementation 'androidx.camera:camera-camera2:1.3.4' | 77 | implementation 'androidx.camera:camera-camera2:1.3.4' |
| 82 | implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3' | 78 | implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3' |
| @@ -24,7 +24,8 @@ if (flutterVersionName == null) { | @@ -24,7 +24,8 @@ if (flutterVersionName == null) { | ||
| 24 | 24 | ||
| 25 | android { | 25 | android { |
| 26 | namespace "dev.steenbakker.mobile_scanner_example" | 26 | namespace "dev.steenbakker.mobile_scanner_example" |
| 27 | - compileSdk 34 | 27 | + compileSdk 35 |
| 28 | + ndkVersion "26.3.11579264" | ||
| 28 | 29 | ||
| 29 | compileOptions { | 30 | compileOptions { |
| 30 | sourceCompatibility JavaVersion.VERSION_17 | 31 | sourceCompatibility JavaVersion.VERSION_17 |
| @@ -43,7 +44,7 @@ android { | @@ -43,7 +44,7 @@ android { | ||
| 43 | // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). | 44 | // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). |
| 44 | applicationId "dev.steenbakker.mobile_scanner_example" | 45 | applicationId "dev.steenbakker.mobile_scanner_example" |
| 45 | minSdkVersion 24 | 46 | minSdkVersion 24 |
| 46 | - targetSdkVersion 34 | 47 | + targetSdkVersion 35 |
| 47 | versionCode flutterVersionCode.toInteger() | 48 | versionCode flutterVersionCode.toInteger() |
| 48 | versionName flutterVersionName | 49 | versionName flutterVersionName |
| 49 | } | 50 | } |
| 1 | name: mobile_scanner | 1 | name: mobile_scanner |
| 2 | description: A universal barcode and QR code scanner for Flutter based on MLKit. Uses CameraX on Android, AVFoundation on iOS and Apple Vision & AVFoundation on macOS. | 2 | description: A universal barcode and QR code scanner for Flutter based on MLKit. Uses CameraX on Android, AVFoundation on iOS and Apple Vision & AVFoundation on macOS. |
| 3 | -version: 6.0.7 | 3 | +version: 6.0.8 |
| 4 | repository: https://github.com/juliansteenbakker/mobile_scanner | 4 | repository: https://github.com/juliansteenbakker/mobile_scanner |
| 5 | 5 | ||
| 6 | screenshots: | 6 | screenshots: |
-
Please register or login to post a comment