我在一个项目中工作,这个项目最初是在eclipse中开始的。然后我在android工作室中迁移。
我在Mac电脑里工作,一切都很好。
但是,当我试图在我的PC上下载我的Git Rep时,我得到了一条消息:
Configuration with name 'default' not found
这是我的项目组织:
SP-Mobile
progressWheel ( Lib as a project )
sPMobile ( Main Project )
build.gradle (1)
build.gradle (top)
settings.gradle (top)
build.gradle(一)
apply plugin: 'com.android.application'
android {
compileSdkVersion 'Google Inc.:Google APIs:21'
buildToolsVersion "21.1.2"
lintOptions {
abortOnError false
}
defaultConfig {
applicationId "com.spmkt.mobile"
minSdkVersion 16
targetSdkVersion 22
}
buildTypes {
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
packagingOptions {
exclude 'META-INF/DEPENDENCIES.txt'
exclude 'META-INF/LICENSE.txt'
exclude 'META-INF/NOTICE.txt'
exclude 'META-INF/NOTICE'
exclude 'META-INF/LICENSE'
exclude 'META-INF/DEPENDENCIES'
exclude 'META-INF/notice.txt'
exclude 'META-INF/license.txt'
exclude 'META-INF/dependencies.txt'
exclude 'META-INF/LGPL2.1'
}
}
dependencies {
compile project(':progressWheel')
compile 'com.google.code.gson:gson:2.3'
compile 'com.google.android.gms:play-services:+'
compile 'com.android.support:appcompat-v7:22.2.0'
compile files('libs/crashlytics.jar')
compile files('libs/httpcore-4.3.2.jar')
compile files('libs/httpmime-4.3.3.jar')
}
build.gradle(上)
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.2.3'
}
}
allprojects {
repositories {
jcenter()
}
}
最后是settings.gradle
include ':progressWheel'
include ':sPMobile'
我做了一些测试,当我删除对progresswheel的依赖时,我就没有问题了(代码不再编译,但是同步成功了)
我想我的问题来自这句话:
compile project(':progressWheel')
但我不明白为什么在一台电脑上一切正常。而在另一场比赛中它失败了!
编辑:
似乎progresswheel是像模块一样添加的,但是spmobile没有。
ProgressWheel内部有一个.iml,但SPMobile没有。
编辑2:
似乎我的sp-mobile.iml是红色的,我不知道它是什么意思,但是我的iml的lib不是红色的,所以我可以理解。iml mac和pc之间的区别……
这是我的.iml项目
<?xml version="1.0" encoding="UTF-8"?>
<module external.linked.project.id="SP-Mobile"
external.linked.project.path="$MODULE_DIR$"
external.root.project.path="$MODULE_DIR$" external.system.id="GRADLE"
external.system.module.group="" external.system.module.version="unspecified"
type="JAVA_MODULE" version="4">
任何帮助都将不胜感激!
最佳答案
该错误表示一个或多个库路径不正确,因此请确保库存在于默认路径中,或者可以删除它们并从gui选项中重新插入,右键单击project:Open Module settings >> select app module >> dependencies >> Add from "+" icon and select module dependency
。