web-dev-qa-db-fra.com

réagir natif - erreur lors de l'extraction des fichiers d'outils de construction

Je ne parviens pas à créer mon application Android à l'aide de react-native run-Android, car le message d'erreur suivant s'affiche. Hier, tout a bien fonctionné. Savez-vous où pourrait être le problème?

A problem occurred configuring root project 'contacto'.
> Could not resolve all files for configuration ':classpath'.
   > Could not find builder.jar (com.Android.tools.build:builder:3.1.2).
     Searched in the following locations:
         https://jcenter.bintray.com/com/Android/tools/build/builder/3.1.2/builder-3.1.2.jar
   > Could not find lint-gradle-api.jar (com.Android.tools.lint:lint-gradle-api:26.1.2).
     Searched in the following locations:
         https://jcenter.bintray.com/com/Android/tools/lint/lint-gradle-api/26.1.2/lint-gradle-api-26.1.2.jar
   > Could not find manifest-merger.jar (com.Android.tools.build:manifest-merger:26.1.2).
     Searched in the following locations:
         https://jcenter.bintray.com/com/Android/tools/build/manifest-merger/26.1.2/manifest-merger-26.1.2.jar
   > Could not find builder-test-api.jar (com.Android.tools.build:builder-test-api:3.1.2).
     Searched in the following locations:
         https://jcenter.bintray.com/com/Android/tools/build/builder-test-api/3.1.2/builder-test-api-3.1.2.jar
   > Could not find aapt2-proto.jar (com.Android.tools.build:aapt2-proto:0.1.0).
     Searched in the following locations:
         https://jcenter.bintray.com/com/Android/tools/build/aapt2-proto/0.1.0/aapt2-proto-0.1.0.jar
   > Could not find builder-model.jar (com.Android.tools.build:builder-model:3.1.2).
     Searched in the following locations:
         https://jcenter.bintray.com/com/Android/tools/build/builder-model/3.1.2/builder-model-3.1.2.jar
   > Could not find annotations.jar (com.Android.tools:annotations:26.1.2).
     Searched in the following locations:
         https://jcenter.bintray.com/com/Android/tools/annotations/26.1.2/annotations-26.1.2.jar
2
David Novák

Ajouter la ligne suivante dans le fichier gradle de votre projet

allprojects {
    repositories {
        .....
        ......
        maven { url 'https://maven.google.com' }  //  Add this line.
        ......
    } }
3
Sachin Tyagi

La seule solution qui a fonctionné pour moi a été d'aller à Build -> Build Types, et d'ajouter google () aux deux pensions

0
Chop Labalagun