Commit e0f9e316 authored by Javohir Savriy's avatar Javohir Savriy
Browse files

2.1.5

parent a03db48b
...@@ -2,6 +2,18 @@ ...@@ -2,6 +2,18 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
## [2.1.5] - 25 Mar, 2023
### Changed features
- Update `cameraVersion` from `1.3.0-alpha01` to `1.2.2`
- Update `mlkit-barcode-scanning` from `18.1.0` to `18.2.0`
- Update `sentry-android` from `6.7.0-alpha.1` to `6.16.0`
### Fixes
- 🔨 Locale change bug fixed.
## [2.1.4] - 21 Feb, 2023 ## [2.1.4] - 21 Feb, 2023
### New features ### New features
......
...@@ -51,11 +51,11 @@ libraries (For example libs) and copy MyID SDK provided libraries. ...@@ -51,11 +51,11 @@ libraries (For example libs) and copy MyID SDK provided libraries.
Add reference to library to module **_build.gradle_**: Add reference to library to module **_build.gradle_**:
``` gradle ``` gradle
implementation(files("libs/myid-sdk-2.1.4-release.aar")) implementation(files("libs/myid-sdk-2.1.5-release.aar"))
``` ```
**Note:** You can get `myid-sdk-2.1.4-release.aar` file **Note:** You can get `myid-sdk-2.1.5-release.aar` file
from [here](android-sample/app/libs/myid-sdk-2.1.4-release.aar) from [here](app/libs/myid-sdk-2.1.5-release.aar)
After synchronization, You should be able to access to SDK classes from your source code. After synchronization, You should be able to access to SDK classes from your source code.
...@@ -63,33 +63,30 @@ MyID Android SDK also requires following libraries to be added: ...@@ -63,33 +63,30 @@ MyID Android SDK also requires following libraries to be added:
``` gradle ``` gradle
dependencies { dependencies {
implementation(files("libs/myid-sdk-2.1.4-release.aar")) implementation(files("libs/myid-sdk-2.1.5-release.aar"))
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4")
implementation("androidx.core:core-ktx:1.9.0")
implementation("androidx.appcompat:appcompat:1.5.1") implementation("androidx.appcompat:appcompat:1.5.1")
implementation("androidx.constraintlayout:constraintlayout:2.1.4") implementation("androidx.constraintlayout:constraintlayout:2.1.4")
implementation("androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.1") implementation("androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.1")
implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.5.1") implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.5.1")
def cameraVersion = "1.3.0-alpha01" def cameraVersion = "1.2.2"
implementation("androidx.camera:camera-camera2:$cameraVersion") implementation("androidx.camera:camera-camera2:$cameraVersion")
implementation("androidx.camera:camera-lifecycle:$cameraVersion") implementation("androidx.camera:camera-lifecycle:$cameraVersion")
implementation("androidx.camera:camera-view:$cameraVersion") implementation("androidx.camera:camera-view:$cameraVersion")
implementation("io.ktor:ktor-client-android:2.1.2")
implementation("io.sentry:sentry-android:6.7.0-alpha.1")
// Use these dependencies if your app supports Google Play Services // Use these dependencies if your app supports Google Play Services
implementation("com.google.android.gms:play-services-mlkit-face-detection:17.1.0") implementation("com.google.android.gms:play-services-mlkit-face-detection:17.1.0")
implementation("com.google.android.gms:play-services-mlkit-text-recognition:18.0.2") implementation("com.google.android.gms:play-services-mlkit-text-recognition:18.0.2")
implementation("com.google.android.gms:play-services-mlkit-barcode-scanning:18.1.0") implementation("com.google.android.gms:play-services-mlkit-barcode-scanning:18.2.0")
// Use these dependencies if your app doesn't support Google Play Services // Use these dependencies if your app doesn't support Google Play Services
implementation("com.google.mlkit:face-detection:16.1.5") implementation("com.google.mlkit:face-detection:16.1.5")
implementation("com.google.mlkit:text-recognition:16.0.0-beta6") implementation("com.google.mlkit:text-recognition:16.0.0-beta6")
implementation("com.google.mlkit:barcode-scanning:17.0.2") implementation("com.google.mlkit:barcode-scanning:17.1.0")
implementation("io.ktor:ktor-client-android:2.1.2")
implementation("io.sentry:sentry-android:6.16.0")
} }
``` ```
......
...@@ -37,27 +37,23 @@ android { ...@@ -37,27 +37,23 @@ android {
} }
dependencies { dependencies {
implementation(files("libs/myid-sdk-2.1.4-release.aar")) implementation(files("libs/myid-sdk-2.1.5-release.aar"))
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.4")
implementation("androidx.core:core-ktx:1.9.0")
implementation("androidx.appcompat:appcompat:1.5.1") implementation("androidx.appcompat:appcompat:1.5.1")
implementation("androidx.constraintlayout:constraintlayout:2.1.4") implementation("androidx.constraintlayout:constraintlayout:2.1.4")
implementation("androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.1") implementation("androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.1")
implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.5.1") implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.5.1")
def cameraVersion = "1.3.0-alpha01" def cameraVersion = "1.2.2"
implementation("androidx.camera:camera-camera2:$cameraVersion") implementation("androidx.camera:camera-camera2:$cameraVersion")
implementation("androidx.camera:camera-lifecycle:$cameraVersion") implementation("androidx.camera:camera-lifecycle:$cameraVersion")
implementation("androidx.camera:camera-view:$cameraVersion") implementation("androidx.camera:camera-view:$cameraVersion")
implementation("io.ktor:ktor-client-android:2.1.2") implementation("com.google.android.material:material:1.8.0")
implementation("io.sentry:sentry-android:6.7.0-alpha.1")
implementation("com.google.android.gms:play-services-mlkit-face-detection:17.1.0") implementation("com.google.android.gms:play-services-mlkit-face-detection:17.1.0")
implementation("com.google.android.gms:play-services-mlkit-text-recognition:18.0.2") implementation("com.google.android.gms:play-services-mlkit-text-recognition:18.0.2")
implementation("com.google.android.gms:play-services-mlkit-barcode-scanning:18.1.0") implementation("com.google.android.gms:play-services-mlkit-barcode-scanning:18.2.0")
implementation("com.google.android.material:material:1.8.0") implementation("io.ktor:ktor-client-android:2.1.2")
implementation("io.sentry:sentry-android:6.16.0")
} }
\ No newline at end of file
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment