durai
durai

Reputation: 913

What is the default User-Agent string from an android native app?

What is the default User-Agent string from an android native application request?

Upvotes: 4

Views: 5082

Answers (1)

Pull
Pull

Reputation: 2246

This string can be obtained from System properties like so:

String userAgent = System.getProperty( "http.agent" )

Upvotes: 5

Related Questions