您遇到的问题似乎与活动标签的
android:name
属性有关。报错提示找不到MainActivity类,提示android:name attribute is incorrect or that the class itself is missing
.
尝试检查以下内容:
com.testApp
包中,因为这是您的清单文件中指定的包名称。android:name=".MainActivity"
.如果您仍然遇到问题,您可能需要考虑使用不同的方法来处理应用程序中的动态链接,例如第三方库或服务。 希望这有帮助!!!
好吧,解决办法就是这样拆分
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.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:host="my-firebase-test-link.com"
android:scheme="https"/>
</intent-filter>