@@ -18,6 +18,15 @@ android {
18
18
versionCode 50401
19
19
versionName " 5.4.1"
20
20
testInstrumentationRunner " androidx.test.runner.AndroidJUnitRunner"
21
+
22
+ def apikeyProps = new Properties ()
23
+ file(" apikey.properties" ). withInputStream { apikeyProps. load(it) }
24
+
25
+ // Access the API key and set the buildConfigField
26
+ def restApiKey = apikeyProps. getProperty(" restApiKey" )
27
+ if (restApiKey != null ) {
28
+ buildConfigField(" String" , " API_KEY" , " \" ${ restApiKey} \" " )
29
+ }
21
30
}
22
31
23
32
buildFeatures {
@@ -73,26 +82,26 @@ dependencies {
73
82
implementation ' androidx.constraintlayout:constraintlayout:1.1.3'
74
83
// do NOT upgrade because zxing v3.4.0 requires min SDK 24 instead of SDK 21 currently used
75
84
implementation ' com.google.zxing:core:3.3.0'
76
- implementation ' com.journeyapps:zxing-android-embedded:4.0.2 @aar'
85
+ implementation ' com.journeyapps:zxing-android-embedded:4.2.0 @aar'
77
86
implementation ' com.squareup.retrofit2:retrofit:2.6.2'
78
87
implementation ' com.squareup.retrofit2:converter-gson:2.6.2'
79
88
implementation ' com.google.guava:guava:28.1-android'
80
89
implementation ' com.madgag.spongycastle:core:1.58.0.0'
81
90
implementation ' com.neovisionaries:nv-websocket-client:2.9'
82
91
implementation ' com.google.code.gson:gson:2.8.6'
83
92
implementation ' commons-io:commons-io:20030203.000550'
84
- implementation ' commons-codec:commons-codec:20041127.091804 '
93
+ implementation ' commons-codec:commons-codec:1.3 '
85
94
implementation ' org.apache.commons:commons-lang3:3.9'
86
95
implementation ' org.slf4j:slf4j-android:1.7.29'
87
96
implementation ' com.github.pokkst:bitcoincashj:0.17.5.2'
88
97
implementation " com.amplitude:android-sdk:2.24.2"
89
98
90
99
testImplementation ' junit:junit:4.12'
91
100
androidTestImplementation ' androidx.test.ext:junit:1.1.1'
92
- androidTestImplementation ' androidx.test.espresso:espresso-core:3.2.0 '
93
- androidTestImplementation ' androidx.test.espresso:espresso-intents:3.2.0 '
94
- androidTestImplementation ' androidx.test:runner:1.2.0 '
95
- androidTestImplementation ' androidx.test:rules:1.2.0 '
101
+ androidTestImplementation ' androidx.test.espresso:espresso-core:3.6.1 '
102
+ androidTestImplementation ' androidx.test.espresso:espresso-intents:3.6.1 '
103
+ androidTestImplementation ' androidx.test:runner:1.6.2 '
104
+ androidTestImplementation ' androidx.test:rules:1.6.1 '
96
105
// Optional -- Hamcrest library
97
106
androidTestImplementation ' org.hamcrest:hamcrest-library:1.3'
98
107
// Optional -- UI testing with UI Automator
0 commit comments