AndroidStudio 3.0 compatible gradle build tool












1














What is the highest version of



com.android.tools.build:gradle


that Android Studio 3.0 can support?



I'm currently using



classpath 'com.android.tools.build:gradle:3.1.0'


with gradle version 4.4.



I tried using



classpath 'com.android.tools.build:gradle:3.2.1'


but AndroidStudio warns about compatibility with gradle version 4.4, even when it's already set to 4.4. I tried using gradle 4.6, 4.10, but the warning keeps popping up. Is this a bug in AndroidStudio 3.0?



I'm asking this question because I'm trying to use androidx.databinding on AndroidStudio 3.0, and there hasn't been many results when googling this topic. Would appreciate any comments about this issue.



Thanks.










share|improve this question



























    1














    What is the highest version of



    com.android.tools.build:gradle


    that Android Studio 3.0 can support?



    I'm currently using



    classpath 'com.android.tools.build:gradle:3.1.0'


    with gradle version 4.4.



    I tried using



    classpath 'com.android.tools.build:gradle:3.2.1'


    but AndroidStudio warns about compatibility with gradle version 4.4, even when it's already set to 4.4. I tried using gradle 4.6, 4.10, but the warning keeps popping up. Is this a bug in AndroidStudio 3.0?



    I'm asking this question because I'm trying to use androidx.databinding on AndroidStudio 3.0, and there hasn't been many results when googling this topic. Would appreciate any comments about this issue.



    Thanks.










    share|improve this question

























      1












      1








      1







      What is the highest version of



      com.android.tools.build:gradle


      that Android Studio 3.0 can support?



      I'm currently using



      classpath 'com.android.tools.build:gradle:3.1.0'


      with gradle version 4.4.



      I tried using



      classpath 'com.android.tools.build:gradle:3.2.1'


      but AndroidStudio warns about compatibility with gradle version 4.4, even when it's already set to 4.4. I tried using gradle 4.6, 4.10, but the warning keeps popping up. Is this a bug in AndroidStudio 3.0?



      I'm asking this question because I'm trying to use androidx.databinding on AndroidStudio 3.0, and there hasn't been many results when googling this topic. Would appreciate any comments about this issue.



      Thanks.










      share|improve this question













      What is the highest version of



      com.android.tools.build:gradle


      that Android Studio 3.0 can support?



      I'm currently using



      classpath 'com.android.tools.build:gradle:3.1.0'


      with gradle version 4.4.



      I tried using



      classpath 'com.android.tools.build:gradle:3.2.1'


      but AndroidStudio warns about compatibility with gradle version 4.4, even when it's already set to 4.4. I tried using gradle 4.6, 4.10, but the warning keeps popping up. Is this a bug in AndroidStudio 3.0?



      I'm asking this question because I'm trying to use androidx.databinding on AndroidStudio 3.0, and there hasn't been many results when googling this topic. Would appreciate any comments about this issue.



      Thanks.







      gradle android-studio-3.0 androidx






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 21 '18 at 9:50









      uanuan

      467




      467
























          1 Answer
          1






          active

          oldest

          votes


















          0














          I have an Android project which is successfully building. I'm using the latest version of Android Studio (3.2.1), Gradle 4.7 and Gradle build tools 3.2.1. All working well.



          build.gradle (buildscript subsection):



          dependencies {
          classpath 'com.android.tools.build:gradle:3.2.1'
          classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"

          // NOTE: Do not place your application dependencies here; they belong
          // in the individual module build.gradle files
          }


          gradle/wrapper/gradle-wrapper.properties:



          distributionBase=GRADLE_USER_HOME
          distributionPath=wrapper/dists
          zipStoreBase=GRADLE_USER_HOME
          zipStorePath=wrapper/dists
          distributionUrl=https://services.gradle.org/distributions/gradle-4.7-all.zip


          So maybe your issue is that you need to upgrade your Gradle wrapper to download Gradle 4.7 instead?






          share|improve this answer

















          • 1




            Thanks EM-Creations for your reply. The thing is, I need to use AndroidStudio 3.0 (because the project uses Google Cloud Endpoints). So I want to know the compatible libraries that I can use in 3.0. So far, the other androidx libraries can be used, but I am having problems with androidx.databinding. The current configuration build has an error.
            – uan
            Nov 21 '18 at 14:48










          • @uan Are you able to use Gradle 4.7 in Android 3.0? Try changing to gradle-wrapper.properties file.
            – EM-Creations
            Nov 22 '18 at 8:11











          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%2f53409291%2fandroidstudio-3-0-compatible-gradle-build-tool%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          0














          I have an Android project which is successfully building. I'm using the latest version of Android Studio (3.2.1), Gradle 4.7 and Gradle build tools 3.2.1. All working well.



          build.gradle (buildscript subsection):



          dependencies {
          classpath 'com.android.tools.build:gradle:3.2.1'
          classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"

          // NOTE: Do not place your application dependencies here; they belong
          // in the individual module build.gradle files
          }


          gradle/wrapper/gradle-wrapper.properties:



          distributionBase=GRADLE_USER_HOME
          distributionPath=wrapper/dists
          zipStoreBase=GRADLE_USER_HOME
          zipStorePath=wrapper/dists
          distributionUrl=https://services.gradle.org/distributions/gradle-4.7-all.zip


          So maybe your issue is that you need to upgrade your Gradle wrapper to download Gradle 4.7 instead?






          share|improve this answer

















          • 1




            Thanks EM-Creations for your reply. The thing is, I need to use AndroidStudio 3.0 (because the project uses Google Cloud Endpoints). So I want to know the compatible libraries that I can use in 3.0. So far, the other androidx libraries can be used, but I am having problems with androidx.databinding. The current configuration build has an error.
            – uan
            Nov 21 '18 at 14:48










          • @uan Are you able to use Gradle 4.7 in Android 3.0? Try changing to gradle-wrapper.properties file.
            – EM-Creations
            Nov 22 '18 at 8:11
















          0














          I have an Android project which is successfully building. I'm using the latest version of Android Studio (3.2.1), Gradle 4.7 and Gradle build tools 3.2.1. All working well.



          build.gradle (buildscript subsection):



          dependencies {
          classpath 'com.android.tools.build:gradle:3.2.1'
          classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"

          // NOTE: Do not place your application dependencies here; they belong
          // in the individual module build.gradle files
          }


          gradle/wrapper/gradle-wrapper.properties:



          distributionBase=GRADLE_USER_HOME
          distributionPath=wrapper/dists
          zipStoreBase=GRADLE_USER_HOME
          zipStorePath=wrapper/dists
          distributionUrl=https://services.gradle.org/distributions/gradle-4.7-all.zip


          So maybe your issue is that you need to upgrade your Gradle wrapper to download Gradle 4.7 instead?






          share|improve this answer

















          • 1




            Thanks EM-Creations for your reply. The thing is, I need to use AndroidStudio 3.0 (because the project uses Google Cloud Endpoints). So I want to know the compatible libraries that I can use in 3.0. So far, the other androidx libraries can be used, but I am having problems with androidx.databinding. The current configuration build has an error.
            – uan
            Nov 21 '18 at 14:48










          • @uan Are you able to use Gradle 4.7 in Android 3.0? Try changing to gradle-wrapper.properties file.
            – EM-Creations
            Nov 22 '18 at 8:11














          0












          0








          0






          I have an Android project which is successfully building. I'm using the latest version of Android Studio (3.2.1), Gradle 4.7 and Gradle build tools 3.2.1. All working well.



          build.gradle (buildscript subsection):



          dependencies {
          classpath 'com.android.tools.build:gradle:3.2.1'
          classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"

          // NOTE: Do not place your application dependencies here; they belong
          // in the individual module build.gradle files
          }


          gradle/wrapper/gradle-wrapper.properties:



          distributionBase=GRADLE_USER_HOME
          distributionPath=wrapper/dists
          zipStoreBase=GRADLE_USER_HOME
          zipStorePath=wrapper/dists
          distributionUrl=https://services.gradle.org/distributions/gradle-4.7-all.zip


          So maybe your issue is that you need to upgrade your Gradle wrapper to download Gradle 4.7 instead?






          share|improve this answer












          I have an Android project which is successfully building. I'm using the latest version of Android Studio (3.2.1), Gradle 4.7 and Gradle build tools 3.2.1. All working well.



          build.gradle (buildscript subsection):



          dependencies {
          classpath 'com.android.tools.build:gradle:3.2.1'
          classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"

          // NOTE: Do not place your application dependencies here; they belong
          // in the individual module build.gradle files
          }


          gradle/wrapper/gradle-wrapper.properties:



          distributionBase=GRADLE_USER_HOME
          distributionPath=wrapper/dists
          zipStoreBase=GRADLE_USER_HOME
          zipStorePath=wrapper/dists
          distributionUrl=https://services.gradle.org/distributions/gradle-4.7-all.zip


          So maybe your issue is that you need to upgrade your Gradle wrapper to download Gradle 4.7 instead?







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Nov 21 '18 at 14:37









          EM-CreationsEM-Creations

          2,98332546




          2,98332546








          • 1




            Thanks EM-Creations for your reply. The thing is, I need to use AndroidStudio 3.0 (because the project uses Google Cloud Endpoints). So I want to know the compatible libraries that I can use in 3.0. So far, the other androidx libraries can be used, but I am having problems with androidx.databinding. The current configuration build has an error.
            – uan
            Nov 21 '18 at 14:48










          • @uan Are you able to use Gradle 4.7 in Android 3.0? Try changing to gradle-wrapper.properties file.
            – EM-Creations
            Nov 22 '18 at 8:11














          • 1




            Thanks EM-Creations for your reply. The thing is, I need to use AndroidStudio 3.0 (because the project uses Google Cloud Endpoints). So I want to know the compatible libraries that I can use in 3.0. So far, the other androidx libraries can be used, but I am having problems with androidx.databinding. The current configuration build has an error.
            – uan
            Nov 21 '18 at 14:48










          • @uan Are you able to use Gradle 4.7 in Android 3.0? Try changing to gradle-wrapper.properties file.
            – EM-Creations
            Nov 22 '18 at 8:11








          1




          1




          Thanks EM-Creations for your reply. The thing is, I need to use AndroidStudio 3.0 (because the project uses Google Cloud Endpoints). So I want to know the compatible libraries that I can use in 3.0. So far, the other androidx libraries can be used, but I am having problems with androidx.databinding. The current configuration build has an error.
          – uan
          Nov 21 '18 at 14:48




          Thanks EM-Creations for your reply. The thing is, I need to use AndroidStudio 3.0 (because the project uses Google Cloud Endpoints). So I want to know the compatible libraries that I can use in 3.0. So far, the other androidx libraries can be used, but I am having problems with androidx.databinding. The current configuration build has an error.
          – uan
          Nov 21 '18 at 14:48












          @uan Are you able to use Gradle 4.7 in Android 3.0? Try changing to gradle-wrapper.properties file.
          – EM-Creations
          Nov 22 '18 at 8:11




          @uan Are you able to use Gradle 4.7 in Android 3.0? Try changing to gradle-wrapper.properties file.
          – EM-Creations
          Nov 22 '18 at 8:11


















          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.





          Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


          Please pay close attention to the following guidance:


          • 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%2f53409291%2fandroidstudio-3-0-compatible-gradle-build-tool%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

          Wiesbaden

          Marschland

          Dieringhausen