How Do I Programmatically Access Bookmarks In Opera And Mozilla Browsers For Android?
From what I read, I need the bookmarks URI from each browser: private final Uri CHROME_URI = Uri.parse('content://com.android.chrome.browser/bookmarks'); private final Uri MOZILLA_
Solution 1:
Yes you are right, it will give SecurityException as in manifest of Firefox this permission i.e. org.mozilla.firefox.permissions.BROWSER_PROVIDER is declared with signature protection level, and system will not grant this permission to your application since your application's signature is different from that Firefox signature.
Post a Comment for "How Do I Programmatically Access Bookmarks In Opera And Mozilla Browsers For Android?"