我有 maven 目标更新清单在我的项目中工作,并根据我打包的配置文件更新我想要更改的属性;不幸的是,它改变了源代码管理中的清单。我希望它更改打包的清单,但不理会主版本。我没有在 target/ 下看到我可以指出的 AndroidManifest 版本。我正在使用 android-maven 插件版本 3.2
问问题
10426 次
2 回答
20
如果您使用manifestVersionCode或manifestVersionName之类的配置来更新清单,这就是它的设计和工作方式,它将更改写入原始 AndroidManifest.xml。
看来您真正需要的是过滤清单而不是更新清单。资源过滤是 android-maven-plugin 支持并经常使用的另一种使用场景。
示例 AndroidManifest.xml:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.mycompany.myapp"
android:versionCode="${app.version.code}"
android:versionName="${app.version.name}">
... ...
示例 pom.xml:
<!-- value to be substituted in manifest -->
<properties>
<app.version.code>1</app.version.code>
<app.version.name>1.0.0-SNAPSHOT</app.version.name>
</properties>
... ...
<build>
<resources>
<!-- filter manifest and put filtered file in target/filtered-manifest/ -->
<resource>
<directory>${project.basedir}</directory>
<filtering>true</filtering>
<targetPath>${project.build.directory}/filtered-manifest</targetPath>
<includes>
<include>AndroidManifest.xml</include>
</includes>
</resource>
</resources>
... ...
<plugins>
<plugin>
<groupId>com.jayway.maven.plugins.android.generation2</groupId>
<artifactId>android-maven-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<undeployBeforeDeploy>true</undeployBeforeDeploy>
<!-- tell build process to use filtered manifest -->
<androidManifestFile>${project.build.directory}/filtered-manifest/AndroidManifest.xml</androidManifestFile>
</configuration>
</plugin>
... ...
现在 android-maven-plugin 将使用过滤后的 AndroidManifest.xml 并保持原来的 AndroidManifest.xml 不变。
希望这可以帮助。
更新:
你可能也需要这个:
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>2.5</version>
<executions>
<execution>
<phase>initialize</phase>
<goals>
<goal>resources</goal>
</goals>
</execution>
</executions>
</plugin>
于 2012-05-29T23:23:58.597 回答
10
我建议使用maven-android-plugin的manifest-update目标来完成此操作:
<plugins>
<plugin>
<groupId>com.jayway.maven.plugins.android.generation2</groupId>
<artifactId>android-maven-plugin</artifactId>
<version>3.3.2</version>
<!-- This is for maven update properties in AndroidManifest file. Working outside eclipse. -->
<executions>
<execution>
<id>update-manifest</id>
<phase>process-resources</phase>
<goals>
<goal>manifest-update</goal>
</goals>
<configuration>
<manifest>
<versionCode>${project.codeVersion}</versionCode>
<versionName>${project.version}</versionName>
</manifest>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
您还需要定义project.codeVersion
:
<properties>
<project.codeVersion>1</project.codeVersion>
</properties>
maven 会更新你的 AndroidManifest.xml:
[INFO] --- android-maven-plugin:3.3.2:manifest-update (update-manifest) @ myapp --- [INFO] Attempting to update manifest d:\dsv\project\MyApp\AndroidManifest.xml [INFO] Setting android:versionName to 0.0.4 [INFO] Setting android:versionCode to 1 [INFO] Made changes to manifest file, updating d:\...\MyApp\AndroidManifest.xml
更多关于android:manifest-update目标的信息在这里,你可以在那里找到一些有用的参数。
重要提示:此解决方案仅适用于命令行,m2e-android 尚不支持插件执行(请参阅此问题)。
于 2012-09-11T09:13:09.587 回答