Skip to content

Commit 38c9fca

Browse files
committed
Updated dependencies and build files
1 parent 37f4a19 commit 38c9fca

File tree

5 files changed

+20
-17
lines changed

5 files changed

+20
-17
lines changed

.idea/compiler.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

Lines changed: 1 addition & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

app/build.gradle

Lines changed: 15 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ android {
1111
applicationId "com.appliedrec.credentials.app"
1212
minSdk 24
1313
targetSdk 33
14-
versionCode 8000000
15-
versionName "8.0.0"
14+
versionCode 8000001
15+
versionName "8.0.1"
1616
archivesBaseName += "-$versionName"
1717

1818
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
@@ -34,29 +34,33 @@ android {
3434
release {
3535
minifyEnabled false
3636
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
37+
ndk {
38+
//noinspection ChromeOsAbiSupport
39+
abiFilters 'armeabi-v7a', 'arm64-v8a'
40+
}
3741
}
3842
}
3943
buildFeatures {
4044
viewBinding true
4145
}
4246
compileOptions {
43-
sourceCompatibility JavaVersion.VERSION_1_8
44-
targetCompatibility JavaVersion.VERSION_1_8
47+
sourceCompatibility JavaVersion.VERSION_17
48+
targetCompatibility JavaVersion.VERSION_17
4549
}
4650
kotlinOptions {
47-
jvmTarget = '1.8'
51+
jvmTarget = '17'
4852
}
4953
}
5054

5155
dependencies {
5256

53-
implementation 'androidx.core:core-ktx:1.10.0'
57+
implementation 'androidx.core:core-ktx:1.10.1'
5458
implementation 'androidx.appcompat:appcompat:1.6.1'
55-
implementation 'com.google.android.material:material:1.8.0'
59+
implementation 'com.google.android.material:material:1.9.0'
5660
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
5761
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.6.1'
5862
implementation 'androidx.preference:preference:1.2.0'
59-
implementation 'com.appliedrec.verid:ui2:2.9.0'
63+
implementation 'com.appliedrec.verid:ui2:2.11.0'
6064
implementation('com.microblink:blinkid:6.1.2@aar') {
6165
transitive = true
6266
}
@@ -67,9 +71,9 @@ dependencies {
6771
implementation 'com.google.mlkit:barcode-scanning:17.1.0'
6872
implementation 'com.google.guava:guava:30.1.1-android'
6973
implementation files("libs/document-verification-client.aar")
70-
implementation 'androidx.camera:camera-lifecycle:1.2.2'
71-
implementation 'androidx.camera:camera-view:1.2.2'
72-
implementation "androidx.camera:camera-camera2:1.2.2"
74+
implementation 'androidx.camera:camera-lifecycle:1.2.3'
75+
implementation 'androidx.camera:camera-view:1.2.3'
76+
implementation "androidx.camera:camera-camera2:1.2.3"
7377
testImplementation 'junit:junit:4.13.2'
7478
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
7579
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
22
plugins {
3-
id 'com.android.application' version '7.4.1' apply false
4-
id 'com.android.library' version '7.4.1' apply false
3+
id 'com.android.application' version '8.0.2' apply false
4+
id 'com.android.library' version '8.0.2' apply false
55
id 'org.jetbrains.kotlin.android' version '1.8.0' apply false
66
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#Wed Mar 01 13:15:26 GMT 2023
22
distributionBase=GRADLE_USER_HOME
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.5-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0-bin.zip
44
distributionPath=wrapper/dists
55
zipStorePath=wrapper/dists
66
zipStoreBase=GRADLE_USER_HOME

0 commit comments

Comments
 (0)