Merge branch 'main' into splash

This commit is contained in:
Raj
2024-04-10 13:16:28 +05:30
committed by GitHub
24 changed files with 1659 additions and 423 deletions

View File

@@ -32,8 +32,33 @@
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<!-- Don't delete the meta-data below.
This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
<!-- SMALL CASE API-->
<activity android:name="com.smallcase.gateway.screens.transaction.activity.TransactionProcessActivity"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.BROWSABLE" />
<category android:name="android.intent.category.DEFAULT" />
<data
android:host="pi-advisors"
android:scheme="scgateway"
/>
</intent-filter>
</activity>
<activity android:name="com.smallcase.gateway.screens.common.RedirectActivity"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.BROWSABLE" />
<category android:name="android.intent.category.DEFAULT" />
<data
android:host="pi-advisors"
android:scheme="scgatewayredirect"
/>
</intent-filter>
</activity>
<meta-data
android:name="flutterEmbedding"
android:value="2" />