Cordova内容提供商插件不工作?

时间:2018-02-17 08:30:38

标签: android cordova mobile-application hybrid

Cordova内容提供商无法正常工作

我正在使用此插件,但它不起作用。在执行此代码时,我的应用程序显示" XXXX,不幸停止" 并退出。任何解决此问题的建议。

https://github.com/phearme/cordova-ContentProviderPlugin

window.plugins.contentproviderplugin.query({
        contentUri: "content://sms/inbox",
        projection: ["address", "date", "body"],
        selection: null,
        selectionArgs: null,
        sortOrder: "date DESC"
    }, function (data) {
        console.log(JSON.stringify(data));
    }, function (err) {
        console.log("error query");
    });

0 个答案:

没有答案