Android Eclipse 插件 R 代

发布于 2024-11-02 12:29:21 字数 305 浏览 3 评论 0原文

有什么方法可以设置“默认”R 包生成吗?默认情况下,它是在 AndroidManifest.xml 的包属性上编译的。 有没有办法告诉 Eclipse 插件使用 -J package.name 选项和 aapt 命令? 我想用 ant 来做到这一点,但我遇到了库依赖性问题,就像这里提到的那样< /a>

问候

Is there any way to set "default" R package generation? By default it is compiled on AndroidManifest.xml's package property.
Is there any way to tell Eclipse plugin to use -J package.name option with aapt command?
I want to do this with ant but I have problems with library dependances like it is mentioned here

Regards

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

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

发布评论

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

评论(1

全部不再 2024-11-09 12:29:21

你好
如果您可以检查清单,则有一个包属性。这是默认的 R 包生成。您可以将其更改为您需要的任何包。然后,如果您清理项目,它将自动使用您的包名称更新 R 包

 <?xml version="1.0" encoding="utf-8"?>
 <manifest xmlns:android="http://schemas.android.com/apk/res/android"

  package="com.nds.activities"

  android:versionCode="1"

  android:versionName="1.0">......

Imp 注意:一旦您执行此操作,就会使用正确的包路径更新您的活动。

但你为什么要这样做呢?

Hi
if u can check in the manifest there is a package attribute . that is the default R package generation. you can change it to whatever the package You need . and then if u clean your project it will automatically update the R package with your package name

 <?xml version="1.0" encoding="utf-8"?>
 <manifest xmlns:android="http://schemas.android.com/apk/res/android"

  package="com.nds.activities"

  android:versionCode="1"

  android:versionName="1.0">......

Imp NOTE: once you do this update your activities with the correct package Path.

But why you want to do this?

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