(经过几个小时的尝试,我终于辞职了。)
好吧:
-1。我愿意
mvn -X archetype:generate -DarchetypeArtifactId=android-release
-DarchetypeGroupId=de.akquinet.android.archetypes -DarchetypeVersion=1.0.9
-DgroupId=org.me -DartifactId=myAndroidApp -Demulator=myEmu
-Dplatform=10
-2。第一个问题:您必须手动编辑顶级 pom.xml 以添加
< properties>
< platform.version> 2.3.3 < /platform.version>
< /属性>
-Dplatform=10
尽管它是和 2.3.3之间的直接关系
-3。(可能)第二个问题(仪器测试:myAndroidApp-it dir。)您必须编辑 AndroidManifest.xml 并检查android:targetPackage
值是否正确
-4。第三个问题(我无法解决)。仪器测试中 zipaligned-classifier 依赖项的问题(myAndroidApp-it dir.)
做的时候mvn install
-4.1
[WARNING] The POM for org.me:myAndroidApp:apk:${zipaligned-classifier}:1.0-SNAPSHOT
is missing, no dependency information available
[WARNING] The POM for org.me:myAndroidApp:jar:1.0-SNAPSHOT
is missing, no dependency information available
-4.2
[ERROR] Failed to execute goal on project myAndroidApp-it:
Could not resolve dependencies for
project org.me:myAndroidApp-it:apk:1.0-SNAPSHOT:
The following artifacts could not be resolved:
org.me:myAndroidApp:apk:${zipaligned-classifier}:1.0-SNAPSHOT, org.me:myAndroidApp:jar:1.0-SNAPSHOT:
Could not find artifact org.me:myAndroidApp:apk:${zipaligned-classifier}:1.0-
谢谢
更新:在这里报告了这个问题