找不到androidsdk.modules


11

因此,在运行程序的过程中,build.gradle因此错误而失败。我的意思是,它实际上是在第二秒之前工作的,而不是第二秒之后。我没有做出任何改变。

Could not find androidsdk.modules:shield:unspecified.
Required by:
    project :app > com.facebook.android:facebook-login:5.15.2
    project :app > com.facebook.android:facebook-core:5.15.2
    project :app > com.facebook.android:facebook-common:5.15.2
Search in build.gradle files

这是我的礼物。

apply plugin: 'com.android.application'
apply plugin: 'kotlin-android-extensions'
apply plugin: 'kotlin-android'

android {
    compileSdkVersion 28
    buildToolsVersion "29.0.2"
    defaultConfig {
        multiDexEnabled true
        applicationId "com.example.casualdatingapp"
        minSdkVersion 26
        targetSdkVersion 28
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
    }
    lintOptions {
        disable "ResourceType"
    }
    compileOptions {
        sourceCompatibility = JavaVersion.VERSION_1_8
        targetCompatibility = JavaVersion.VERSION_1_8
    }
}

dependencies {


    implementation 'com.google.firebase:firebase-functions:19.0.1'
    implementation "com.android.support:support-compat:28.0.0"
    implementation 'com.google.firebase:firebase-messaging:20.1.0'
    implementation 'net.yslibrary.keyboardvisibilityevent:keyboardvisibilityevent:2.3.0'
    implementation 'com.github.jakob-grabner:Circle-Progress-View:1.4'
    implementation 'com.github.smarteist:autoimageslider:1.3.2'

    implementation "com.android.support:support-v4:+"
    implementation 'com.nineoldandroids:library:2.4.0'
    implementation 'com.daimajia.slider:library:1.1.5@aar'
    implementation "com.yuyakaido.android:card-stack-view:2.3.4"
    implementation 'org.mongodb:stitch-android-sdk:4.1.0'
    implementation 'com.mindorks:placeholderview:0.7.1'
    implementation 'com.github.bumptech.glide:glide:3.7.0'
    implementation 'com.google.code.gson:gson:2.7'
    api 'com.theartofdev.edmodo:android-image-cropper:2.8.+'
    implementation 'com.android.support:cardview-v7:28.0.0'
    implementation 'com.google.android.gms:play-services-location:17.0.0'
    implementation 'com.facebook.android:facebook-login:[5,6)'
    implementation 'com.soundcloud.android:android-crop:1.0.1@aar'
    implementation 'com.mikhaellopez:circularimageview:3.2.0'
    api 'com.google.android.material:material:1.2.0-alpha01'
    implementation 'com.edmodo:rangebar:1.0.0'
    implementation 'pub.devrel:easypermissions:3.0.0'
//    implementation 'com.squareup.picasso:picasso:2.3.2'
    implementation 'com.squareup.picasso:picasso:2.71828'
    implementation 'com.android.support:multidex:1.0.3'
    implementation 'com.google.firebase:firebase-analytics:17.2.0'
    implementation 'com.google.firebase:firebase-storage:19.1.0'
    implementation 'com.google.firebase:firebase-auth:19.2.0'
    implementation 'com.google.firebase:firebase-firestore:21.3.1'
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'androidx.appcompat:appcompat:1.0.2'
    implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
    implementation 'androidx.lifecycle:lifecycle-extensions:2.0.0'
    implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.1.0'
    implementation 'androidx.legacy:legacy-support-v4:1.0.0'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'androidx.test.ext:junit:1.1.0'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1'
    implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
    def nav_version = "2.1.0"

    // Java language implementation
    implementation "androidx.navigation:navigation-fragment:$nav_version"
    implementation "androidx.navigation:navigation-ui:$nav_version"

    // Kotlin
    implementation "androidx.navigation:navigation-fragment-ktx:$nav_version"
    implementation "androidx.navigation:navigation-ui-ktx:$nav_version"

}
repositories {
    mavenCentral()
    maven { url "https://jitpack.io" }
}

apply plugin: 'com.google.gms.google-services'
apply plugin: 'kotlin-android-extensions'

我不知道这是怎么发生的或为什么发生的。恢复到以前的git repo并没有任何改变...可能是什么问题?


1
从Unity构建完全相同的问题。今天才发生。也许远程回购已移动?很奇怪的东西。
Zwander

