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><dataandroid:scheme="anton" /><actionandroid:name="android.intent.action.VIEW" /><categoryandroid:name="android.intent.category.DEFAULT" /><categoryandroid: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?"