ionic 3:如何使用Web Intent插件打开另一个应用程序活动

时间:2018-09-27 16:15:38

标签: ionic-framework ionic2 ionic3 ionic-native

插件链接: 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);

0 个答案:

没有答案