java - After updating and restart android studio ,I am getting below error -
error:execution failed task ':app:compiledebugjavawithjavac'.
java.io.filenotfoundexception: c:\users\user\documents\github\olla-android\app\libs\org.xbill.dns_2.1.6.jar (the system cannot find file specified)
the bellow code gradle:
apply plugin: 'com.android.application' android { compilesdkversion 23 buildtoolsversion "23.0.2" defaultconfig { applicationid "media.me" minsdkversion 16 targetsdkversion 21 versioncode 30 versionname "2.0.0.4" multidexenabled true } buildtypes { release { debuggable false minifyenabled false proguardfiles getdefaultproguardfile('proguard-android.txt'), 'proguard-rules.pro' } } packagingoptions { exclude 'meta-inf/license' exclude 'meta-inf/dependencies' exclude 'meta-inf/notice' } compileoptions { sourcecompatibility javaversion.version_1_7 targetcompatibility javaversion.version_1_7 } } repositories { maven { url "https://jitpack.io" } } dependencies { /*compile filetree(include: ['*.jar'], dir: 'libs')*/ compile project(':circularimageview') compile project(':viewpagerindicator') compile project(':roundedimageview') compile project(':pagerslidingtabstrip') compile project(':parallaxscroll') compile project(':simplecircularprogressbar') compile project(':multichoiceadapter') compile files('libs/httpclient-4.0-alpha4.jar') compile files('libs/httpcore-4.3.jar') compile files('libs/httpmime-4.3.6.jar') compile files('libs/apache-mime4j-0.6.jar') compile files('libs/libphonenumber-7.0.5.jar') compile files('libs/android-async-http-1.4.6.jar') compile project(':viewpagerindicator') compile project(':roundedimageview') compile project(':pagerslidingtabstrip') compile project(':parallaxscroll') compile project(':simplecircularprogressbar') compile project(':multichoiceadapter') compile files('libs/httpclient-4.0-alpha4.jar') compile files('libs/libphonenumber-7.0.5.jar') compile files('libs/xmlpull_1_0_5.jar') compile files('libs/org.xbill.dns_2.1.6.jar') /*compile files('libs/jxmpp-core-0.4.1.jar')*/ /*compile files('libs/jxmpp-util-cache-0.4.1-alpha1.jar')*/ compile('com.github.ozodrukh:circularreveal:1.3.1@aar') { transitive = true; } //compile 'com.edmodo:cropper:1.0.1' /*compile 'com.github.nguyenhoanglam:imagepicker:1.0.2'*/ compile project(':multipleimagepicker') compile project(':tooltip') /*compile 'com.github.michaelye.easydialog:easydialog:1.4'*/ /*compile "org.igniterealtime.smack:smack-resolver-dnsjava:4.1.0"*/ /*compile "org.igniterealtime.smack:smack-compression-jzlib:4.1.0"*/ /*compile "org.igniterealtime.smack:smack-experimental:4.1.0"*/ /*compile "org.igniterealtime.smack:smack-jingle-old:4.1.0"*/ /*compile "org.igniterealtime.smack:smack-sasl-javax:4.1.0"*/ /*compile "org.igniterealtime.smack:smack-legacy:4.1.0"*/ /*compile "org.igniterealtime.smack:smack-debug:4.1.0" compile "org.igniterealtime.smack:smack-bosh:4.1.0" compile "org.igniterealtime.smack:smack-java7:4.1.0"*/ compile 'com.android.support:recyclerview-v7:23.4.0' compile 'com.android.support:cardview-v7:23.4.0' compile 'com.android.support:appcompat-v7:23.4.0' compile 'com.github.bumptech.glide:glide:3.7.0' compile 'com.android.support:design:23.4.0' compile 'com.squareup.picasso:picasso:2.5.2' compile 'com.android.support:support-v4:23.4.0' compile 'com.google.android.gms:play-services-location:9.0.2' compile 'com.facebook.android:facebook-android-sdk:4.14.0' compile 'com.google.firebase:firebase-crash:9.0.2' compile 'com.google.firebase:firebase-messaging:9.0.2' compile 'org.lucasr.twowayview:twowayview:0.1.4' compile 'com.readystatesoftware.systembartint:systembartint:1.0.3' compile 'org.igniterealtime.smack:smack-resolver-minidns:4.1.0' compile 'org.igniterealtime.smack:smack-android-extensions:4.1.0' compile 'org.igniterealtime.smack:smack-sasl-provided:4.1.0' compile 'org.igniterealtime.smack:smack-extensions:4.1.0' compile 'org.igniterealtime.smack:smack-android:4.1.0' compile 'org.igniterealtime.smack:smack-core:4.1.0' compile 'org.igniterealtime.smack:smack-tcp:4.1.0' compile 'org.igniterealtime.smack:smack-im:4.1.0' } apply plugin: 'com.google.gms.google-services' if has solution please me out...
Comments
Post a Comment