@Zwander您知道这是否是Facebook API问题吗?
安德鲁·杨

1
同样的问题,我打算自己打开它。我正在使用react-native,我尝试更新到最新版本,到目前为止还没有运气,我要离开几个小时...
Stefano Solinas-obsidianart

1
@AndrewYoung是的,版本也完全相同,5.15.2
Zwander

Answers:


8

这为我解决了。今天才开始发生。

implementation 'com.facebook.android:facebook-android-sdk:5.15.3'

它为我工作。今天打开我的项目时,错误就刚刚发生
Hai Rom

2

当我尝试在Unity中构建项目时,出现了相同的错误。

对于Unity,解决方案将实现替换为:

implementation 'com.facebook.android:facebook-applinks:[5,5.11.1)' 
implementation 'com.facebook.android:facebook-core:[5,5.11.1)' 
implementation 'com.facebook.android:facebook-login:[5,5.11.1)' 
implementation 'com.facebook.android:facebook-share:[5,5.11.1)'

在Gradle模板中。


2

我们可以将有关facebook SDK的3件事配置为React Native Android应用:

  1. 中的版本lib package.json
  2. 依赖 android/app/build.gradle
  3. 的Facebook sdk版本 android/build.gradle

此错误可能是错误:https : //github.com/facebook/react-native-fbsdk/issues/701

对我来说,这个配置:

  1. "react-native-fbsdk": "1.1.2", 在package.json中
  2. implementation 'com.facebook.android:facebook-android-sdk:[5,5.11.1)' 在android / app / build.gradle上。
  3. facebookSdkVersion = '5.15.3' 在android / build.gradle中

2

我应该提到该解决方案适用于React Native。Rob的解决方案最适合本机Android。


我刚才遇到了同样的问题,这对我有用。添加facebookSdkVersion = "5.15.3"

android
|--build.gradle
buildscript {
    ext {
        buildToolsVersion = "28.0.3"
        minSdkVersion = 18
        compileSdkVersion = 28
        targetSdkVersion = 28
        ...

        // This is a temporary fix for react-native-fbsdk v1.1.2
        facebookSdkVersion = "5.15.3"
    }
}

参考文献:


这对我不起作用,尽管Rob提出了解决方案。
LoveForDroid

1

我使用了此版本[5,6)编译'com.facebook.android:facebook-android-sdk:[5,6)'

但是我解决了以下版本编译'com.facebook.android:facebook-android-sdk:[4,5)'

祝你有美好的一天


1

我今天也遇到同样的问题。我正在使用'flutter_facebook_login:^ 2.0.0'

我将其升级到flutter_facebook_login: ^3.0.0。我不得不更改logInWithReadPermissionlogIn,它为我解决了这个问题。


1

就我而言,我只是用

implementation 'com.facebook.android:facebook-android-sdk:5.15.3'

而且有效。


1

似乎很多人都遇到了这个问题,解决方法是在react-native-fssdk android的build.gradle中覆盖facebookSdkVersion

如果在终端的项目根目录下运行此命令

cat node_modules/react-native-fbsdk/android/build.gradle

您应该看到此构建gradle将检查是否有从ext定义的变量facebookSdkVersion定义,如果存在,它将为facebook.android库版本抓取该变量。

def FACEBOOK_SDK_VERSION = safeExtGet('facebookSdkVersion', '[5.0,6.0[')

dependencies {
    //noinspection GradleDynamicVersion
    implementation "com.facebook.react:react-native:+"  // From node_modules
    implementation "com.facebook.android:facebook-core:${FACEBOOK_SDK_VERSION}"
    implementation "com.facebook.android:facebook-login:${FACEBOOK_SDK_VERSION}"
    implementation "com.facebook.android:facebook-share:${FACEBOOK_SDK_VERSION}"
}

根据GitHub票证673701,版本5.15.1或5.15.3将解决此问题。因此,要覆盖facebookSdkVersion,您将像这样在项目的android build.gradle中定义它。

buildscript {
    ext {
        buildToolsVersion = "28.0.3"
        minSdkVersion = 18
        compileSdkVersion = 28
        targetSdkVersion = 28
        ...

        // the override version
        facebookSdkVersion = "5.15.3"
    }
}

并在您的android / app / build.gradle依赖项中,也使用此facebookSdkVersion

implementation "com.facebook.android:facebook-android-sdk:$facebookSdkVersion"
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.