After implements Firebase Dynamic Link in my project. When I run app from android studio its run but App not shown in App list.
If I try to install Debug APK , It show error : "Play Protect doesn't recognise this app's developer. Apps from unknown developers can sometimes be unsafe."
I added this code in manifest file for Firebase Dynamic Link :
<activity
android:name=".Auth.MainActivity"
android:screenOrientation="portrait"
android:label="MainActivity">
<intent-filter android:label="MainActivity">
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT"/>
<category android:name="android.intent.category.BROWSABLE"/>
<data
android:host="mydomain.com"
android:pathPrefix="/post"
android:scheme="https" />
<data
android:host="mydomain.com"
android:pathPrefix="/post"
android:scheme="http" />
</intent-filter>
</activity>
Please help me. Thanks in Advance.
Update: and also when I removed this code from manifest It will work good.