2016-05-18 58 views
0

當我執行一個新的Android Studio項目時收到:二進制XML文件行#36:錯誤膨脹類android.support.v7.widget .Toolbar錯誤二進制XML文件行#36:錯誤膨脹類android.support.v7.widget.Toolbar

buildscript { 
repositories { 
    jcenter() 
} 
dependencies { 
    classpath 'com.android.tools.build:gradle:1.2.3' 

    // NOTE: Do not place your application dependencies here; they belong 
    // in the individual module build.gradle files 
} 

}

// 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' 
 

 
     // NOTE: Do not place your application dependencies here; they belong 
 
     // in the individual module build.gradle files 
 
    } 
 
} 
 

 
allprojects { 
 
    repositories { 
 
     jcenter() 
 
    } 
 
} 
 

 
task clean(type: Delete) { 
 
    delete rootProject.buildDir 
 
} 
 
apply plugin: 'com.android.application' 
 

 
android { 
 
    compileSdkVersion 23 
 
    buildToolsVersion "23.0.2" 
 

 
    defaultConfig { 
 
     applicationId "com.example.davidontalba.app2" 
 
     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.1.1' 
 
    compile 'com.android.support:design:23.1.1' 
 
    compile 'com.android.support:recyclerview-v7:23.1.1' 
 
    compile 'com.android.support:support-annotations:23.1.1' 
 
}

幫助!我不能做一個在Android Studio proyect,我不明白爲什麼...

+0

當前版本的支持lib是23.4.0,但你需要顯示導致問題的佈局文件,或者錯誤stacktrace –

回答

0

更改您的項目的build.gradle類路徑爲classpath 'com.android.tools.build:gradle:1.5.0'。使用gradle 1.5或更大優選com.android.tools.build:gradle:2.0.0。那是固定的礦。

+0

1.5完美,但更重要的是,告訴我:警告:需要Gradle版本2.10 。當前版本是2.4。如果使用gradle包裝器,請嘗試編輯\\ gradle \ wrapper \ gradle-wrapper.properties中的distributionUrl到gradle-2.10-all.zip –

+0

但是,這個url不存在於我的電腦 –

+0

中以使用大於1.5的gradle,轉到文件>項目結構>項目(或者你可以按ctrl + alt + shift + S然後選擇項目),然後將gradle版本更改爲2.10。還要去文件>設置>構建,執行,部署>構建工具> gradle然後選擇使用默認的gradle包裝 – NezSpencer

相關問題