Could not determine the dependencies of task ':app:crashlyticsStoreDeobsDebug' if I enable the proguard

前端 未结 11 1268
你的背包
你的背包 2021-02-01 01:11

I get following error when I was running an app within Android Studio 2.

Gradle tasks [:app:assembleDebug]
Could not determine the dependencies of task \':app:cr         


        
11条回答
  •  后悔当初
    2021-02-01 01:42

    build.gradle

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

提交回复
热议问题