2014-05-23 4 views

답변

1

나는 안드로이드 개발에 익숙하지 오전 플러그인을 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>