0
我建立我的apk文件由maven。 但我想改變應用程序標籤,我不能這樣做:(如何通過屬性在maven中設置應用程序標籤?
我發現清單更新參數manifestApplicationLabel,但不知道如何使用它?
你能幫助我嗎?
我建立我的apk文件由maven。 但我想改變應用程序標籤,我不能這樣做:(如何通過屬性在maven中設置應用程序標籤?
我發現清單更新參數manifestApplicationLabel,但不知道如何使用它?
你能幫助我嗎?
我不熟悉Android開發,NUR插件但這似乎非常簡單
添加這部分你的pom.xml:。
<build>
<plugins>
<plugin>
<groupId>com.jayway.maven.plugins.android.generation2</groupId>
<artifactId>android-maven-plugin</artifactId>
<executions>
<execution>
<id>update-manifest</id>
<goals>
<goal>manifest-update</goal>
</goals>
<configuration>
<manifest>
<applicationLabel>YOUR_APP_LABEL</applicationLabel>
</manifest>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>