\build\intermediates\res\resources-anzhi-debug-stripped.ap_’ specified for property ‘resourceFile’ does not exist

Having same issue ! So instant run is not compatible with shrinkResources 1) if use Android Studio 2.2 shrinkResources false buildTypes { release { signingConfig signingConfigs.release minifyEnabled false shrinkResources false zipAlignEnabled true debuggable false proguardFiles getDefaultProguardFile(‘proguard-android.txt’), ‘proguard-rules.pro’ } } 2) if use Android Studio 2.0 open setting now run your project

Warning: Do not place Android context classes in static fields; this is a memory leak (and also breaks Instant Run)

Just make sure you pass context.getApplicationContext() or call getApplicationContext() on any context that is passed in via methods/constructor to your singleton if you decide to store it in any member field. idiot proof example (even if someone would pass in an activity it will grab the app context and use that to instantiate the singleton): … Read more

Android Studio Error: Error:CreateProcess error=216, This version of %1 is not compatible with the version of Windows you’re running

I had the same issue, but I have resolved it the next: 1) Install jdk1.8… 2) In AndroidStudio File->Project Structure->SDK Location, select your directory where the JDK is located, by default Studio uses embedded JDK but for some reason it produces error=216. 3) Click Ok.