gpt4 book ai didi

android - Appcelerator/Titanium Android 主题 - 无法打包应用程序

转载 作者:行者123 更新时间:2023-11-29 17:49:42 25 4
gpt4 key购买 nike

我尝试通过 Appcelerator 中的链接更改 Android 的主题:http://docs.appcelerator.com/titanium/latest/#!/guide/Android_Themes

它给我以下错误:

[信息]:正在生成项目文件夹\build\android\res\values\theme.xml 的路径

[信息]:编写未合并的自定义 AndroidManifest.xml

[INFO]:打包应用:

[错误]:无法打包应用程序:

[错误] 应用程序安装程序进程异常终止。进程退出值为 1

请标记,虽然我将主题名称设置为 apptheme,但它仍在生成 theme.xml。

下面是一些额外的细节:

应用类型:移动安卓

Titanium SDK:3.2.3.Beta

平台&版本:Android minSdkVersion="13"targetSdkVersion="14"

钛工作室:3.2.1.201402041146

设备:三星 SIII

请让我知道我哪里做错了,并给予相应的指导。

最佳答案

那些写文档的人一定不会测试他们写的东西!

这个xml来自http://docs.appcelerator.com/titanium/3.0/#!/guide/Android_Themes

<!-- Works for Titanium SDK 3.2.x and earlier when built against Android 4.0x/API Level 14 -->
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- Available for Android 4.0.x/API Level 14 and later -->
<style name="LightDarkBar" parent="@android:style/Theme.Holo.Light.DarkActionBar"/>
<!-- Available for Android 3.0.x/API Level 11 and later -->
<style name="Light" parent="@android:style/Theme.Holo.Light"/>
<style name="Dark" parent="@android:style/Theme.Holo"/>
<!-- Available for all Android versions -->
<style name="OldLight" parent="@android:style/Theme.Light"/>
<style name="OldDark" parent="@android:style/Theme.Black"/>
</resources>

在 xml 之上使用 aapt ver 19 给了我这个:

builtin_themes.xml:2: error: Error parsing XML: XML or text declaration not at start of entity

所以,解决办法是把上面的xml改成

<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- Available for Android 4.0.x/API Level 14 and later -->
<style name="LightDarkBar" parent="@android:style/Theme.Holo.Light.DarkActionBar"/>
<!-- Available for Android 3.0.x/API Level 11 and later -->
<style name="Light" parent="@android:style/Theme.Holo.Light"/>
<style name="Dark" parent="@android:style/Theme.Holo"/>
<!-- Available for all Android versions -->
<style name="OldLight" parent="@android:style/Theme.Light"/>
<style name="OldDark" parent="@android:style/Theme.Black"/>
</resources>

请注意,我之前删除了任何预尾随的 xml 标记

<?xml version="1.0" encoding="utf-8"?>

关于android - Appcelerator/Titanium Android 主题 - 无法打包应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23842173/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com