0

I found a table here http://tools.android.com/tech-docs/new-build-system/version-compatibility but it has no entry for gradle 2.14. I am trying to build an app without an IDE with gradle

Ankush Kalra
  • 91
  • 4
  • 11

1 Answers1

0

but it has no entry for gradle 2.14

Do not use Gradle 2.14. Use Gradle 2.14.1. If Gradle issues a patch level release, that's probably due to a critical bug.

Then, you are covered by the last row in the table, simulated below because Stack Overflow does not like teh tabelz:

Android Gradle Plugin   Requires Gradle
         2.1.3+            2.14.1+

So, if you want to use Gradle 2.14.1, use version 2.1.3 or higher of the Android Plugin for Gradle.

CommonsWare
  • 986,068
  • 189
  • 2,389
  • 2,491