我一直收到这个错误:
[ERROR] : Failed to package application:
[ERROR] :
[ERROR] : res/drawable/Icon.png: Invalid file name: must contain only [a-z0-9_.]
[ERROR] Application Installer abnormal process termination. Process exit value was 1
我正在尝试找到那个icon.png,以便我可以重命名它。在使用试验和错误重命名很多png后,我放弃尝试找到它。 注意:我使用的是钛3.2.3GA。我正在尝试在Android平板电脑上运行/安装应用程序(nexus 10)。该应用程序是跨平台的。
编辑:感谢@Dragon,我找到了我要找的文件。但在更改名称后,我收到了这个新错误:[ERROR] : Failed to package application:
[ERROR] :
[ERROR] : /Users/ebads/Desktop/workspace/MYPROJECT/build/android/AndroidManifest.xml:4: error: Error: No resource found that matches the given name (at 'icon' with value '@drawable/Icon').
[ERROR] Application Installer abnormal process termination. Process exit value was 1
我讨厌Titanium工作室。
编辑2:我在xml中进行了更改,然后运行并查看它是否有效。
答案 0 :(得分:1)
你可以在
找到它Titanium_studio_workspace/YOUR_APP/build/android/res/drawable
只需将图标名称从Icon.png
更改为icon.png
希望它有所帮助。
答案 1 :(得分:-3)
res/drawable/Icon.png: Invalid file name: must contain only [a-z0-9_.]
错误告诉所有人。你看
res/drawable/Icon.png
包含不允许的/字符。它不是单个文件名,因为它是包含foldernames的路径。你将拥有这个'文件名'你代码中的某个地方。仅更改为Icon.png
或Icon
。