• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps IDE Internal Error...

ac4android

Well-Known Member
When I try to create an AVD, I get following error often but not always. I then shut down A/S and it tells me there is an IDE internal error and to submit a bug report. Don't know whether reporting it here counts as submitting a bug report.

Error:Could not open cp_init remapped class cache for 1xnug96yb3lk5m5nvczixwp5w (C:\Users\ARTHUR\.gradle\caches\2.14.1\scripts-remapped\asLocalRepo16_aroprqmvn8nlp0he49153e8sr\1xnug96yb3lk5m5nvczixwp5w\cp_init57408229).
> java.io.FileNotFoundException: C:\Users\ARTHUR\.gradle\caches\2.14.1\scripts-remapped\asLocalRepo16_aroprqmvn8nlp0he49153e8sr\1xnug96yb3lk5m5nvczixwp5w\cp_init57408229\cache.properties (The system cannot find the file specified)


I am on A/S 2.1.3, this is my gradle:

apply plugin: 'com.android.application'

android {
compileSdkVersion 23
buildToolsVersion "23.0.3"

defaultConfig {
applicationId "redacted"
minSdkVersion 17
targetSdkVersion 22
versionCode 1
versionName "1.0"
// enable multi-dex support
multiDexEnabled true
}
buildTypes {
release {
minifyEnabled true
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.4.0'
compile 'com.android.support:design:23.4.0'
compile 'com.android.support:support-v4:23.4.0'
compile 'com.google.android.gms:play-services-appindexing:9.4.0'
compile 'com.google.android.gms:play-services-maps:9.4.0'
compile 'com.google.android.gms:play-services-ads:9.4.0'
compile 'com.google.android.gms:play-services-identity:9.4.0'
compile 'com.google.android.gms:play-services-gcm:9.4.0'
compile 'com.google.android.gms:play-services-analytics:9.4.0'
compile 'com.google.maps.android:android-maps-utils:0.4.+'
}


PS: run BUILD again fixes the problem.
 
Last edited:
Back
Top Bottom