Reputation: 1
Can we get chromium browsing history in android app and display it into android view ? Something like List<HistoryItem>
, is it possible ? Any help will be appreciated.
Update: i try to deep into chromium source code and change some functionality (redesign history page) using android activity instead of html/js.
Update 2: I am using the code from this thread to get history: can we get chrome browsing history/bookmarks in our android app
But this code returns only the local history. What i need to do to get a local and synced history from other devices ?
Upvotes: 0
Views: 219
Reputation: 1895
You can't access the browser information from the app.
From the android documentation
For obvious security reasons, your application has its own cache, cookie store etc.—it does not share the Browser application's data.
Upvotes: 1