Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 12 additions & 6 deletions frontend/src-tauri/gen/android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,32 +33,38 @@
<data android:scheme="cloud.opensecret.maple" />
</intent-filter>
<!-- DEEP LINK PLUGIN. AUTO-GENERATED. DO NOT REMOVE. -->
<!-- Payment success callbacks -->
<intent-filter android:autoVerify="true">
<intent-filter android:autoVerify="true" >
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="https" />
<data android:host="trymaple.ai" />


<data android:pathPrefix="/payment-success" />

</intent-filter>
<!-- Payment canceled callbacks -->
<intent-filter android:autoVerify="true">
<intent-filter android:autoVerify="true" >
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="https" />
<data android:host="trymaple.ai" />


<data android:pathPrefix="/payment-canceled" />

</intent-filter>
<!-- Pricing page with parameters -->
<intent-filter android:autoVerify="true">
<intent-filter android:autoVerify="true" >
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="https" />
<data android:host="trymaple.ai" />


<data android:pathPrefix="/pricing" />

</intent-filter>
<!-- DEEP LINK PLUGIN. AUTO-GENERATED. DO NOT REMOVE. -->
</activity>
Expand Down
14 changes: 11 additions & 3 deletions frontend/src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,21 @@
},
"mobile": [
{
"scheme": ["cloud.opensecret.maple"],
"appLink": false
"scheme": ["https"],
"host": "trymaple.ai",
"pathPrefix": ["/payment-success"],
"appLink": true
},
{
"scheme": ["https"],
"host": "trymaple.ai",
"pathPrefix": ["/payment-canceled"],
"appLink": true
},
{
"scheme": ["https"],
"host": "trymaple.ai",
"pathPrefix": ["/payment-success", "/payment-canceled", "/pricing"],
"pathPrefix": ["/pricing"],
"appLink": true
}
]
Expand Down
Loading