0

Let us say that I am writing an Android application that needs to get the browsing history of Google Chrome. Does the Android API allow for this? Which versions? What code could do this?

Melab
  • 2,310
  • 5
  • 27
  • 43

1 Answers1

0

Check the answer in this SO post:

Android read browser history

Basically, you need the Cursor interface for this purpose, and manifest permission:

<uses-permission android:name="com.android.browser.permission.READ_HISTORY_BOOKMARKS" />
Community
  • 1
  • 1
Onur Çevik
  • 1,502
  • 12
  • 20