react-native run-android, Could not resolve all artifacts for configuration ':classpath'react-native run-android => Could not resolve all dependencies for configuration ':classpath'React Native FAILURE: Build failed with an exception. Could not resolve ':classpath'. Could not find com.android.tools.build:gradle:3.0.1Could not resolve com.android.tools.build:gradle:3.0.1gradle error in android build react nativeCould not find com.android.tools.build:gradle:4.4React native build-failed AndroidCould not resolve com.android.tools.build:gradle:3.1.4, react-native run-androidReact Native : Could not find com.android.tools.build:gradle:2.2.3A problem occurred configuring project ':react-native-vector-icons'Could not get resource 'https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle/3.2.1/gradle-3.2.1.pom'

Where is the "conservation" in the first law of thermodynamics?

(Why) May a Beit Din refuse to bury a body in order to coerce a man into giving a divorce?

Why don't we use Cavea-B

Have only girls been born for a long time in this village?

The economy of trapping

When translating the law, who ensures that the wording does not change the meaning of the law?

Is the "Find Greater Steed" Spell affected by Barovian Magic Alterations?

LeetCode: Pascal's Triangle C#

Why does my house heat up, even when it's cool outside?

Overwrite file only if data

Why is 日本 read as "nihon" but not "nitsuhon"?

What does it mean to have a subnet mask /32?

How do I request a longer than normal leave of absense period for my wedding?

Do ability scores have any effect on casting Wish spell

Is it appropriate for a prospective landlord to ask me for my credit report?

How to draw a square on cylinder?

How to write triplets in 4/4 time without using a 3 on top of the notes all the time

How to "know" if I have a passion?

In what ways can a Non-paladin access Paladin spells?

How to avoid using System.String with Rfc2898DeriveBytes in C#

Is a butterfly one or two animals?

How to compare two different formulations of a problem?

Why doesn't mathematics collapse even though humans quite often make mistakes in their proofs?

Efficiently pathfinding many flocking enemies around obstacles



react-native run-android, Could not resolve all artifacts for configuration ':classpath'


react-native run-android => Could not resolve all dependencies for configuration ':classpath'React Native FAILURE: Build failed with an exception. Could not resolve ':classpath'. Could not find com.android.tools.build:gradle:3.0.1Could not resolve com.android.tools.build:gradle:3.0.1gradle error in android build react nativeCould not find com.android.tools.build:gradle:4.4React native build-failed AndroidCould not resolve com.android.tools.build:gradle:3.1.4, react-native run-androidReact Native : Could not find com.android.tools.build:gradle:2.2.3A problem occurred configuring project ':react-native-vector-icons'Could not get resource 'https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle/3.2.1/gradle-3.2.1.pom'






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















I followed the intructions of React Native Getting Started, in the "Building Projects with Native Code" tab, for Windows and Android.



This is the content of the AwesomeProjectandroidbuild.gradle and after this there is the error I get when I execute: react-native run-android



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

buildscript
ext
buildToolsVersion = "28.0.2"
minSdkVersion = 16
compileSdkVersion = 28
targetSdkVersion = 27
supportLibVersion = "28.0.0"

repositories
google()
jcenter()

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()
google()
jcenter()
maven
// All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
url "$rootDir/../node_modules/react-native/android"





task wrapper(type: Wrapper)
gradleVersion = '4.7'
distributionUrl = distributionUrl.replace("bin", "all")



When I execute: react-native run-android, I get the following error output:



D:studiostudyreactnatvAwesomeProject>react-native run-android
JS server already running.
Building and installing the app on the device (cd android && gradlew.bat installDebug)...

FAILURE: Build failed with an exception.

* What went wrong:
A problem occurred configuring root project 'AwesomeProject'.
> Could not resolve all artifacts for configuration ':classpath'.
> Could not find com.android.tools.build:gradle:3.0.1.
Searched in the following locations:
https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle/3.0.1/gradle-3.0.1.pom
https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle/3.0.1/gradle-3.0.1.jar
https://jcenter.bintray.com/com/android/tools/build/gradle/3.0.1/gradle-3.0.1.pom
https://jcenter.bintray.com/com/android/tools/build/gradle/3.0.1/gradle-3.0.1.jar
Required by:
project :

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.

* Get more help at https://help.gradle.org

BUILD FAILED in 3s
Could not install the app on the device, read the error above for details.
Make sure you have an Android emulator running or a device connected and have
set up your Android development environment:
https://facebook.github.io/react-native/docs/getting-started.html

Command failed: gradlew.bat installDebug

