unspecified on project app resolves to an APK archive which is not supported as a compilation dependency
안드로이드 스튜디오에서 모듈 분리를 할 때 다른 모듈의 Activity 라던지 안의 속성을 사용하기 위해 추가하는 경우 이런 오류가 날 때가 있다.
그러면
Gradle 에 가서 Build.Gradle에서
apply plugin: 'com.android.application' 을
apply plugin: 'android-library'로 바꿔준다.
그리고 defaultConfig의 applicationId 를 지워준다.
그러면
Warning:WARNING: Dependency org.apache.httpcomponents:httpclient:4.5.1 is ignored for debugAndroidTest as it may be conflicting with the internal version provided by Android.
In case of problem, please repackage it with jarjar to change the class packages
Warning:WARNING: Dependency org.apache.httpcomponents:httpclient:4.5.1 is ignored for release as it may be conflicting with the internal version provided by Android.
In case of problem, please repackage it with jarjar to change the class packages
이런 워닝으로 바뀌지만 일단 추가는 됨...
출처: http://koikebox.tistory.com/254
안드로이드 스튜디오에서 모듈 분리를 할 때 다른 모듈의 Activity 라던지 안의 속성을 사용하기 위해 추가하는 경우 이런 오류가 날 때가 있다.
그러면
Gradle 에 가서 Build.Gradle에서
apply plugin: 'com.android.application' 을
apply plugin: 'android-library'로 바꿔준다.
그리고 defaultConfig의 applicationId 를 지워준다.
그러면
Warning:WARNING: Dependency org.apache.httpcomponents:httpclient:4.5.1 is ignored for debugAndroidTest as it may be conflicting with the internal version provided by Android.
In case of problem, please repackage it with jarjar to change the class packages
Warning:WARNING: Dependency org.apache.httpcomponents:httpclient:4.5.1 is ignored for release as it may be conflicting with the internal version provided by Android.
In case of problem, please repackage it with jarjar to change the class packages
이런 워닝으로 바뀌지만 일단 추가는 됨...
출처: http://koikebox.tistory.com/254
댓글
댓글 쓰기