如何解决以下错误
[ERROR] C:\Users\XXX\build\android\AndroidManifest.xml:60: error: Error: No resource found that matches the given name (at 'theme' with value '@style/Theme.Titanium').
[ERROR] Error generating R.java from manifest
当我将自己的模块添加到钛时会生成此错误。在钛模块中,我没有androifmanifest.xml,只有timodule.xml和tiapp.xml。但两者都没有主题。
我添加了
<application android:label="@string/app_name" android:icon="@drawable/ic_launcher" android:theme="@style/Theme.Titanium">
但仍然出现错误
感谢您的帮助
答案 0 :(得分:0)
<application android:label="@string/app_name" android:icon="@drawable/ic_launcher"android:theme="@style/Theme.Titanium"/>
尝试放置它工作的线我觉得你还没有关闭应用程序末尾的标签/>
..