What is the default User-Agent string from a native Android application?

What is the default User-Agent string from an Android app’s native application?

Thank you, durai.

+4
source share
2 answers

This line can be obtained from the system properties as follows:

String userAgent = System.getProperty( "http.agent" )
+5
source

Depends on the device and version for Android. I am pretty sure this is not an exhaustive list, but look at the following link to get an idea: http://www.useragentstring.com/_uas_Android%20Webkit%20Browser_version_.php

+1
source

All Articles