无法解析:lib

问题描述 投票:0回答:1

我想我失去了自由……!我尝试了所有“ 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'

}
javascript java android android-studio lib
1个回答
0
投票

面临相同的错误,我的项目干净无警告,请任何人帮助。谢谢

© www.soinside.com 2019 - 2024. All rights reserved.