Android Studio不允许我构建它。它说未找到com.mixpanel.blahblahblah。
com.mixpanel.blahblahblah来自mavenCentral()
我知道问题是因为它不能识别mavenCentral(),因为它只能识别另一个仓库。如何同时包含这两个项目并使该项目正常运行?
apply plugin: 'com.android.application'
apply plugin: 'crashlytics'
buildscript {
repositories {
maven { url 'http://download.crashlytics.com/maven' }
}
dependencies {
classpath 'com.crashlytics.tools.gradle:crashlytics-gradle:1.+'
}
}
repositories {
maven { url 'http://download.crashlytics.com/maven' }
mavenCentral()
}
android {
compileSdkVersion 21
buildToolsVersion "21.1.2"
defaultConfig {
applicationId "co.dilmile.dilmile"
minSdkVersion 9
targetSdkVersion 21
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.android.support:appcompat-v7:21.0.3'
compile 'com.parse.bolts:bolts-android:1.1.2'
compile 'com.loopj.android:android-async-http:1.4.6'
compile 'com.google.code.gson:gson:2.3.1'
compile 'com.facebook.android:facebook-android-sdk:3.20.0'
compile 'com.android.support:support-v4:21.0.3'
compile 'org.roboguice:roboguice:3.+'
compile 'com.google.code.findbugs:jsr305:1.3.9'
provided 'org.roboguice:roboblender:3.+'
compile 'com.crashlytics.android:crashlytics:1.+'
compile 'com.mixpanel.android:mixpanel-android:4.5.3'
}
最佳答案
我认为您应该将Maven Central添加到您的buildscript存储库中。我有这样的作品,没有问题:
buildscript {
repositories {
mavenCentral()
maven { url 'http://download.crashlytics.com/maven' }
}
...
}
allprojects {
repositories {
mavenCentral()
maven { url 'http://download.crashlytics.com/maven' }
}
}
编辑:我相信你的gradle文件应该是
apply plugin: 'com.android.application'
apply plugin: 'crashlytics'
buildscript {
repositories {
maven { url 'http://download.crashlytics.com/maven' }
mavenCentral()
}
dependencies {
classpath 'com.crashlytics.tools.gradle:crashlytics-gradle:1.+'
}
}
repositories {
maven { url 'http://download.crashlytics.com/maven' }
mavenCentral()
}
android {
compileSdkVersion 21
buildToolsVersion "21.1.2"
defaultConfig {
applicationId "co.dilmile.dilmile"
minSdkVersion 9
targetSdkVersion 21
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.android.support:appcompat-v7:21.0.3'
compile 'com.parse.bolts:bolts-android:1.1.2'
compile 'com.loopj.android:android-async-http:1.4.6'
compile 'com.google.code.gson:gson:2.3.1'
compile 'com.facebook.android:facebook-android-sdk:3.20.0'
compile 'com.android.support:support-v4:21.0.3'
compile 'org.roboguice:roboguice:3.+'
compile 'com.google.code.findbugs:jsr305:1.3.9'
provided 'org.roboguice:roboblender:3.+'
compile 'com.crashlytics.android:crashlytics:1.+'
compile 'com.mixpanel.android:mixpanel-android:4.5.3'
}