Search code examples
javascriptandroidandroid-contentprovider

It's possible to call an android app content provider from a web page using javascript?


I'm searching about how to expose some functionalities from my android app to a webpage using content provider. My app stores digital certificates in AndroidKeyStore, i'd like to list this certificates on a webpage using js.


Solution

  • The best way to do it is using Android WebView and exposing some functions to javascript.

    https://stackoverflow.com/a/10389678/2004555