facebook / react-native

A framework for building native applications using React
https://reactnative.dev
MIT License
117.14k stars 24.08k forks source link

Could not determine the dependencies of task ':@react-native-async-storage:compileDebugAidl'. > Could not resolve all task dependencies for configuration ':@react-native-async-storage:debugCompileClasspath'. > Could not find com.facebook.react:react-android:0.72.0. Required by: project :@react-native-async-storage #41943

Closed cbr167 closed 5 months ago

cbr167 commented 6 months ago

Old Version

0.67

New Version

0.72.0

Description

we are trying to update to 0.72.0 from 0.67 and getting this error. Android/build.gradle

def REACT_NATIVE_VERSION = new File(['node', '--print',"JSON.parse(require('fs').readFileSync(require.resolve('react-native/package.json'), 'utf-8')).version"].execute(null, rootDir).text.trim())

buildscript {

    ext {
        buildToolsVersion = "33.0.0"
        minSdkVersion = 24
        compileSdkVersion = 33
        targetSdkVersion = 33
        ndkVersion = "23.1.7779620"
        google_firebase = '21.6.0'
        okhttpVersion = '4.10.0'
        retrofitVersion = '2.9.0'
        gsonVersion = '2.8.6'
        okhttpUrlVersion = '4.4.1'
        kotlin_version = '1.8.10'
        exifinterface = '1.3.3'
        jetpackCompose = '1.2.0'
        compose_activity = '1.4.0'
        mockitoCoreVersion = '4.8.0'
        powermockVersion = '2.0.0-beta.5'
        jUnitVersion = '4.13.2'
        coroutinesTestVersion = '1.6.1'
        agp_version = '7.2.1'
    }
    repositories {
        mavenCentral()
        google()
    }
    dependencies {
        classpath("com.android.tools.build:gradle:7.3.1")
        classpath("com.facebook.react:react-native-gradle-plugin")
        classpath("org.jetbrains.kotlin:kotlin-gradle-plugin")

        classpath "io.realm:realm-gradle-plugin:10.17.0"

        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
        classpath 'com.google.gms:google-services:4.4.0'
        classpath 'com.google.firebase:firebase-crashlytics-gradle:2.9.1'
        classpath 'com.apollographql.apollo:apollo-gradle-plugin:2.5.13'
        classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlin_version"
        classpath 'com.google.dagger:hilt-android-gradle-plugin:2.38.1'
        //classpath 'com.google.dagger:hilt-android-gradle-plugin:2.45'
        classpath "org.jetbrains.kotlinx:kover-gradle-plugin:0.7.4"
    }
}
//plugins {
//    id 'com.android.application' version '7.2.1' apply false
//    id 'com.android.library' version '7.2.1' apply false
//    id("org.jetbrains.kotlin.android") version "1.8.10" apply false
//}
//def REACT_NATIVE_VERSION = new File(['node', '--print',"JSON.parse(require('fs').readFileSync(require.resolve('react-native/package.json'), 'utf-8')).version"].execute(null, rootDir).text.trim())
allprojects {
    configurations.all {
        resolutionStrategy {
            force "com.facebook.react:react-native:" + REACT_NATIVE_VERSION

            // use 0.9.0 to fix crash on Android 11
            force "com.facebook.soloader:soloader:0.9.0+"
       //     force "com.facebook.react:react-native"
        }
    }

   // google()
//    configuration.all{
//        resolutionStrategy {
//            force "com.facebook.react:react-native:0.72.7"
//        }
//    }
    repositories {
        google()
        mavenLocal()
        mavenCentral()
        jcenter()
        // force 'com.facebook.react:react-native:0.71.3'
        mavenCentral {
            content {
                excludeGroup("com.facebook.react")
            }
        }
        google()
        maven {
            // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
            url("$rootDir/../node_modules/react-native/android")
        }
        maven {
            // Android JSC is installed from npm
            url("$rootDir/../node_modules/jsc-android/dist")
        }
        mavenCentral {
            // We don't want to fetch react-native from Maven Central as there are
            // older versions over there.
            content {
                excludeGroup "com.facebook.react"
            }
        }
        google()
        //jcenter()
        //gradlePluginPortal()

        maven {
            url "https://maven.google.com"
        }
        mavenCentral()
        maven {
            url "https://repository.medallia.com/digital-maven/"
        }

        exclusiveContent {
            filter {
                includeGroup "com.facebook.react"
            }
            forRepository {
                maven {
                    url "$rootDir/../node_modules/react-native/android"
                }
            }
        }
        maven { url 'https://www.jitpack.io' }
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

app/build.gradle:

apply plugin: 'com.android.application'
apply plugin: "com.facebook.react"
apply plugin: 'com.google.gms.google-services'
apply plugin: 'com.google.firebase.crashlytics'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-kapt'
apply plugin: 'kotlin-parcelize'
apply plugin: 'realm-android'
apply plugin: 'base'

def ApplicationID = "com.test"
def AppVersion="6.3.0"
def AppVersionCode=221
def DevVersion = new Date().format("yyyyMMddHHmm")

/**
 * Architectures to build native code for in debug.
 */
//def nativeArchitectures = project.getProperties().get("reactNativeDebugArchitectures")

/**
 * The react.gradle file registers a task for each build variant (e.g. bundleDebugJsAndAssets
 * and bundleReleaseJsAndAssets).
 * These basically call `react-native bundle` with the correct arguments during the Android build
 * cycle. By default, bundleDebugJsAndAssets is skipped, as in debug/dev mode we prefer to load the
 * bundle directly from the development server. Below you can see all the possible configurations
 * and their defaults. If you decide to add a configuration block, make sure to add it before the
 * `apply from: "../../node_modules/react-native/react.gradle"` line.
 *
 * project.ext.react = [
 *   // the name of the generated asset file containing your JS bundle
 *   bundleAssetName: "index.android.bundle",
 *
 *   // the entry file for bundle generation. If none specified and
 *   // "index.android.js" exists, it will be used. Otherwise "index.js" is
 *   // default. Can be overridden with ENTRY_FILE environment variable.
 *   entryFile: "index.android.js",
 *
 *   // https://reactnative.dev/docs/performance#enable-the-ram-format
 *   bundleCommand: "ram-bundle",
 *
 *   // whether to bundle JS and assets in debug mode
 *   bundleInDebug: false,
 *
 *   // whether to bundle JS and assets in release mode
 *   bundleInRelease: true,
 *
 *   // whether to bundle JS and assets in another build variant (if configured).
 *   // See http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Build-Variants
 *   // The configuration property can be in the following formats
 *   //         'bundleIn${productFlavor}${buildType}'
 *   //         'bundleIn${buildType}'
 *   // bundleInFreeDebug: true,
 *   // bundleInPaidRelease: true,
 *   // bundleInBeta: true,
 *
 *   // whether to disable dev mode in custom build variants (by default only disabled in release)
 *   // for example: to disable dev mode in the staging build type (if configured)
 *   devDisabledInStaging: true,
 *   // The configuration property can be in the following formats
 *   //         'devDisabledIn${productFlavor}${buildType}'
 *   //         'devDisabledIn${buildType}'
 *
 *   // the root of your project, i.e. where "package.json" lives
 *   root: "../../",
 *
 *   // where to put the JS bundle asset in debug mode
 *   jsBundleDirDebug: "$buildDir/intermediates/assets/debug",
 *
 *   // where to put the JS bundle asset in release mode
 *   jsBundleDirRelease: "$buildDir/intermediates/assets/release",
 *
 *   // where to put drawable resources / React Native assets, e.g. the ones you use via
 *   // require('./image.png')), in debug mode
 *   resourcesDirDebug: "$buildDir/intermediates/res/merged/debug",
 *
 *   // where to put drawable resources / React Native assets, e.g. the ones you use via
 *   // require('./image.png')), in release mode
 *   resourcesDirRelease: "$buildDir/intermediates/res/merged/release",
 *
 *   // by default the gradle tasks are skipped if none of the JS files or assets change; this means
 *   // that we don't look at files in android/ or ios/ to determine whether the tasks are up to
 *   // date; if you have any other folders that you want to ignore for performance reasons (gradle
 *   // indexes the entire tree), add them here. Alternatively, if you have JS files in android/
 *   // for example, you might want to remove it from here.
 *   inputExcludes: ["android/**", "ios/**"],
 *
 *   // override which node gets called and with what additional arguments
 *   nodeExecutableAndArgs: ["node"],
 *
 *   // supply additional arguments to the packager
 *   extraPackagerArgs: []
 * ]
 */

// bundleInDebug needs to be true for app center and play store builds.
project.ext.react = [
    enableHermes: false,  // clean and rebuild if changing
]

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

/**
 * Set this to true to create two separate APKs instead of one:
 *   - An APK that only works on ARM devices
 *   - An APK that only works on x86 devices
 * The advantage is the size of the APK is reduced by about 4MB.
 * Upload all the APKs to the Play Store and people will download
 * the correct one based on the CPU architecture of their device.
 */
def enableSeparateBuildPerCPUArchitecture = false

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

/**
 * The preferred build flavor of JavaScriptCore.
 *
 * For example, to use the international variant, you can use:
 * `def jscFlavor = 'org.webkit:android-jsc-intl:+'`
 *
 * The international variant includes ICU i18n library and necessary data
 * allowing to use e.g. `Date.toLocaleString` and `String.localeCompare` that
 * give correct results when using with locales other than en-US.  Note that
 * this variant is about 6MiB larger per architecture than default.
 */
def jscFlavor = 'org.webkit:android-jsc:+'

/**
 * Whether to enable the Hermes VM.
 *
 * This should be set on project.ext.react and mirrored here.  If it is not set
 * on project.ext.react, JavaScript will not be compiled to Hermes Bytecode
 * and the benefits of using Hermes will therefore be sharply reduced.
 */
def enableHermes = project.ext.react.get("enableHermes", false);

/**
 * Architectures to build native code for.
 */
def reactNativeArchitectures() {
    def value = project.getProperties().get("reactNativeArchitectures")
    return value ? value.split(",") : ["armeabi-v7a", "x86", "x86_64", "arm64-v8a"]
}

android {
    ndkVersion rootProject.ext.ndkVersion

    compileSdkVersion rootProject.ext.compileSdkVersion
    namespace "com.pk"
    //ndkVersion rootProject.ext.ndkVersion

    buildFeatures {
        dataBinding true
        viewBinding true
        compose true
    }

    composeOptions {
       // kotlinCompilerExtensionVersion '1.1.0'
       kotlinCompilerExtensionVersion '1.4.4'
    }
    defaultConfig {
      //  buildConfigField "boolean", "IS_NEW_ARCHITECTURE_ENABLED", isNewArchitectureEnabled().toString()
        applicationId ApplicationID
        buildToolsVersion = rootProject.ext.buildToolsVersion
        minSdkVersion rootProject.ext.minSdkVersion
        targetSdkVersion rootProject.ext.targetSdkVersion
        versionCode AppVersionCode
        buildConfigField 'boolean', 'verboseAnalytics', 'false'
        multiDexEnabled true

        renderscriptTargetApi 18
        renderscriptSupportModeEnabled true
        testInstrumentationRunner = 'androidx.test.runner.AndroidJUnitRunner'

        testOptions {
            unitTests.includeAndroidResources = true
            unitTests.returnDefaultValues = true
        }
    }
 }
//    }

    lintOptions {
        checkReleaseBuilds false
        // Or, if you prefer, you can continue to check for errors in release builds,
        // but continue the build even when errors are found:
        abortOnError false
    }

    signingConfigs {

    }

    configurations {
        devDebugCompile
        prodReleaseCompile
        prodDebugCompile
        uatDebugCompile
        uatReleaseCompile
        uatReleaseUatCompile
    }

    buildTypes {
        debug {
            multiDexKeepFile file('multidex-config.txt')
            multiDexKeepProguard file('multidex-config.pro')
            minifyEnabled false
            shrinkResources false
            debuggable true
            signingConfig = signingConfigs.debug

            copy {
                from file("../releaseNotes.txt")
                into("src/main/assets")
            }
    flavorDimensions "default"

    compileOptions {
        sourceCompatibility = JavaVersion.VERSION_1_8
        targetCompatibility = JavaVersion.VERSION_1_8
    }

    packagingOptions {
        exclude 'META-INF/DEPENDENCIES'
        exclude 'META-INF/LICENSE'
        exclude 'META-INF/NOTICE'
        exclude 'META-INF/ASL2.0'
        exclude 'META-INF/notice.txt'
        exclude 'META-INF/license.txt'

        /**
         * Workaround to fix duplicate RN libraries
         * 2 files found with path 'lib/arm64-v8a/libc++_shared.so' from inputs:
         - /Applications/Android Studio_Chipmunk.app/Contents/jre/Contents/Home/caches/transforms-3/b652a06c6f8e6e3b7c1a78a6b367f1a0/transformed/jetified-react-native-0.71.0-rc.0-debug/jni/arm64-v8a/libc++_shared.so
         - /Applications/Android Studio_Chipmunk.app/Contents/jre/Contents/Home/caches/transforms-3/a231f9e7a1edae1addf1d7a5b1e4796a/transformed/jetified-fbjni-0.3.0/jni/arm64-v8a/libc++_shared.so
         If you are using jniLibs and CMake IMPORTED targets, see
         https://developer.android.com/r/tools/jniLibs-vs-imported-targets
         */
        pickFirst '**/libc++_shared.so'
        pickFirst '**/libfbjni.so'
    }

    //required for @JvmDefault tags for optional interface parameters
    kotlinOptions {
//        freeCompilerArgs = listOf("-Xjvm-default=all")
//        freeCompilerArgs = ['-Xjvm-default=enable']
        freeCompilerArgs = ['-Xjvm-default=all-compatibility', '-Xjvm-default=enable','-Xjvm-default=all','-Xopt-in=com.algolia.instantsearch.ExperimentalInstantSearch']
        jvmTarget = '1.8'
    }

    variantFilter { variant ->

        if (!(variant.name == "devDebug"
                || variant.name == "prodRelease"
                || variant.name == "uatReleaseUat"
                || variant.name == "uatDebug"
                || variant.name == "uatRelease"
                || variant.name == "prodDebug"
        )) {
            variant.setIgnore(true)
        }
    }
}

// Fixes: Manifest merge failed on Androidx.test.core (multiple versions 1.0.0 and 1.4.0). Force to use 1.4.0
configurations.all {
    resolutionStrategy.eachDependency { details ->
        if (details.requested.group == 'androidx.test') {
            details.useVersion "1.6.0"
        }
    }
}

dependencies {
    def mockVersion = '1.11.0'
    implementation("com.facebook.react:react-android:0.72.0")
    implementation project(':react-native-community-geolocation')
    //noinspection GradleDynamicVersion
//    implementation "com.facebook.react:react-native:+"  // From node_modules
  //  implementation fileTree(dir: "libs", include: ["*.jar"])
    implementation 'com.google.android.gms:play-services-maps:18.2.0'
    implementation 'com.google.android.gms:play-services-gcm:17.0.0'
    implementation 'com.google.android.gms:play-services-location:20.0.0'
    implementation 'com.google.android.gms:play-services-analytics:18.0.1'
    implementation 'com.google.android.gms:play-services-auth:20.3.0'
    implementation 'com.google.android.gms:play-services-games:22.0.1'
    implementation 'com.google.android.gms:play-services-safetynet:18.0.1'

    //Branch dependencies
    implementation 'io.branch.sdk.android:library:5.0.7'
    implementation 'com.google.firebase:firebase-appindexing:20.0.0'
    implementation 'com.google.android.gms:play-services-ads-identifier:18.0.1'

    //Kount dependencies
    implementation 'com.google.android.instantapps:instantapps:1.1.0'
    implementation "com.google.code.gson:gson:$rootProject.ext.gsonVersion"
    implementation group: 'com.android.volley', name: 'volley', version: '1.2.1'

    implementation 'com.google.firebase:firebase-analytics:21.2.0'

    implementation 'androidx.hilt:hilt-navigation-compose:1.0.0'
    implementation('io.sentry:sentry-android:6.18.1') {
        exclude group: 'androidx.lifecycle', module: 'lifecycle-process'
        exclude group: 'androidx.lifecycle', module: 'lifecycle-common-java8'
    }
//    // The version of react-native is set by the React Native Gradle Plugin
//    implementation("com.facebook.react:react-android:0.72.7")
    debugImplementation("com.facebook.flipper:flipper:${FLIPPER_VERSION}")

    debugImplementation("com.facebook.flipper:flipper-network-plugin:${FLIPPER_VERSION}") {
        exclude group:'com.squareup.okhttp3', module:'okhttp'
    }

    debugImplementation("com.facebook.flipper:flipper-fresco-plugin:${FLIPPER_VERSION}")
    if (hermesEnabled.toBoolean()) {
        implementation("com.facebook.react:hermes-android")
    } else {
        implementation jscFlavor
        //implementation("com.facebook.react:hermes-android:0.72.7")
    }
}
//apply from: file("../../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesAppBuildGradle(project)
// 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.implementation
    into 'libs'
}

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

}

apply from: file("../../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesAppBuildGradle(project)

package.json { "name": "native-shopping", "version": "0.0.1", "private": true, "scripts": { "start": "react-native start", "test": "jest", "tsc": "tsc", "lint": "eslint .", "format:all": "prettier --config .prettierrc './*/.ts{,x}' --write", "format:staged": "pretty-quick --staged --pattern '*/.(tsx|ts)'", "supercacheclear": "xcrun simctl erase all && watchman watch-del-all && rm -rf $TMPDIR/react- && rm -rf $TMPDIR/haste- && rm -rf $TMPDIR/metro- && npm start -- --reset-cache", "superpodinstall": "npm i && cd ios && pod cache clean --all && pod repo update && pod install", "reload": "adb shell \"input keyevent 82 && input keyevent 66 && input keyevent 66\"", "menu": "adb shell input keyevent 82", "reverseJetifier": "jetifier -r", "installJetifier": "jetifier", "codegen": "graphql-codegen --config codegen.yml", "vuln": "npm audit --json --prod-only | npm-audit-helper", "bundle-qa-android": "react-native bundle --dev false --platform android --entry-file index.js --bundle-output ./android/app/build/generated/assets/react/debug/index.android.bundle --assets-dest ./android/app/build/res/react/debug", "bundle-qa-ios": "react-native bundle --dev false --platform ios --entry-file index.js --bundle-output ios/main.jsbundle --assets-dest ios" }, "dependencies": { "@react-native-async-storage/async-storage": "^1.21.0", "@react-native-community/geolocation": "^3.1.0", "@react-native-community/masked-view": "^0.1.7", "@react-native-picker/picker": "^2.1.0", "await-lock": "^2.1.0", "axios": "^0.21.1", "axios-cache-adapter": "^2.7.3", "cross-fetch": "^3.1.4", "graphql": "^15.5.0", "hermes-engine": "^0.2.1", "lodash.orderby": "^4.6.0", "mock-async-storage": "^2.2.0", "prop-types": "^15.6.2", "react": "18.2.0", "react-error-boundary": "^3.1.0", "react-native": "0.72.0", "react-native-gesture-handler": "^1.10.3", "react-native-picker-select": "^8.0.3", "react-native-render-html": "^4.2.3", "react-native-safe-area-context": "^0.7.3", "react-native-safe-area-view": "^1.1.1", "react-native-screens": "^2.3.0", "react-native-share": "^4.1.0", "react-native-swipe-gestures": "^1.0.5", "react-native-swipe-list-view": "^3.2.6", "react-native-typescript-transformer": "^1.2.13", "react-native-webview": "^11.23.1", "react-navigation": "^4.4.3", "react-navigation-stack": "^2.10.2" }, "devDependencies": { "@babel/core": "^7.20.0", "@babel/preset-env": "^7.20.0", "@babel/preset-typescript": "^7.12.1", "@babel/runtime": "^7.23.6", "@graphql-codegen/add": "^2.0.2", "@graphql-codegen/cli": "1.21.4", "@graphql-codegen/fragment-matcher": "^2.0.1", "@graphql-codegen/introspection": "1.18.2", "@graphql-codegen/typescript": "1.22.0", "@graphql-codegen/typescript-operations": "1.17.16", "@graphql-codegen/typescript-resolvers": "^1.19.1", "@react-native/eslint-config": "^0.72.2", "@react-native/metro-config": "^0.72.6", "@testing-library/jest-native": "^4.0.1", "@testing-library/react-native": "^7.2.0", "@tsconfig/react-native": "^3.0.0", "@types/faker": "^5.1.7", "@types/jest": "^26.0.22", "@types/lodash": "^4.14.157", "@types/lodash.orderby": "^4.6.6", "@types/metro-config": "^0.76.3", "@types/node": "^13.13.5", "@types/react": "^18.0.24", "@types/react-native": "^0.64.0", "@types/react-native-share": "^3.3.1", "@types/react-test-renderer": "^18.0.0", "babel-jest": "^29.2.1", "eslint": "^8.19.0", "husky": "^4.3.6", "jest": "^29.2.1", "jetifier": "^1.6.5", "metro-react-native-babel-preset": "0.76.5", "npm-audit-helper": "^3.1.0", "prettier": "^2.4.1", "pretty-quick": "^3.1.0", "react-test-renderer": "18.2.0", "typescript": "4.8.4" }, "engines": { "node": ">=16" }, "jest": { "preset": "react-native" }, "husky": { "hooks": { "pre-commit": "npm run format:staged && npm run tsc" } }, "rnpm": { "assets": [ "./app/assets/fonts/" ] } }

Steps to reproduce

Getting this error while building android. I tried removing

    exclusiveContent {
        filter {
            includeGroup "com.facebook.react"
        }
        forRepository {
            maven {
                url "$rootDir/../node_modules/react-native/android"
            }
        }
    }

then i started getting

image

Affected Platforms

Runtime - Android, Other (please specify)

Output of npx react-native info

System:
  OS: macOS 13.6.1
  CPU: (8) arm64 Apple M1
  Memory: 83.83 MB / 16.00 GB
  Shell:
    version: 3.2.57
    path: /bin/bash
Binaries:
  Node:
    version: 16.5.0
    path: ~/.nvm/versions/node/v16.5.0/bin/node
  Yarn: Not Found
  npm:
    version: 7.19.1
    path: ~/.nvm/versions/node/v16.5.0/bin/npm
  Watchman:
    version: 2023.12.04.00
    path: /opt/homebrew/bin/watchman
Managers:
  CocoaPods:
    version: 1.14.3
    path: /opt/homebrew/bin/pod
SDKs:
  iOS SDK: Not Found
  Android SDK: Not Found
IDEs:
  Android Studio: 2021.2 AI-212.5712.43.2112.8815526
  Xcode:
    version: /undefined
    path: /usr/bin/xcodebuild
Languages:
  Java:
    version: 11.0.12
    path: /usr/bin/javac
  Ruby:
    version: 2.6.10
    path: /usr/bin/ruby
npmPackages:
  "@react-native-community/cli": Not Found
  react:
    installed: 18.2.0
    wanted: 18.2.0
  react-native:
    installed: 0.72.0
    wanted: 0.72.0
  react-native-macos: Not Found
npmGlobalPackages:
  "*react-native*": Not Found
Android:
  hermesEnabled: false
  newArchEnabled: false
iOS:
  hermesEnabled: false
  newArchEnabled: false

Stacktrace or Logs

What went wrong:
Could not determine the dependencies of task ':@react-native-async-storage:compileDebugAidl'.
> Could not resolve all task dependencies for configuration ':@react-native-async-storage:debugCompileClasspath'.
   > Could not find com.facebook.react:react-android:0.72.0.
     Required by:

Reproducer

cli

Screenshots and Videos

image
github-actions[bot] commented 6 months ago
:warning: Missing Reproducible Example
:information_source: We could not detect a reproducible example in your issue report. Please provide either:
  • If your bug is UI related: a Snack
  • If your bug is build/update related: use our Reproducer Template. A reproducer needs to be in a GitHub repository under your username.
cbr167 commented 6 months ago

I tried commented all react-native libraries in settin.gradle and build.gradle. And i'm seeing below error.

Caused by: org.gradle.internal.resolve.ModuleVersionNotFoundException: Could not find com.facebook.react:react-android:0.72.0.
Required by:
    project :app
cortinico commented 6 months ago

Without a reproducer is impossible to help you sadly.

github-actions[bot] commented 5 months ago

This issue is waiting for author's feedback since 24 days. Please provide the requested feedback or this will be closed in 7 days.

github-actions[bot] commented 5 months ago

This issue was closed because it has been stalled for 7 days with no activity.

github-actions[bot] commented 5 months ago

This issue was closed because the author hasn't provided the requested feedback after 7 days.