Error: Command failed: gradlew.bat installDebug
at checkExecSyncError (child_process.js:616:11)
at Object.execFileSync (child_process.js:634:13)
at runOnAllDevices (D:studiostudyreactnatvAwesomeProjectnode_modulesreact-nativelocal-clirunAndroidrunAndroid.js:299:19)
at buildAndRun (D:studiostudyreactnatvAwesomeProjectnode_modulesreact-nativelocal-clirunAndroidrunAndroid.js:135:12)
at isPackagerRunning.then.result (D:studiostudyreactnatvAwesomeProjectnode_modulesreact-nativelocal-clirunAndroidrunAndroid.js:65:12)
at process._tickCallback (internal/process/next_tick.js:68:7)


D:studiostudyreactnatvAwesomeProject>


I checked this US sanctions solution but it did not worked.



What am I doing wrong ?










share|improve this question
































    0















    I followed the intructions of React Native Getting Started, in the "Building Projects with Native Code" tab, for Windows and Android.



    This is the content of the AwesomeProjectandroidbuild.gradle and after this there is the error I get when I execute: react-native run-android



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

    buildscript
    ext
    buildToolsVersion = "28.0.2"
    minSdkVersion = 16
    compileSdkVersion = 28
    targetSdkVersion = 27
    supportLibVersion = "28.0.0"

    repositories
    google()
    jcenter()

    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()
    google()
    jcenter()
    maven
    // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
    url "$rootDir/../node_modules/react-native/android"





    task wrapper(type: Wrapper)
    gradleVersion = '4.7'
    distributionUrl = distributionUrl.replace("bin", "all")



    When I execute: react-native run-android, I get the following error output:



    D:studiostudyreactnatvAwesomeProject>react-native run-android
    JS server already running.
    Building and installing the app on the device (cd android && gradlew.bat installDebug)...

    FAILURE: Build failed with an exception.

    * What went wrong:
    A problem occurred configuring root project 'AwesomeProject'.
    > Could not resolve all artifacts for configuration ':classpath'.
    > Could not find com.android.tools.build:gradle:3.0.1.
    Searched in the following locations:
    https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle/3.0.1/gradle-3.0.1.pom
    https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle/3.0.1/gradle-3.0.1.jar
    https://jcenter.bintray.com/com/android/tools/build/gradle/3.0.1/gradle-3.0.1.pom
    https://jcenter.bintray.com/com/android/tools/build/gradle/3.0.1/gradle-3.0.1.jar
    Required by:
    project :

    * Try:
    Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.

    * Get more help at https://help.gradle.org

    BUILD FAILED in 3s
    Could not install the app on the device, read the error above for details.
    Make sure you have an Android emulator running or a device connected and have
    set up your Android development environment:
    https://facebook.github.io/react-native/docs/getting-started.html

    Command failed: gradlew.bat installDebug

    Error: Command failed: gradlew.bat installDebug
    at checkExecSyncError (child_process.js:616:11)
    at Object.execFileSync (child_process.js:634:13)
    at runOnAllDevices (D:studiostudyreactnatvAwesomeProjectnode_modulesreact-nativelocal-clirunAndroidrunAndroid.js:299:19)
    at buildAndRun (D:studiostudyreactnatvAwesomeProjectnode_modulesreact-nativelocal-clirunAndroidrunAndroid.js:135:12)
    at isPackagerRunning.then.result (D:studiostudyreactnatvAwesomeProjectnode_modulesreact-nativelocal-clirunAndroidrunAndroid.js:65:12)
    at process._tickCallback (internal/process/next_tick.js:68:7)


    D:studiostudyreactnatvAwesomeProject>


    I checked this US sanctions solution but it did not worked.



    What am I doing wrong ?










    share|improve this question




























      0












      0








      0








      I followed the intructions of React Native Getting Started, in the "Building Projects with Native Code" tab, for Windows and Android.



      This is the content of the AwesomeProjectandroidbuild.gradle and after this there is the error I get when I execute: react-native run-android



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

      buildscript
      ext
      buildToolsVersion = "28.0.2"
      minSdkVersion = 16
      compileSdkVersion = 28
      targetSdkVersion = 27
      supportLibVersion = "28.0.0"

      repositories
      google()
      jcenter()

      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()
      google()
      jcenter()
      maven
      // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
      url "$rootDir/../node_modules/react-native/android"





      task wrapper(type: Wrapper)
      gradleVersion = '4.7'
      distributionUrl = distributionUrl.replace("bin", "all")



      When I execute: react-native run-android, I get the following error output:



      D:studiostudyreactnatvAwesomeProject>react-native run-android
      JS server already running.
      Building and installing the app on the device (cd android && gradlew.bat installDebug)...

      FAILURE: Build failed with an exception.

      * What went wrong:
      A problem occurred configuring root project 'AwesomeProject'.
      > Could not resolve all artifacts for configuration ':classpath'.
      > Could not find com.android.tools.build:gradle:3.0.1.
      Searched in the following locations:
      https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle/3.0.1/gradle-3.0.1.pom
      https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle/3.0.1/gradle-3.0.1.jar
      https://jcenter.bintray.com/com/android/tools/build/gradle/3.0.1/gradle-3.0.1.pom
      https://jcenter.bintray.com/com/android/tools/build/gradle/3.0.1/gradle-3.0.1.jar
      Required by:
      project :

      * Try:
      Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.

      * Get more help at https://help.gradle.org

      BUILD FAILED in 3s
      Could not install the app on the device, read the error above for details.
      Make sure you have an Android emulator running or a device connected and have
      set up your Android development environment:
      https://facebook.github.io/react-native/docs/getting-started.html

      Command failed: gradlew.bat installDebug

      Error: Command failed: gradlew.bat installDebug
      at checkExecSyncError (child_process.js:616:11)
      at Object.execFileSync (child_process.js:634:13)
      at runOnAllDevices (D:studiostudyreactnatvAwesomeProjectnode_modulesreact-nativelocal-clirunAndroidrunAndroid.js:299:19)
      at buildAndRun (D:studiostudyreactnatvAwesomeProjectnode_modulesreact-nativelocal-clirunAndroidrunAndroid.js:135:12)
      at isPackagerRunning.then.result (D:studiostudyreactnatvAwesomeProjectnode_modulesreact-nativelocal-clirunAndroidrunAndroid.js:65:12)
      at process._tickCallback (internal/process/next_tick.js:68:7)


      D:studiostudyreactnatvAwesomeProject>


      I checked this US sanctions solution but it did not worked.



      What am I doing wrong ?










      share|improve this question
















      I followed the intructions of React Native Getting Started, in the "Building Projects with Native Code" tab, for Windows and Android.



      This is the content of the AwesomeProjectandroidbuild.gradle and after this there is the error I get when I execute: react-native run-android



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

      buildscript
      ext
      buildToolsVersion = "28.0.2"
      minSdkVersion = 16
      compileSdkVersion = 28
      targetSdkVersion = 27
      supportLibVersion = "28.0.0"

      repositories
      google()
      jcenter()

      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()
      google()
      jcenter()
      maven
      // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
      url "$rootDir/../node_modules/react-native/android"





      task wrapper(type: Wrapper)
      gradleVersion = '4.7'
      distributionUrl = distributionUrl.replace("bin", "all")



      When I execute: react-native run-android, I get the following error output:



      D:studiostudyreactnatvAwesomeProject>react-native run-android
      JS server already running.
      Building and installing the app on the device (cd android && gradlew.bat installDebug)...

      FAILURE: Build failed with an exception.

      * What went wrong:
      A problem occurred configuring root project 'AwesomeProject'.
      > Could not resolve all artifacts for configuration ':classpath'.
      > Could not find com.android.tools.build:gradle:3.0.1.
      Searched in the following locations:
      https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle/3.0.1/gradle-3.0.1.pom
      https://dl.google.com/dl/android/maven2/com/android/tools/build/gradle/3.0.1/gradle-3.0.1.jar
      https://jcenter.bintray.com/com/android/tools/build/gradle/3.0.1/gradle-3.0.1.pom
      https://jcenter.bintray.com/com/android/tools/build/gradle/3.0.1/gradle-3.0.1.jar
      Required by:
      project :

      * Try:
      Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.

      * Get more help at https://help.gradle.org

      BUILD FAILED in 3s
      Could not install the app on the device, read the error above for details.
      Make sure you have an Android emulator running or a device connected and have
      set up your Android development environment:
      https://facebook.github.io/react-native/docs/getting-started.html

      Command failed: gradlew.bat installDebug

      Error: Command failed: gradlew.bat installDebug
      at checkExecSyncError (child_process.js:616:11)
      at Object.execFileSync (child_process.js:634:13)
      at runOnAllDevices (D:studiostudyreactnatvAwesomeProjectnode_modulesreact-nativelocal-clirunAndroidrunAndroid.js:299:19)
      at buildAndRun (D:studiostudyreactnatvAwesomeProjectnode_modulesreact-nativelocal-clirunAndroidrunAndroid.js:135:12)
      at isPackagerRunning.then.result (D:studiostudyreactnatvAwesomeProjectnode_modulesreact-nativelocal-clirunAndroidrunAndroid.js:65:12)
      at process._tickCallback (internal/process/next_tick.js:68:7)


      D:studiostudyreactnatvAwesomeProject>


      I checked this US sanctions solution but it did not worked.



      What am I doing wrong ?







      android react-native build.gradle






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Mar 6 at 22:55









      cod-e-rection

      8741 gold badge9 silver badges21 bronze badges




      8741 gold badge9 silver badges21 bronze badges










      asked Mar 6 at 16:17









      eliastgeliastg

      166 bronze badges




      166 bronze badges

























          2 Answers
          2






          active

          oldest

          votes


















          1













          1) I used a proxy and defined the variables http_proxy and http_proxy on the terminal.



          2) Then run the "react-native run-android".



          The problem was caused by my location.



          Thank to all who answer.



          Best regards.






          share|improve this answer
































            0













            You have to change this line at your project :



            dependencies 
            classpath 'com.android.tools.build:gradle:3.3.2'






            share|improve this answer

























            • Thank you for answer. I made the change you sugested, but I got a similar error: * What went wrong: A problem occurred configuring root project 'AwesomeProject'. > Could not resolve all artifacts for configuration ':classpath'. > Could not resolve com.android.tools.build:gradle:3.0.1. Required by: project : > Could not resolve com.android.tools.build:gradle:3.0.1. > Could not get resource 'dl.google.com/dl/android/maven2/com/android/tools/build/gradle/…'.

              – eliastg
              Mar 27 at 15:03












            • @eliastg you have to change the version as i stated, at your "build.gradle" file. Did you managed to do it?

              – cod-e-rection
              Mar 28 at 10:38














            Your Answer






            StackExchange.ifUsing("editor", function ()
            StackExchange.using("externalEditor", function ()
            StackExchange.using("snippets", function ()
            StackExchange.snippets.init();
            );
            );
            , "code-snippets");

            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "1"
            ;
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function()
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled)
            StackExchange.using("snippets", function()
            createEditor();
            );

            else
            createEditor();

            );

            function createEditor()
            StackExchange.prepareEditor(
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader:
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            ,
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );













            draft saved

            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55027644%2freact-native-run-android-could-not-resolve-all-artifacts-for-configuration-cl%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            2 Answers
            2






            active

            oldest

            votes








            2 Answers
            2






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            1













            1) I used a proxy and defined the variables http_proxy and http_proxy on the terminal.



            2) Then run the "react-native run-android".



            The problem was caused by my location.



            Thank to all who answer.



            Best regards.






            share|improve this answer





























              1













              1) I used a proxy and defined the variables http_proxy and http_proxy on the terminal.



              2) Then run the "react-native run-android".



              The problem was caused by my location.



              Thank to all who answer.



              Best regards.






              share|improve this answer



























                1












                1








                1







                1) I used a proxy and defined the variables http_proxy and http_proxy on the terminal.



                2) Then run the "react-native run-android".



                The problem was caused by my location.



                Thank to all who answer.



                Best regards.






                share|improve this answer













                1) I used a proxy and defined the variables http_proxy and http_proxy on the terminal.



                2) Then run the "react-native run-android".



                The problem was caused by my location.



                Thank to all who answer.



                Best regards.







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Mar 27 at 15:48









                eliastgeliastg

                166 bronze badges




                166 bronze badges


























                    0













                    You have to change this line at your project :



                    dependencies 
                    classpath 'com.android.tools.build:gradle:3.3.2'






                    share|improve this answer

























                    • Thank you for answer. I made the change you sugested, but I got a similar error: * What went wrong: A problem occurred configuring root project 'AwesomeProject'. > Could not resolve all artifacts for configuration ':classpath'. > Could not resolve com.android.tools.build:gradle:3.0.1. Required by: project : > Could not resolve com.android.tools.build:gradle:3.0.1. > Could not get resource 'dl.google.com/dl/android/maven2/com/android/tools/build/gradle/…'.

                      – eliastg
                      Mar 27 at 15:03












                    • @eliastg you have to change the version as i stated, at your "build.gradle" file. Did you managed to do it?

                      – cod-e-rection
                      Mar 28 at 10:38
















                    0













                    You have to change this line at your project :



                    dependencies 
                    classpath 'com.android.tools.build:gradle:3.3.2'






                    share|improve this answer

























                    • Thank you for answer. I made the change you sugested, but I got a similar error: * What went wrong: A problem occurred configuring root project 'AwesomeProject'. > Could not resolve all artifacts for configuration ':classpath'. > Could not resolve com.android.tools.build:gradle:3.0.1. Required by: project : > Could not resolve com.android.tools.build:gradle:3.0.1. > Could not get resource 'dl.google.com/dl/android/maven2/com/android/tools/build/gradle/…'.

                      – eliastg
                      Mar 27 at 15:03












                    • @eliastg you have to change the version as i stated, at your "build.gradle" file. Did you managed to do it?

                      – cod-e-rection
                      Mar 28 at 10:38














                    0












                    0








                    0







                    You have to change this line at your project :



                    dependencies 
                    classpath 'com.android.tools.build:gradle:3.3.2'






                    share|improve this answer













                    You have to change this line at your project :



                    dependencies 
                    classpath 'com.android.tools.build:gradle:3.3.2'







                    share|improve this answer












                    share|improve this answer



                    share|improve this answer










                    answered Mar 6 at 16:22









                    cod-e-rectioncod-e-rection

                    8741 gold badge9 silver badges21 bronze badges




                    8741 gold badge9 silver badges21 bronze badges















                    • Thank you for answer. I made the change you sugested, but I got a similar error: * What went wrong: A problem occurred configuring root project 'AwesomeProject'. > Could not resolve all artifacts for configuration ':classpath'. > Could not resolve com.android.tools.build:gradle:3.0.1. Required by: project : > Could not resolve com.android.tools.build:gradle:3.0.1. > Could not get resource 'dl.google.com/dl/android/maven2/com/android/tools/build/gradle/…'.

                      – eliastg
                      Mar 27 at 15:03












                    • @eliastg you have to change the version as i stated, at your "build.gradle" file. Did you managed to do it?

                      – cod-e-rection
                      Mar 28 at 10:38


















                    • Thank you for answer. I made the change you sugested, but I got a similar error: * What went wrong: A problem occurred configuring root project 'AwesomeProject'. > Could not resolve all artifacts for configuration ':classpath'. > Could not resolve com.android.tools.build:gradle:3.0.1. Required by: project : > Could not resolve com.android.tools.build:gradle:3.0.1. > Could not get resource 'dl.google.com/dl/android/maven2/com/android/tools/build/gradle/…'.

                      – eliastg
                      Mar 27 at 15:03












                    • @eliastg you have to change the version as i stated, at your "build.gradle" file. Did you managed to do it?

                      – cod-e-rection
                      Mar 28 at 10:38

















                    Thank you for answer. I made the change you sugested, but I got a similar error: * What went wrong: A problem occurred configuring root project 'AwesomeProject'. > Could not resolve all artifacts for configuration ':classpath'. > Could not resolve com.android.tools.build:gradle:3.0.1. Required by: project : > Could not resolve com.android.tools.build:gradle:3.0.1. > Could not get resource 'dl.google.com/dl/android/maven2/com/android/tools/build/gradle/…'.

                    – eliastg
                    Mar 27 at 15:03






                    Thank you for answer. I made the change you sugested, but I got a similar error: * What went wrong: A problem occurred configuring root project 'AwesomeProject'. > Could not resolve all artifacts for configuration ':classpath'. > Could not resolve com.android.tools.build:gradle:3.0.1. Required by: project : > Could not resolve com.android.tools.build:gradle:3.0.1. > Could not get resource 'dl.google.com/dl/android/maven2/com/android/tools/build/gradle/…'.

                    – eliastg
                    Mar 27 at 15:03














                    @eliastg you have to change the version as i stated, at your "build.gradle" file. Did you managed to do it?

                    – cod-e-rection
                    Mar 28 at 10:38






                    @eliastg you have to change the version as i stated, at your "build.gradle" file. Did you managed to do it?

                    – cod-e-rection
                    Mar 28 at 10:38


















                    draft saved

                    draft discarded
















































                    Thanks for contributing an answer to Stack Overflow!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid


                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.

                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55027644%2freact-native-run-android-could-not-resolve-all-artifacts-for-configuration-cl%23new-answer', 'question_page');

                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

                    용인 삼성생명 블루밍스 목차 통계 역대 감독 선수단 응원단 경기장 같이 보기 외부 링크 둘러보기 메뉴samsungblueminx.comeh선수 명단용인 삼성생명 블루밍스용인 삼성생명 블루밍스ehsamsungblueminx.comeheheheh

                    155 수학 과학 기타 둘러보기 메뉴eh추가해eh문서를 완성해