我想实现一个案例,如果我点击 android 中的深层链接,它应该将我定向到应用程序而不是浏览器。在 12 以下的 Android 版本中一切正常,出现一个对话框以在应用程序或浏览器中打开链接。 但在 Android 12 及更高版本中,每次在浏览器中打开链接时。 有什么方法可以在不进行域验证的情况下使其工作,因为单击链接时在浏览器中打开的域不属于我。
这是我的清单文件代码。我正在尝试通过深度链接打开 MainActivity2。
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
<application
android:name=".App"
android:allowBackup="true"
android:dataExtractionRules="@xml/data_extraction_rules"
android:fullBackupContent="@xml/backup_rules"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/Theme.NotificationApp"
tools:targetApi="31">
<activity
android:name=".MainActivity"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
<!-- for creating the app shortcut-->
<meta-data android:name="android.app.shortcuts" android:resource="@xml/shortcuts"/>
</activity>
<activity android:name=".MainActivity2"
android:exported="true"
android:launchMode="standard">
<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="papayacoders.in"
android:scheme="http" />
</intent-filter>
<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="papayacoders.in"
android:scheme="https" />
</intent-filter>
</activity>
</application>
</manifest>