@@ -14,8 +14,8 @@ android {
1414 applicationId " ca.bc.gov.vaxcheck"
1515 minSdk 27
1616 targetSdk 31
17- versionCode 12
18- versionName " 1.0.1 "
17+ versionCode 18
18+ versionName " 1.0.2 "
1919
2020 testInstrumentationRunner " androidx.test.runner.AndroidJUnitRunner"
2121 }
@@ -30,13 +30,9 @@ android {
3030 flavorDimensions " version"
3131 productFlavors {
3232
33- demo {
33+ dev {
3434 dimension " version"
35- versionNameSuffix " -demo"
36- }
37- stage {
38- dimension " version"
39- versionNameSuffix " -stage"
35+ versionNameSuffix " -dev"
4036 }
4137
4238 prod {
@@ -63,7 +59,7 @@ android {
6359}
6460
6561dependencies {
66-
62+ // implementation fileTree(dir: "src/**/libs", include: ["*.jar", "*.aar"])
6763 implementation " androidx.core:core-ktx:$versions . core_ktx "
6864
6965 implementation " androidx.appcompat:appcompat:$versions . appcompat "
@@ -90,6 +86,10 @@ dependencies {
9086
9187 // Dagger Hilt
9288 implementation " com.google.dagger:hilt-android:$versions . hilt "
89+ // implementation project(path: ':shcDecoder')
90+
91+ devImplementation " ca.bc.gov:shcdecoder-dev:$versions . shcdecoder "
92+ prodImplementation " ca.bc.gov:shcdecoder:$versions . shcdecoder "
9393
9494 kapt " com.google.dagger:hilt-compiler:$versions . hilt "
9595
@@ -109,20 +109,6 @@ dependencies {
109109
110110 implementation " androidx.camera:camera-extensions:$versions . camerax_extensions "
111111
112- // GSOn
113- implementation " com.google.code.gson:gson:$versions . gson "
114-
115- // JWT library
116- api " io.jsonwebtoken:jjwt-api:$versions . jjwt "
117- implementation " io.jsonwebtoken:jjwt-impl:$versions . jjwt "
118- implementation(" io.jsonwebtoken:jjwt-orgjson:$versions . jjwt " ) {
119- exclude group : ' org.json' , module : ' json' // provided by Android natively
120- }
121-
122- implementation " org.bouncycastle:bcprov-jdk15on:$versions . bouncycastle "
123-
124- // https://stackoverflow.com/questions/29402155/android-unit-test-not-mocked
125- testImplementation ' org.json:json:20210307'
126112
127113 testImplementation " junit:junit:$versions . junit "
128114
0 commit comments