how can cordova open app from http or https url?

后端 未结 4 1441
刺人心
刺人心 2021-02-04 08:03

I found many answers for a custom URL-Scheme like this (mycoolapp://somepath).

This plugin for example adds a custom URL-Sheme.*

But I don\'t want a

4条回答
  •  猫巷女王i
    2021-02-04 08:40

    You should add an intent-filter to your activity in the android manifest. Something like this:

    
       
    
       
       
    
       
       
       
    
    

    more on what data you can add here: http://developer.android.com/guide/topics/manifest/data-element.html

    and even more here on stackoverflow...

提交回复
热议问题