React-native-onesignal: تعذر العثور على firebase-iid.aar ...

تم إنشاؤها على ١١ يونيو ٢٠١٨  ·  5تعليقات  ·  مصدر: OneSignal/react-native-onesignal

وصف:
الحصول على خطأ في إصدار التصحيح

بيئة
"رد فعل أصلي إشارة واحدة": "^ 3.2.4"
إضافة الغزل
RN 0.55.4

خطوات إعادة إنتاج المشكلة:

  1. قم بتثبيت OneSignal SDK باستخدام الغزل في مشروعك
  2. تشغيل react-native run-android

انتاج:

FAILURE: Build failed with an exception.

* What went wrong:
Could not resolve all files for configuration ':app:debugCompileClasspath'.
> Could not find firebase-iid.aar (com.google.firebase:firebase-iid:12.0.1).
  Searched in the following locations:
      https://jcenter.bintray.com/com/google/firebase/firebase-iid/12.0.1/firebase-iid-12.0.1.aar
> Could not find firebase-common.aar (com.google.firebase:firebase-common:12.0.1).
  Searched in the following locations:
      https://jcenter.bintray.com/com/google/firebase/firebase-common/12.0.1/firebase-common-12.0.1.aar
> Could not find play-services-ads.aar (com.google.android.gms:play-services-ads:12.0.1).
  Searched in the following locations:
      https://jcenter.bintray.com/com/google/android/gms/play-services-ads/12.0.1/play-services-ads-12.0.1.aar
> Could not find firebase-auth-license.aar (com.google.firebase:firebase-auth-license:12.0.1).
  Searched in the following locations:
      https://jcenter.bintray.com/com/google/firebase/firebase-auth-license/12.0.1/firebase-auth-license-12.0.1.aar

android / build.gradle

// Top-level build file where you can add configuration options common to all sub-projects/modules.

buildscript {
    repositories {
        jcenter()
        google()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:3.0.1'

        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        mavenLocal()
        jcenter()
        google()
        maven {
            // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
            url "$rootDir/../node_modules/react-native/android"
        }
    }
}

app / build.gradle:

buildscript {
    repositories {
        maven { url 'https://plugins.gradle.org/m2/' } // Gradle Plugin Portal 
    }
    dependencies {
        classpath 'gradle.plugin.com.onesignal:onesignal-gradle-plugin:[0.10.0, 0.99.99]'
    }
}

apply plugin: 'com.onesignal.androidsdk.onesignal-gradle-plugin'

apply plugin: "com.android.application"

import com.android.build.OutputFile

project.ext.react = [
    entryFile: "index.js"
]

apply from: "../../node_modules/react-native/react.gradle"

def enableSeparateBuildPerCPUArchitecture = false

/**
 * Run Proguard to shrink the Java bytecode in release builds.
 */
def enableProguardInReleaseBuilds = false

android {
    compileSdkVersion 26
    buildToolsVersion "26.0.2"

    defaultConfig {
        applicationId "com.realm"
        minSdkVersion 16
        targetSdkVersion 22
        versionCode 1
        versionName "1.0"
        ndk {
            abiFilters "armeabi-v7a", "x86"
        }
    }
    splits {
        abi {
            reset()
            enable enableSeparateBuildPerCPUArchitecture
            universalApk false  // If true, also generate a universal APK
            include "armeabi-v7a", "x86"
        }
    }
    buildTypes {
        release {
            minifyEnabled enableProguardInReleaseBuilds
            proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
        }
    }
    // applicationVariants are e.g. debug, release
    applicationVariants.all { variant ->
        variant.outputs.each { output ->
            // For each separate APK per architecture, set a unique version code as described here:
            // http://tools.android.com/tech-docs/new-build-system/user-guide/apk-splits
            def versionCodes = ["armeabi-v7a":1, "x86":2]
            def abi = output.getFilter(OutputFile.ABI)
            if (abi != null) {  // null for the universal-debug, universal-release variants
                output.versionCodeOverride =
                        versionCodes.get(abi) * 1048576 + defaultConfig.versionCode
            }
        }
    }
}

dependencies {
    compile project(':react-native-onesignal')
    implementation "com.google.firebase:firebase-core:12.0.1"
    implementation "com.google.android.gms:play-services-base:12.0.1"

    // RNFirebase optional dependencies
    implementation "com.google.firebase:firebase-messaging:12.0.1"
    implementation "com.google.firebase:firebase-iid:12.0.1"

    compile project(':realm')
    compile fileTree(dir: "libs", include: ["*.jar"])
    compile "com.android.support:appcompat-v7:26.0.2"
    compile "com.facebook.react:react-native:+"  // From node_modules
}

// Run this once to be able to run the application with BUCK
// puts all compile dependencies into folder libs for BUCK to use
task copyDownloadableDepsToLibs(type: Copy) {
    from configurations.compile
    into 'libs'
}

هل يمكن لأي شخص مساعدتي في هذه القضايا؟

التعليق الأكثر فائدة

rodrigofbm في android/build.gradle في قسم repositories ، حاول نقل google() ABOVE jcenter() .

إنه أمر غريب ، لكننا رأينا هذا يعمل على إصلاح هذه المشكلة بالذات.

ال 5 كومينتر

rodrigofbm في android/build.gradle في قسم repositories ، حاول نقل google() ABOVE jcenter() .

إنه أمر غريب ، لكننا رأينا هذا يعمل على إصلاح هذه المشكلة بالذات.

@ Nightsd01 لول يعمل! شكرا جزيلا!

@ Nightsd01 شكرا جزيلا!

فقط للتوضيح للآخرين الذين قد يكونون في حيرة من أمري:

تحتاج إلى تبديل google() و jcenter() في قسم allprojects.repositories ، وليس قسم buildscript.repositories .

لمعلوماتك عن مطوري كوردوفا وأندرويد:

بدأت هذه المشكلة نفسها في بنائنا بالأمس وتمكنا من إصلاح البنية باستخدام نفس الحيلة. شكرا!

لإصلاح المشكلة ، انقل jcenter() أسفل allprojects.repositories.maven .

هل كانت هذه الصفحة مفيدة؟
0 / 5 - 0 التقييمات