Reputation: 913
What is the default User-Agent string from an android native application request?
Upvotes: 4
Views: 5082
Reputation: 2246
This string can be obtained from System properties like so:
String userAgent = System.getProperty( "http.agent" )
Upvotes: 5