I downloaded yesterday Android Studio 2.1.3 (before I worked with 1.5) and now I have this exception:
java.lang.NoSuchMethodError: No static method setOnAppl
I had same issue. I tried to run my code on another system with latest downloaded version of Android SDK (API 24). compileSdkVersion of my code was 23. So, what I did is I opened app.iml file (located in app module) and found version of components installed and updated them in build.gradle(app module) file.
Like,
compile 'com.android.support:design:23.1.1'
to
compile 'com.android.support:design:24.2.0'
And also updated compileSdkVersion to 24, buildToolsVersion to 24.0.1, targetSdkVersion to 24.
Now my code runs fine.
Hope it helps.