0

LiveTile プラグイン (ここにあります) をクリーンな Cordova 3.3 プロジェクトに追加しようとしました。しかし、私はそれを機能させることができないようです。リンクからの指示で動作しますが、Cordova 2.0.0 を使用しています。新しいタイルを追加しようとすると、次の出力が表示されます。

        An exception of type 'System.InvalidCastException' occurred in System.ServiceModel.Web.ni.dll and wasn't handled before a managed/native boundary
        A first chance exception of type 'System.InvalidCastException' occurred in System.ServiceModel.Web.ni.dll
        An exception of type 'System.InvalidCastException' occurred in System.ServiceModel.Web.ni.dll and wasn't handled before a managed/native boundary
        Unable to cast object of type 'System.Collections.Generic.List`1[System.Object]' to type 'System.Collections.Generic.Dictionary`2[System.String,System.Object]'.
        Failed to deserialize Cordova.Extension.Commands.LiveTiles+LiveTilesOptions with JSON value :: ["System.Collections.Generic.Dictionary`2[System.String,System.Object]","LiveTiles963855178"]
        A first chance exception of type 'System.NullReferenceException' occurred in CordovaWP8_2.9.14.DLL
        An exception of type 'System.NullReferenceException' occurred in CordovaWP8_2.9.14.DLL but was not handled in user code
        A first chance exception of type 'System.Reflection.TargetInvocationException' occurred in mscorlib.ni.dll
        An exception of type 'System.Reflection.TargetInvocationException' occurred in mscorlib.ni.dll and wasn't handled before a managed/native boundary
        ERROR: Exception in ProcessCommand :: Exception has been thrown by the target of an invocation.
        ERROR: failed to InvokeMethodNamed :: createSecondaryTile on Object :: LiveTiles
        The thread 0xbac has exited with code 259 (0x103).
        Error occurred: Invalid action

この新しいバージョンの Cordova では、プラグインが別の方法で追加されていますか?それとも、LiveTile プラグインとの互換性がなくなっただけですか?

4

2 に答える 2

0

これを行う必要があります:

cordova plugin add path/to/your/plugin

それはすべてのものを行います。

于 2014-05-15T14:17:03.267 に答える