【发布时间】:2016-05-03 23:19:06
【问题描述】:
现在我正在尝试将 Fabric 与 Crashlytics (https://docs.fabric.io/android/fabric/integration.html) 集成到现有的 android 应用程序中。
按照 Fabric 提供的集成说明,我将 apply plugin: 'com.android.application' 添加到“build.grade (Project.NumenuApp)”文件的根目录中。我单击以同步 Gradle,但它失败了,我收到此错误 Error:Cause: buildToolsVersion is not specified. Android studio 声明我的插件应该在模块而不是项目级别声明。
我已经在“build.grade (Module:app)”文件中设置了 buildTools。我的问题是为什么会发生这种情况,我该怎么做才能补救?我在下面发布了我的代码。提前致谢。 - 阿德里安
build.grade(项目:NumenuApp)
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
maven { url 'https://maven.fabric.io/public' }
}
dependencies {
classpath 'com.android.tools.build:gradle:1.5.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
classpath 'io.fabric.tools:gradle:1.+'
}
}
apply plugin: 'com.android.application'
apply plugin: 'io.fabric'
allprojects {
repositories {
jcenter()
maven { url 'https://maven.fabric.io/public' }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
build.grade (Module:app)
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.2"
defaultConfig {
applicationId "com.numenu.numenuapp"
minSdkVersion 21
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
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.1'
compile 'com.android.support:design:23.1.1'
compile 'com.android.support:support-v4:23.1.1'
compile 'com.android.support:recyclerview-v7:23.1.1'
}
【问题讨论】:
-
classpath 'com.android.tools.build:gradle:2.0.0-alpha2'呢??
标签: android gradle configuration twitter-fabric build-tools