我提到了nativescript-appList Plugin。我收到此运行时错误无法读取未定义的属性getPackageManager
。
我在angular2-nativescript
中的构造函数中运行以下代码import * as AppList from "nativescript-applist";
// inside the constructor
console.log("First", "Test");
AppList.getInstalledApps(function(apps) {
console.log("Second", "Test");
}, {
withIcons: true
});
在命令提示符下,我无法看到此日志console.log(" Second"," Test");我只能看到这个日志console.log(" First"," Test");
答案 0 :(得分:2)
该插件似乎与Angular项目不兼容,但有一个简单的解决方案可以使它工作。为此,您需要直接修改插件的源代码。要么克隆存储库并应用下面的更改,然后npm pack
生成新修改的 tgz 文件,要么安装插件并直接修改node_modules/nativescript-applist/Apps.android.js
中的代码(这不是好处)方法,因为删除node_modules文件夹时将删除所有更改)
要使插件在Angular中工作,请执行以下操作
- 打开node_modules/nativescript-applist/Apps.android.js
- 在方法
e.g。前
var androidApp = app.android;
var androidAppCtx = androidApp.context;
function getInstalledListOfApps(callback, cfg) {
// more code follows here
后
function getInstalledListOfApps(callback, cfg) {
var androidApp = app.android;
var androidAppCtx = androidApp.context;
// more code follows here
你很高兴去!