Error while run app in Android Studio. app:incrementalDebugJavaCompilationSafeguard -
error:execution failed task ':app:incrementaldebugjavacompilationsafeguard'.
java.io.ioexception: not delete folder
c:\users\xxxx\androidstudioprojects\xxxx\app\build\intermediates\classes\debug\com\bluejamesbond
its fresh instaltion of android studio en windows 8 , app running after in windows 7.
my gradles
// top-level build file can add configuration options common sub-projects/modules. buildscript { repositories { jcenter() } dependencies { classpath 'com.android.tools.build:gradle:2.1.2' classpath 'com.google.gms:google-services:3.0.0' // note: not place application dependencies here; belong // in individual module build.gradle files } } allprojects { repositories { jcenter() } } task clean(type: delete) { delete rootproject.builddir } apply plugin: 'com.android.application' buildscript { repositories { maven { url 'https://maven.fabric.io/public' } } dependencies { classpath 'io.fabric.tools:gradle:1.21.5' } } android { compilesdkversion 24 buildtoolsversion "23.0.3" defaultconfig { applicationid "com.xxx.xxx" minsdkversion 15 targetsdkversion 23 versioncode 23 versionname "1.9.6" multidexenabled true } buildtypes { release { minifyenabled false proguardfiles getdefaultproguardfile('proguard-android.txt'), 'proguard-rules.pro' } } } repositories { mavencentral() maven { url "https://oss.sonatype.org/content/repositories/snapshots/" } maven { url 'https://maven.fabric.io/public' } maven { url "https://jitpack.io" } } dependencies { compile filetree(include: ['*.jar'], dir: 'libs') testcompile 'junit:junit:4.12' compile project(':volley') compile('com.github.worker8:tourguide:1.0.16-snapshot@aar') { transitive = true } compile('com.crashlytics.sdk.android:crashlytics:2.6.0@aar') { transitive = true; } compile 'com.github.bluejamesbond:textjustify-android:2.1.6' compile 'com.bignerdranch.android:expandablerecyclerview:2.1.1' compile 'com.github.clans:fab:1.6.2' compile 'com.getbase:floatingactionbutton:1.10.1' compile 'com.facebook.android:facebook-android-sdk:4.6.0' compile 'com.squareup.picasso:picasso:2.3.2' compile 'com.nineoldandroids:library:2.4.0' compile 'com.daimajia.slider:library:1.1.5@aar' compile 'com.dlazaro66.qrcodereaderview:qrcodereaderview:1.0.0' compile 'com.michaelpardo:activeandroid:3.1.0-snapshot' compile 'com.sothree.slidinguppanel:library:3.2.1' compile 'io.card:android-sdk:5.3.4' compile 'com.github.techery:properratingbar:v0.0.3' compile ('com.mercadopago:sdk:beta_workshop@aar') { transitive = true } compile 'com.android.support:palette-v7:24.0.0' compile 'com.github.arimorty:floatingsearchview:2.0.1' compile ('com.lamudi.phonefield:phone-field:0.0.8@aar') { transitive = true } compile 'com.android.support:support-vector-drawable:24.0.0' compile 'com.android.support:animated-vector-drawable:24.0.0' compile 'com.android.support:design:24.0.0' compile 'com.android.support:support-v4:24.0.0' compile 'com.android.support:appcompat-v7:24.0.0' compile 'com.android.support:cardview-v7:24.0.0' compile 'com.android.support:recyclerview-v7:24.0.0' compile 'com.google.android.gms:play-services-analytics:9.2.0' compile 'com.google.android.gms:play-services-gcm:9.2.0' compile 'com.google.android.gms:play-services-maps:9.2.0' compile 'com.google.android.gms:play-services-appindexing:9.2.0' compile 'com.google.android.gms:play-services:9.2.0' compile 'com.google.android.gms:play-services-auth:9.2.0' compile 'com.google.maps.android:android-maps-utils:0.4.1' compile 'com.android.support:multidex:1.0.1' } apply plugin: 'io.fabric' apply plugin: 'com.google.gms.google-services'
thanks!
i have problem after moving project folder. solve cleaning it. build>clean project
, rebuild build>rebuild project
.
Comments
Post a Comment