我在一个最初在Eclipse中开始的项目中工作。然后我在Android Studio中迁移。
我在Mac上工作,一切都很好。 但是,当我尝试在我的电脑上下载我的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(1)
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">
任何帮助将不胜感激!
答案 0 :(得分:0)
错误表明您的一个或多个库路径不正确,因此请确保您的库存在于默认路径中,或者您可以删除它们并从GUI选项重新插入。右键单击项目:Open Module settings >> select app module >> dependencies >> Add from "+" icon and select module dependency
..