2016-12-09 3 views

Antwort

0

Löschen von SDK-Plattform-Tools und Build-Tools und die Neuinstallation von ihnen funktionierte für mich.

Haben Sie Ihre build.gradle auch aktualisiert?

Beispiel:

android { 
    compileSdkVersion 24 // this is important 
    buildToolsVersion "24" // this also 

    defaultConfig { 
     applicationId "org.bamboomy.yarne" 
     minSdkVersion 15 
     targetSdkVersion 24 // recommended 
     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:24.0.0' // and don't forget this 
    compile 'com.android.support:design:24.0.0' // and this 
} 
Verwandte Themen