Skip to content

Commit

Permalink
Associate LCW with lcw.app domain.
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitrizagidulin committed Oct 24, 2023
1 parent 4a2b00d commit d753bc3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/lib/registerWallet.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
import {Linking} from 'react-native';

export function registerWallet(): void {
Linking.canOpenURL('https://lcw.app/register-wallet').then(supported => {
Linking.canOpenURL('https://lcw.app/register-wallet.html').then(supported => {
if (supported) {
Linking.openURL('https://lcw.app/register-wallet');
Linking.openURL('https://lcw.app/register-wallet.html');
} else {
console.log('Unable to register wallet! Failed URL');
}
Expand Down
4 changes: 4 additions & 0 deletions ios/eduWallet/wallet.entitlements
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>com.apple.developer.associated-domains</key>
<array>
<string>applinks:lcw.app</string>
</array>
<key>com.apple.security.application-groups</key>
<array>
<string>group.edu.mit.eduwallet</string>
Expand Down

0 comments on commit d753bc3

Please sign in to comment.