Is There Any Function At Manifest Or Somewhere When I Install My App, The App It Will Appeare At Device Like Browser App?
I am making my apk like browser but the problem it is when I install at emulator or at device the app it is not at the DefaultApps -> BrowserApp it is only at the apps. Or if a
Solution 1:
use this code in manifest
<intent-filter>
<data android:scheme="anton" />
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" /> <--Not positive if this one is needed
...
</intent-filter>
for more reference:- Make a link in the Android browser start up my app?
Post a Comment for "Is There Any Function At Manifest Or Somewhere When I Install My App, The App It Will Appeare At Device Like Browser App?"