Skip to content

Commit

Permalink
Merge pull request #79 from MXCzkEVM/dapps_redesign
Browse files Browse the repository at this point in the history
Dapps redesign
  • Loading branch information
reasje authored Oct 30, 2024
2 parents 6263c70 + 6aae53e commit 1150b2e
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 17 deletions.
12 changes: 9 additions & 3 deletions android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -102,12 +102,18 @@
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />

<data
android:host="mxc1usd.com"
android:pathPrefix="/app/" />
<data android:host="mxc1usd.com" android:pathPrefix="/app/" />

<data android:scheme="https"/>
</intent-filter>

<!-- Deep Link -->
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="moonbase" android:host="mxc1usd.com" android:pathPrefix="/app/" />
</intent-filter>
</activity>

<provider android:name="androidx.core.content.FileProvider" android:authorities="${applicationId}.provider" android:exported="false" android:grantUriPermissions="true">
Expand Down
35 changes: 21 additions & 14 deletions ios/Runner/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,27 @@
<string>$(FLUTTER_BUILD_NAME)</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleTypeRole</key>
<string>Editor</string>
<key>CFBundleURLSchemes</key>
<array>
<string>com.googleusercontent.apps.810578982053-p196bn8p9ipg3709v4ftk2a28fcvi6ka</string>
</array>
</dict>
<dict>
<key>CFBundleTypeRole</key>
<string>Editor</string>
<key>CFBundleURLName</key>
<string>com.moonchain.mxc</string>
<key>CFBundleURLSchemes</key>
<array>
<string>moonbase</string>
</array>
</dict>
</array>
<key>CFBundleVersion</key>
<string>$(FLUTTER_BUILD_NUMBER)</string>
<key>FlutterDeepLinkingEnabled</key>
Expand Down Expand Up @@ -124,20 +145,6 @@
<string>Would you allow Moonchain Wallet to use the Speech Recognition?</string>
<key>PermissionGroupNotification</key>
<string>Would you allow Moonchain Wallet to use the Notification?</string>
<!-- Google Sign-in Section -->
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleTypeRole</key>
<string>Editor</string>
<key>CFBundleURLSchemes</key>
<array>
<!-- Copied from GoogleService-Info.plist key REVERSED_CLIENT_ID -->
<string>com.googleusercontent.apps.810578982053-p196bn8p9ipg3709v4ftk2a28fcvi6ka</string>
</array>
</dict>
</array>
<!-- End of the Google Sign-in Section -->
<key>UIApplicationSupportsIndirectInputEvents</key>
<true/>
<key>UIBackgroundModes</key>
Expand Down

0 comments on commit 1150b2e

Please sign in to comment.