经过大量的挖我找到了解决办法,我怎么可以重命名我的应用程序包。 它是伟大的工作。
有两种不同的方式。 通过ARG PARAMS的一个:
<!-- Replaces the target in tools\ant\build.xml -->
<target name="-package-resources" depends="-crunch">
<!-- this exec replicates the output of the aapt task in build.xml
-package-resources with the addition of a rename-manifest-package option. -->
<exec executable="${aapt}" failonerror="true">
<arg value="package" />
<arg value="-f" />
<arg value="--auto-add-overlay" />
<arg value="-M" />
<arg path="${basedir}/AndroidManifest.xml" />
<arg value="-S" />
<arg path="${resource.absolute.dir}" />
<arg value="-S" />
<arg path="${basedir}/${android.library.reference.1}/${resource.dir}" />
<arg value="-A" />
<arg path="${asset.absolute.dir}" />
<arg value="-I" />
<arg path="${android.jar}" />
<arg value="-F" />
<arg path="${out.absolute.dir}/${resource.package.file.name}" />
<arg value="--rename-manifest-package" />
<arg value="${package.manifest.name}" />
</exec>
</target>
或直接的(像原来的build.xml一样):
<target name="-package-resources" depends="-crunch">
<!-- only package resources if *not* a library project -->
<do-only-if-not-library elseText="Library project: do not package resources..." >
<aapt executable="${aapt}"
command="package"
versioncode="${package.manifest.version.code}"
versionname="${package.manifest.version.name}"
debug="${build.is.packaging.debug}"
manifest="${out.manifest.abs.file}"
assets="${asset.absolute.dir}"
androidjar="${project.target.android.jar}"
apkfolder="${out.absolute.dir}"
nocrunch="${build.packaging.nocrunch}"
resourcefilename="${resource.package.file.name}"
resourcefilter="${aapt.resource.filter}"
libraryResFolderPathRefid="project.library.res.folder.path"
libraryPackagesRefid="project.library.packages"
previousBuildType="${build.last.target}"
buildType="${build.target}"
ignoreAssets="${aapt.ignore.assets}"
manifestpackage="${package.manifest.name}">
<res path="${out.res.absolute.dir}" />
<res path="${resource.absolute.dir}" />
<!-- <nocompress /> forces no compression on any files in assets or res/raw -->
<!-- <nocompress extension="xml" /> forces no compression on specific file extensions in assets and res/raw -->
</aapt>
</do-only-if-not-library>
</target>
现在的问题是,我使用无法找到它的ressources库(这是一个lib,我不得不包括在我的应用程序的图形)。 所以ressources是我的应用程序资源目录。
如果我尝试从我的包加载特定ressources(动态)同样的事情也发生了。 我用ctx.getApplicationPackage()来获得包名。 只要我用这种方法,是不工作的重命名的版本,但只要我尝试了硬编码与它的工作原理主要应用的应用包名称。
所以我想不更新引用。 比方说,我有应用程序1包com.package.appfinal和应用2 com.package.apptest。 该ressources在com.package.appfinal仍然发现。
我希望有人有一个想法,我怎么能延长重命名过程,因此ressources也被更新? (或它们的引用)
提前致谢。
干杯,迈克 -