我尝试了不同的目标。 mvn package
会产生package R does not exist
,mvn android:generate-sources
会产生BUILD SUCCESS
,但不会创建R.java
。
我想将我的类打包到jar容器(而不是apk)中,因为我想将它用作其他项目中的库。
AndroidManifest.xml :(最小化设置,因为没有活动)
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example">
<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="8" />
</manifest>
default.properties:
android.library=true
target=android-8
的pom.xml:
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.example</groupId>
<artifactId>mylib</artifactId>
<version>0.0.1-SNAPSHOT</version>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>com.google.android</groupId>
<artifactId>android</artifactId>
<version>2.2.1</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.5.1</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
<plugin>
<groupId>com.jayway.maven.plugins.android.generation2</groupId>
<artifactId>android-maven-plugin</artifactId>
<version>3.4.0</version>
<extensions>true</extensions>
</plugin>
</plugins>
</build>
</project>
唯一的资源是./res/layout/example.xml
。
答案 0 :(得分:0)
android-maven-plugin无法从Android库项目生成功能齐全的jar(包含所有已编译的类文件,资源,清单等)。
android-maven-plugin给出的解决方案是apklib,它只是库项目的zip(具有相同的目录结构,包含原始java文件,资源,清单等)。我已经解释了更多关于apklib如何工作in this answer的内容,对于一些示例项目,请查看maven-android-plugin-samples/libraryprojects。
最远的android-maven-plugin可以去的是一个只包含已编译的类文件的jar,没有资源,这由默认的&lt; packaging&gt; apklib&lt; packaging&gt;所涵盖。构建生命周期并与.apklib文件一起生成。