2016-03-06 28 views
0

最近我在我的cordova應用程序中安裝了cordova-plugin-local-notifications插件。我收到以下錯誤運行ant debug install命令時:編譯「ant」版本時出錯

-compile: 
    [javac] Compiling 42 source files to /home/project-path/platforms/android/ant-build/classes 
    [javac] warning: [options] source value 1.5 is obsolete and will be removed in a future release 
    [javac] warning: [options] target value 1.5 is obsolete and will be removed in a future release 
    [javac] warning: [options] To suppress warnings about obsolete options, use -Xlint:-options. 
    [javac] /home/project-path/platforms/android/src/de/appplant/cordova/plugin/notification/Options.java:262: error: cannot find symbol 
    [javac]    return NotificationCompat.COLOR_DEFAULT; 
    [javac]         ^
    [javac] symbol: variable COLOR_DEFAULT 
    [javac] location: class NotificationCompat 
    [javac] /home/project-path/platforms/android/src/de/appplant/cordova/plugin/notification/Builder.java:130: error: cannot find symbol 
    [javac]     .setColor(options.getColor()) 
    [javac]    ^
    [javac] symbol: method setColor(int) 
    [javac] location: class Builder 
    [javac] Note: Some input files use or override a deprecated API. 
    [javac] Note: Recompile with -Xlint:deprecation for details. 
    [javac] Note: Some input files use unchecked or unsafe operations. 
    [javac] Note: Recompile with -Xlint:unchecked for details. 
    [javac] 2 errors 
    [javac] 3 warnings 

有什麼我失蹤?請指教。

回答

0

通過將android-support-v4.jar添加到應用程序解決了此問題。