我尝试以下步骤:
通过处理 AndroidManifest.xml 并使用绝对类名修改 package="..." 、活动等来创建 AndroidManifest_dev.xml。
写了一个ant xml文件build.xml:
<project basedir="." default="copy" name="aa">
<target name="copy">
<copy file="./AndroidManifest.xml" overwrite="true" tofile="./AndroidManifest_pro.xml"></copy>
<copy file="./AndroidManifest_dev.xml" overwrite="true" tofile="./AndroidManifest.xml"></copy>
</target>
</project>
在“Java Builder”和“Android Package Builder”之间添加了一个构建器
Eclipse->project->Properties->Builder->New...->Ant Builder->Buildfile , Browse Workspace...->your project->build.xml->Apply->OK 选择 New_Builder(1) 点击向上
然后运行应用程序。有效。
希望这可以帮助你。