我想编译我的android studio项目,不知何故我遇到了Firebase crashalytics错误。所以我试图解决这个问题。
我现在所拥有的:
buildscript {
repositories {
...
maven { url = "https://maven.fabric.io/public" }
}
dependencies {
...
classpath "io.fabric.tools:gradle:1.25.1"
}
}
apply plugin: 'com.android.feature'
apply plugin: 'io.fabric'
到目前为止,从我在网上阅读的内容来看,到目前为止还算不错。但是我现在遇到了一个错误,ERROR: Cause: compileSdkVersion is not specified.
,所以我在这个错误中进行了搜索,但是我在网上找到的所有解决方案在compileSdkVersion
和targetSdkVersion
之间都存在差异。
compileSdkVersion 29
buildToolsVersion '29.0.2'
defaultConfig {
applicationId 'ch.workouttracker'
minSdkVersion 24
targetSdkVersion 29
versionCode 11
versionName '0.7.6'
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
resConfigs "de" // And any other languages you support
}
所以这里不是这种情况,我还应该尝试什么?