gpt4 book ai didi

java - 使用 maven 和 IntelliJ 创建 apklibs

转载 作者:太空宇宙 更新时间:2023-11-03 11:16:44 25 4
gpt4 key购买 nike

我正在通过滑动菜单创建一个 apklib,因为我找不到任何 Maven 存储库。问题是当我从 intellij 尝试时,它导入库但没有将依赖项添加到滑动菜单库,我必须手动添加它。

<?xml version="1.0" encoding="UTF-8"?>

<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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>

<groupId>com.slidingmenu</groupId>
<artifactId>library</artifactId>
<version>1.2</version>
<type>apklib</type>

<dependencies>
<dependency>
<groupId>com.google.android</groupId>
<artifactId>android</artifactId>
<version>4.1.1.4</version>
</dependency>
<dependency>
<groupId>com.google.android.maps</groupId>
<artifactId>maps</artifactId>
</dependency>
<dependency>
<groupId>com.google.android</groupId>
<artifactId>support-v13</artifactId>
<version>r12</version>
</dependency>
<dependency>
<groupId>com.github.rtyley</groupId>
<artifactId>roboguice-sherlock</artifactId>
<version>1.5</version>
</dependency>
<dependency>
<groupId>org.roboguice</groupId>
<artifactId>roboguice</artifactId>
<version>2.0</version>
</dependency>
<dependency>
<groupId>com.actionbarsherlock</groupId>
<artifactId>actionbarsherlock</artifactId>
<version>4.2.0</version>
<type>apklib</type>
</dependency>
</dependencies>

<build>
<sourceDirectory>src</sourceDirectory>

<plugins>
<plugin>
<groupId>com.jayway.maven.plugins.android.generation2</groupId>
<artifactId>android-maven-plugin</artifactId>
<extensions>true</extensions>
<configuration>
<nativeLibrariesDirectory>ignored</nativeLibrariesDirectory>
</configuration>
</plugin>
</plugins>
</build>
</project>

我根据 maven 插件上的说明创建 zip,然后使用以下命令将其推送到 ~/.m2:

 mvn org.apache.maven.plugins:maven-install-plugin:2.4:install-file -DgroupId=com.slidingmenu -DartifactId=library -Dfile=sliding-menu.apklib -Dversion=1.2 -Dpackaging=apklib

最佳答案

您需要使用 mvn clean install 而不是 install:install-file 在您的本地存储库中安装 com.slidingmenu

mvn clean install 会将 maven 所需的所有元数据和依赖项放入您的本地存储库(即 ~/.m2/repository)。

在您的 apk 中,将 Artifact com.slidingmenu 指定为 apklib 类型的依赖项

希望能解决您的问题。

关于java - 使用 maven 和 IntelliJ 创建 apklibs,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15570420/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com