插件链接: web intent plugin link
我正尝试通过我的ionic 3应用程序打开另一个android应用程序活动,但无法正常工作。请帮助...
如何使用以下代码。...
import { WebIntent } from '@ionic-native/web-intent';
constructor(private webIntent: WebIntent) { }
...
const options = {
action: this.webIntent.ACTION_VIEW,
url: 'path/to/file', <== **what i need to add here to open another app**
type: 'application/vnd.android.package-archive'
};
this.webIntent.startActivity(options).then(onSuccess, onError);