File tree Expand file tree Collapse file tree 2 files changed +9
-4
lines changed Expand file tree Collapse file tree 2 files changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -17,8 +17,13 @@ android {
17
17
18
18
testInstrumentationRunner " androidx.test.runner.AndroidJUnitRunner"
19
19
20
- buildConfigField ' String' , ' YOTI_APP_PACKAGE' , " \" $yotiAppPackage \" "
21
- buildConfigField ' String' , ' EASY_ID_APP_PACKAGE' , " \" $easyIdAppPackage \" "
20
+ def yotiAppPackageValue = " $yotiAppPackage "
21
+ def easyIdAppPackageValue = " $easyIdAppPackage "
22
+
23
+ manifestPlaceholders = [yotiAppPackage : yotiAppPackageValue, easyIdAppPackage : easyIdAppPackageValue]
24
+
25
+ buildConfigField ' String' , ' YOTI_APP_PACKAGE' , " \" ${ yotiAppPackageValue} \" "
26
+ buildConfigField ' String' , ' EASY_ID_APP_PACKAGE' , " \" $easyIdAppPackageValue \" "
22
27
buildConfigField ' int' , ' YOTI_APP_MIN_VERSION' , yotiAppMinVersion
23
28
buildConfigField ' String' , ' YOTI_BACKEND_URL' , " \" $yotiBackendUrl \" "
24
29
buildConfigField ' int' , ' YOTI_BACKEND_PORT' , " $yotiBackendPort "
Original file line number Diff line number Diff line change 3
3
package =" com.yoti.mobile.android.sdk" >
4
4
5
5
<queries >
6
- <package android : name =" com.yoti.mobile.android.live " />
7
- <package android : name =" com.postofficeid.mobile.android.live " />
6
+ <package android : name =" ${yotiAppPackage} " />
7
+ <package android : name =" ${easyIdAppPackage} " />
8
8
</queries >
9
9
10
10
<application
You can’t perform that action at this time.
0 commit comments