today I upgraded my studio, and every latest sdkBuild version. now my build.gradle(app) configuration looks like this:
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'
}
now it says a newer version of com.android.support:appcompat-v7 than 23.2.0 is available: 24.0.0-alpha1 as well as for design: 23.2.0
its not working correctly, and my app crashing. toolbar error, style error, everything is not properly working. Please help me understand what the actual problem is?