I have imported a module into my project. When i rebuilt the project , AS gave me an error saying Warning:Dependency Lib:unspecified on project app resolves to an APK archive which is not supported as a compilation dependency. I searched and changed apply plugin: 'com.android.application'
to apply plugin: 'com.android.library'
and also removed ApplicationId from defaultConfig. Yet i am getting this same error "Warning:Dependency Lib:unspecified on project app resolves to an APK archive which is not supported as a compilation dependency."
Can any one help me?
Here is my gradle code:
apply plugin: 'com.android.library'
android {
compileSdkVersion 23
buildToolsVersion "23.0.1"
defaultConfig {
minSdkVersion 12
targetSdkVersion 23
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.1.0'
compile 'com.android.support:design:23.1.0'
compile project(':DimenLib')
}
Use
apply plugin: 'com.android.application'
instead ofapply plugin: 'com.android.library'
Have a look here
http://developer.android.com/tools/building/plugin-for-gradle.html
It happens when you are trying to add a dependency which is an APK.
Using:
tells Gradle to build it as an application, generating an APK.
Using:
it will build as a library, generating an AAR.
In your case, it seems that you are changing the plugin in the wrong place.
It seems to be your main module.
Move the
apply plugin: 'com.android.library'
in yourDimenLib
.I had the same problem and that's what solved it:
importing the external project as explained here: https://www.youtube.com/watch?v=2D9lYuRECoI
In my project build.gradle file added compile project(':IMPORTED_PROJECT_NAME').
Only then changed in the imported project gradle file "apply plugin: com.android.application" to "apply plugin: com.android.library"and removed applicationId.