2015-10-07 42 views
2

对于Kivy和Android应用程序开发,我相当新颖。我与Kivy一起制作了一个基本的Hello World应用,并试图用Buildozer制作一个APK。这些是我看到的错误:使用Buildozer构建时出错

-compile: 
[javac] Compiling 11 source files to /home/ratul/Devel/Python/Kivy/test/.buildozer/android/platform/python-for-android/dist/ratulsapp/bin/classes 
[javac] /home/ratul/Devel/Python/Kivy/test/.buildozer/android/platform/python-for-android/dist/ratulsapp/src/org/renpy/android/PythonService.java:64: error: cannot find symbol 
[javac]   notification.setLatestEventInfo(context, serviceTitle, serviceDescription, pIntent); 
[javac]     ^
[javac] symbol: method setLatestEventInfo(Context,String,String,PendingIntent) 
[javac] location: variable notification of type Notification 
[javac] Note: Some input files use or override a deprecated API. 
[javac] Note: Recompile with -Xlint:deprecation for details. 
[javac] 1 error 

BUILD FAILED 
/home/ratul/Devel/Android/Sdk/tools/ant/build.xml:716: The following error occurred while executing this line: 
/home/ratul/Devel/Android/Sdk/tools/ant/build.xml:730: Compile failed; see the compiler error output for details. 

我不明白问题来自哪里。我试图从main.py中指定版本,但这也没有帮助。任何指针?提前致谢。

回答