-1

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.

argoth
  • 1,173
  • 8
  • 16

2 Answers2

0

You can do a native app, in java and c++ or an html app with cordova or similar. Content provider belong to native app world. If you need to work with them, i suggest you to build an native app (in java) and do user interface natively.

xcesco
  • 4,690
  • 4
  • 34
  • 65
0

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

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

argoth
  • 1,173
  • 8
  • 16