File tree Expand file tree Collapse file tree 4 files changed +15
-6
lines changed Expand file tree Collapse file tree 4 files changed +15
-6
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
All notable changes to this project will be documented in this file.
3
+ ## [ 1.3.3] - 2022-04-04
4
+ ### Changed
5
+ - Add configurable app packages (automation fix)
6
+
3
7
## [ 1.3.2] - 2022-03-30
4
8
### Fixed
5
9
- Fix crash when returning from Digital IDs Apps.
Original file line number Diff line number Diff line change @@ -56,9 +56,9 @@ easyIDScheme=easyid://
56
56
pomId =yoti-button-sdk
57
57
pomGroup =com.yoti.mobile.android.sdk
58
58
pomPackaging =aar
59
- pomVersion =1.3.2
59
+ pomVersion =1.3.3
60
60
pomDescription =Button SDK that allows 3rd party to trigger Yoti as support app
61
- currentVersionCode =000012
61
+ currentVersionCode =000013
62
62
63
63
pomLicenseName =MIT
64
64
pomLicenseUrl =https://github.com/getyoti/android-sdk-button/blob/master/LICENSE.md
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