Skip to content

Commit d4f206c

Browse files
committed
Dependency updates
1 parent 7cff2af commit d4f206c

File tree

3 files changed

+21
-15
lines changed

3 files changed

+21
-15
lines changed

app/build.gradle

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,17 @@ android {
1515
buildConfigField "String", "BLINK_SUPPORTED_DOCUMENTS_URL", "\"https://github.com/BlinkID/blinkid-android/blob/master/documentation/BlinkIDRecognizer.md\""
1616
buildConfigField "String", "INTELLICHECK_URL", "\"https://dev.ver-id.com/id-check/parse-verify\""
1717
manifestPlaceholders = ["veridPassword": "8f821baf-4ae4-41cd-a175-91d7ef6a6db8"]
18-
viewBinding {
19-
enabled = true
20-
}
18+
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
2119
}
2220
buildTypes {
2321
release {
2422
minifyEnabled false
2523
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
2624
}
2725
}
26+
buildFeatures {
27+
viewBinding = true
28+
}
2829

2930
compileOptions {
3031
sourceCompatibility JavaVersion.VERSION_1_8
@@ -39,13 +40,18 @@ dependencies {
3940
implementation "com.appliedrec.verid:ui:$rootProject.veridVersion"
4041
implementation "com.appliedrec.verid:identity:$rootProject.veridIdentityVersion"
4142
implementation "com.appliedrec.verid:ui-elements:$rootProject.uiElementsVersion"
42-
implementation 'com.google.firebase:firebase-analytics:17.2.3'
43-
implementation 'com.google.firebase:firebase-crashlytics:17.0.0-beta01'
43+
implementation 'com.google.firebase:firebase-analytics:17.4.4'
44+
implementation 'com.google.firebase:firebase-crashlytics:17.1.1'
4445
implementation("com.microblink:blinkid:$rootProject.blinkidVersion@aar") {
4546
transitive = true
4647
}
47-
implementation 'androidx.appcompat:appcompat:1.1.0'
4848
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
49-
implementation 'androidx.security:security-crypto:1.0.0-alpha02'
49+
implementation 'androidx.security:security-crypto:1.1.0-alpha02'
5050
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
51+
52+
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
53+
androidTestImplementation 'androidx.test.espresso:espresso-intents:3.2.0'
54+
androidTestImplementation 'androidx.test:runner:1.2.0'
55+
androidTestImplementation 'androidx.test:rules:1.2.0'
56+
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
5157
}

build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,24 +7,24 @@ buildscript {
77

88
}
99
dependencies {
10-
classpath 'com.android.tools.build:gradle:3.6.1'
10+
classpath 'com.android.tools.build:gradle:4.0.1'
1111
classpath 'com.google.gms:google-services:4.3.3'
12-
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.0.0-beta02'
12+
classpath 'com.google.firebase:firebase-crashlytics-gradle:2.2.0'
1313
// NOTE: Do not place your application dependencies here; they belong
1414
// in the individual module build.gradle files
1515
}
1616
}
1717

1818
ext {
19-
appcompatVersion = '[1.1.0,2.0.0['
19+
appcompatVersion = '[1.2.0,2.0.0['
2020
veridVersion = '[1.20.0,2.0.0['
2121
rxveridVersion = '[1.10,2.0['
22-
blinkidVersion = '[5.0.0,6.0.0['
22+
blinkidVersion = '5.6.0'
2323
veridIdentityVersion = '[1.1.1,2.0.0['
2424
uiElementsVersion = '[2.0,3.0['
2525
versionMajor = 7
2626
versionMinor = 5
27-
versionPatch = 1
27+
versionPatch = 3
2828
versionClassifier = null
2929
versionClassifierVersion = ""
3030
minSdkVersion = 23
@@ -48,7 +48,7 @@ allprojects {
4848
jcenter()
4949
maven { url 'https://maven.fabric.io/public' }
5050
maven { url 'https://dev.ver-id.com/artifactory/gradle-release' }
51-
maven { url 'http://maven.microblink.com' }
51+
maven { url 'https://maven.microblink.com' }
5252
maven { url 'https://mvnrepository.com/artifact/org.apache.commons/commons-math3' }
5353
}
5454
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Fri Mar 06 09:24:42 GMT 2020
1+
#Thu Aug 06 17:03:01 BST 2020
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.4-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-6.1.1-all.zip

0 commit comments

Comments
 (0)