Titanium:集成 admob 模块清单错误

发布于 2024-12-22 18:53:04 字数 444 浏览 0 评论 0原文

在尝试将 admob 集成到我当前的应用程序中时,在将模块解压到我的文件夹中后,我编辑了 tiapp.xml 并添加:

<modules>
    <module version="2.0" platform="android">ti.admob</module>
</modules>

在尝试运行应用程序后,我收到以下错误:

Error: String types not allowed (at 'configChanges',值为'keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize')。 [错误] 从清单生成 R.java 时出错 ?

关于如何解决这个问题有什么想法吗

while trying to integrate admob in my current app, after unzipping the module in my folder, I edited my tiapp.xml and added:

<modules>
    <module version="2.0" platform="android">ti.admob</module>
</modules>

after trying to run the app i got the following error:

Error: String types not allowed (at 'configChanges' with value 'keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize'). [ERROR] Error generating R.java from manifest

any thoughts about how to fix this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

冰葑 2024-12-29 18:53:04

试试这个
tiapp.xml 中的更改

<android xmlns:android="http://schemas.android.com/apk/res/android">
        <uses-permission android:name="android.permission.INTERNET"/>
        <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
            <tool-api-level>14</tool-api-level>
 </android>
<modules>
        <module platform="android" version="2.0.1">ti.admob</module>
    </modules>

try this
change in tiapp.xml

<android xmlns:android="http://schemas.android.com/apk/res/android">
        <uses-permission android:name="android.permission.INTERNET"/>
        <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
            <tool-api-level>14</tool-api-level>
 </android>
<modules>
        <module platform="android" version="2.0.1">ti.admob</module>
    </modules>
南城追梦 2024-12-29 18:53:04

好吧,我找到了答案。

Titanium 在他们的 Github 上写道,这是 2.0 版本,但实际上是 1.1
将 XML 更改为
<代码>

WTH 钛?!?!?!?!

well, I found the answer.

Titanium wrote in their Github that this is version 2.0 when actually it's 1.1
changing the XML to

WTH Titanium?!?!?!?!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文