At startup, an error occurs
: app: mergeDebugResources FAILED
here is her explanation
Error: Execution failed for task ': app: mergeDebugResources'. java.lang.ArrayIndexOutOfBoundsException (no error message)
it looks like guild.gradle
apply plugin: 'com.android.application' android { signingConfigs { config { keyAlias 'Shvedcom' keyPassword 'gfgefc' storeFile file('D:/IT/Android/Store_key/Shvedcom.jks') storePassword 'gfgefc' } } compileSdkVersion 23 buildToolsVersion "23.0.3" defaultConfig { applicationId "com.shved.happycalendar" minSdkVersion 17 targetSdkVersion 23 versionCode 1 versionName "1.0" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' signingConfig signingConfigs.config } debug { signingConfig signingConfigs.config } } } dependencies { compile fileTree(include: ['*.jar'], dir: 'libs') testCompile 'junit:junit:4.12' compile 'com.android.support:appcompat-v7:23.4.0' compile 'com.android.support:design:23.4.0' compile 'tyrantgit:explosionfield:1.0.1' compile 'net.frakbot:jumpingbeans:1.3.0' }