Skip to content

Commit

Permalink
configures chapi app url
Browse files Browse the repository at this point in the history
  • Loading branch information
kezike committed Oct 31, 2023
1 parent 033bdc5 commit f2b3791
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@

<data
android:scheme="http"
android:host="lcw.app" />
android:host="lcw.app"
android:pathPrefix="/mobile" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW"/>
Expand Down
2 changes: 1 addition & 1 deletion app/lib/deepLink.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import { onShareIntent } from './shareIntent';
* specific to the scheme `dccrequest` and path `request`. If new paths are
* added here, they must also be added to `android/app/src/main/AndroidManifest.xml`.
*/
const DEEP_LINK_SCHEMES = ['dccrequest://', 'org.dcconsortium://'];
const DEEP_LINK_SCHEMES = ['https://lcw.app/mobile', 'dccrequest://', 'org.dcconsortium://'];
const DEEP_LINK_PATHS: DeepLinkPaths = {
request: (credentialRequestParams) => deepLinkNavigate('ProfileSelectionScreen', {
onSelectProfile: (rawProfileRecord) => navigationRef.navigate('AcceptCredentialsNavigation', {
Expand Down
2 changes: 1 addition & 1 deletion ios/eduWallet/wallet.entitlements
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<dict>
<key>com.apple.developer.associated-domains</key>
<array>
<string>applinks:lcw.app</string>
<string>applinks:lcw.app/mobile</string>
</array>
<key>com.apple.security.application-groups</key>
<array>
Expand Down

0 comments on commit f2b3791

Please sign in to comment.