1
url経由でアプリケーションを実行する際に問題が発生しました。 マニフェストインテントフィルタに追加しましたが、機能しません。 URLの後にアプリケーションを起動したいと思いますが、もちろんそれはデバイス上にあります。intent_filter:URLからUNITYにapk buildを実行
これは私のアンドロイドマニフェスト内のコードの活動です:
<activity android:label="@string/app_name" android:name="com.unity3d.player.UnityPlayerActivity" android:screenOrientation="fullSensor" android:launchMode="singleTask" android:configChanges="mcc|mnc|locale|touchscreen|keyboard|keyboardHidden|navigation|orientation|screenLayout|uiMode|screenSize|smallestScreenSize|fontScale|layoutDirection">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
<category android:name="android.intent.category.LEANBACK_LAUNCHER" />
</intent-filter>
<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="testurl" android:host="app.open"/>
</intent-filter>
<meta-data android:name="unityplayer.UnityActivity" android:value="true" />
</activity>
は私を助けることができる人はいますか?
url in browser = testurl://app.open –
Webサイト(この場合はapp.open)は、アプリケーションを公式に認可するファイルまたはDNSレコードを提供する必要があります。あなたはそれを提供しましたか?/あなたは、あなたがアプリケーションをリンクしようとしているウェブサイトを所有していますか? – Loren