Android 프로젝트에 JAR이 있으며 최종 APK에 추가되기를 원합니다. 좋아, 여기 간다.
<dependency>
<groupId>com.loopj.android.http</groupId>
<artifactId>android-async-http</artifactId>
<version>1.3.2</version>
<type>jar</type>
<scope>system</scope>
<systemPath>${project.basedir}/libs/android-async-http-1.3.2.jar</systemPath>
</dependency>
하지만 실행 mvn package
중에는 경고가 표시됩니다.
[WARNING] Some problems were encountered while building the effective model for **apk:1.0
[WARNING] 'dependencies.dependency.systemPath' for com.loopj.android.http:android-async-http:jar should not point at files within the project directory, ${project.basedir}/libs/android-async-http-1.3.2.jar will be unresolvable by dependent projects @ line 36, column 25
그리고 최종 APK에는 JAR이 없습니다.
어떻게 수정합니까?