If I build a website that is designed and developed for android or just the droid, is it possible to just make an app that will directly point to that url? or is that not considered an app because it will open in the droid browser etc...
Open your mobile phone network setting and set the http proxy and then you can grab request from you android app. Charles download url https://www.charlesproxy.com/。 Open WIFI wireless hotspot on your computer then connect to the hotspot。 Now you can use wireshark or httpScoop to grab request from you android app.
An app: URL is a [ URL ] that can be used by a packaged application to address resources within its container (e.g., a . zip file).
In Android, a deep link is a link that takes you directly to a specific destination within an app. The Navigation component lets you create two different types of deep links: explicit and implicit.
You can't create a link in Android - you'd have to make an app that automatically opens the browser up and goes to the specified URL when opened.
Something like this in the onCreate
:
Intent browserIntent = new Intent("android.intent.action.VIEW", Uri.parse("http://www.google.com"));
startActivity(browserIntent);
It's considered an app because the result will be an independent APK (which you can distribute in the Market). You don't have to launch the droid browser; rather, you use WebView
to embed the site on your app.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With