Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/java/370.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Javascript 未能解析:lib_Javascript_Java_Android_Android Studio_Lib - Fatal编程技术网

Javascript 未能解析:lib

Javascript 未能解析:lib,javascript,java,android,android-studio,lib,Javascript,Java,Android,Android Studio,Lib,我想我丢了一本图书馆。。。! 我尝试了所有“stackoverflow”解决方案,但没有取得好的效果 错误:未能解析:lib 受影响模块:应用程序 我有一段时间没有使用这个源代码了。。。!在我打开它之后,我得到了这个错误 这是我的完整gradle文件:app 发件人:请问有人能帮忙吗? apply plugin: 'com.android.application' android { compileSdkVersion 28 defaultConfig { ap

我想我丢了一本图书馆。。。! 我尝试了所有“stackoverflow”解决方案,但没有取得好的效果

错误:未能解析:lib 受影响模块:应用程序

我有一段时间没有使用这个源代码了。。。!在我打开它之后,我得到了这个错误

这是我的完整gradle文件:app


发件人:

请问有人能帮忙吗?
apply plugin: 'com.android.application'

android {
    compileSdkVersion 28
    defaultConfig {
        applicationId "com.Splendid.Braid"
        minSdkVersion 19
        targetSdkVersion 28
        versionCode 2
        versionName "1.3"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
        renderscriptTargetApi 25
        renderscriptSupportModeEnabled true
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    //noinspection GradleCompatible
    implementation 'com.android.support:appcompat-v7:28.0.0'
    implementation 'com.android.support.constraint:constraint-layout:1.1.3'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.2'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
    implementation 'com.android.support:cardview-v7:28.0.0'
    implementation 'com.android.support:recyclerview-v7:28.0.0'
    implementation 'com.android.support:design:28.0.0'
    implementation 'com.android.support:support-v4:28.0.0'
    implementation 'com.github.bumptech.glide:glide:4.9.0'
    annotationProcessor 'com.github.bumptech.glide:compiler:4.9.0'
    implementation 'com.google.code.gson:gson:2.8.5'
    implementation 'org.jsoup:jsoup:1.10.3'
    implementation 'com.wang.avi:library:2.1.3'
    implementation 'com.github.lsjwzh.RecyclerViewPager:lib:v1.1.2@aar'
    implementation 'com.github.rubensousa:gravitysnaphelper:2.2.0'
    implementation 'com.github.yalantis:Side-Menu.Android:1.0.1'
    implementation('com.github.ozodrukh:CircularReveal:2.0.1@aar') { transitive = true; }
    implementation 'com.fivehundredpx:blurringview:1.0.0'
    implementation 'com.yarolegovich:discrete-scrollview:1.4.9'
    //implementation project(':library')
    implementation project(':menu')
    implementation 'com.google.android.ads.consent:consent-library:1.0.8'
    implementation 'com.google.android.gms:play-services-ads:19.1.0'
    implementation 'com.github.bhargavms:DotLoader:1.1.1'

}
Add to your project level build.gradle's allprojects block like this

allprojects {
    repositories {
        maven { url "https://jitpack.io" }
    }
}