Closed AlexSc closed 1 year ago
If the AndroidManifest.xml contains something like
<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="com.example"/> </intent-filter>
then TeakAndroidManifestAdditions will throw an exception from https://github.com/GoCarrot/teak-unity/blob/develop/Assets/Teak/Editor/TeakAndroidManifestAdditions.cs#L56, due to the missing android:host attribute. This prevents the manifest additions from doing any further processing, and Teak's deep linking intent filters will not be added to the build.
android:host
If the AndroidManifest.xml contains something like
then TeakAndroidManifestAdditions will throw an exception from https://github.com/GoCarrot/teak-unity/blob/develop/Assets/Teak/Editor/TeakAndroidManifestAdditions.cs#L56, due to the missing
android:host
attribute. This prevents the manifest additions from doing any further processing, and Teak's deep linking intent filters will not be added to the build.