今天我升級了我的工作室,以及每個最新的sdkBuild版本。 現在我的build.gradle(應用程序)的配置是這樣的:gradle版本不兼容(android studio 2.1 preview 1)<title editable>
android {
compileSdkVersion 23
buildToolsVersion "24.0.0 rc1"
defaultConfig {
applicationId "com.mydesign.rockstar.androidndemo"
minSdkVersion 15
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.2.0'
compile 'com.android.support:design:23.2.0'
}
現在它說com.android.support:appcompat-v7的新版本比23.2.0可用:24.0.0-alpha1以及設計:23.2.0
它不能正常工作,我的應用程序崩潰。工具欄錯誤,樣式錯誤,一切工作不正常。請幫我理解實際問題是什麼?
你確定'buildToolsVersion「24.0.0 rc1」'是有效的嗎? –
是..這是自動生成..我沒有編輯任何東西 –
好吧,我只是嘗試自己,它下載..什麼錯誤logcat說,當應用程序崩潰?此外,請嘗試使用'23.1.0'作爲支持依賴關係,基於[此問題](http://stackoverflow.com/questions/35739743/file-res-drawable-abc-ic-ab-back-material-xml -from-drawable-resource-id-0x7f020) –