bear
bear

Reputation: 87

HTML5 invoke native app (ios and android)

I have 2 mobile apps. One develop using HTML5 and another using native code. Is it possible to using the mobile apps (HTML5) to invoke another mobile apps (native code)? Any one can provide an example or link ?

Upvotes: 0

Views: 1780

Answers (2)

bear
bear

Reputation: 87

able to solve the encountered problem. it need to change the plist file and android manifest.xml to make it work.

Upvotes: 0

Use a URI Scheme. For example, this opens the iBooks Application.

<a href="ibooks://">Link</a>

Here is a list for native apps

Upvotes: 2

Related Questions