2014-05-23 41 views

回答

1

我不熟悉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> 
相關問題