2

No logro buildear mi aplicacion y ya he probado de todo, cambie com.facebook.react:react-native:+ en android/app/build-gradle por com.facebook.react:react-native:0.68.2 y nada, probe agregando, borrando, y editando el jcenter() de buil-gradle y tampoco. Ya no se que mas probar.

1 Answer 1

1

In your project directory go to android/build.gradle update this. it works for me.

buildscript {
    repositories {
        google()
        //jcenter() --> comment this 
        gradlePluginPortal() --> add this. 
    }
}
allprojects {
    repositories {
        mavenLocal()
        gradlePluginPortal() --> add this
       //jcenter() --> comment this
}

}

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.