<uses-permission android:name="android.permission.INTERNET" /> <queries> <intent> <action android:name="android.intent.action.VIEW" /> <data android:scheme="https" /> </intent> </queries>
<activity android:name="com.appcharge.core.CheckoutActivity" android:configChanges="orientation|screenSize" android:screenOrientation="unspecified" android:exported="true" tools:ignore="DiscouragedApi"> <!-- Custom scheme --> <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="acnative-identifier"/> <data android:host="action"/> <data android:scheme="https"/> </intent-filter> </activity>
acnative-identifier
Was this page helpful?