Creo el proyecto iónico 2 y agrego el complemento cordova de diagnóstico de esta manera:
ionic plugin add cordova.plugins.diagnostic
npm install --save @ionic-native/diagnostic
y agregue la plataforma de Android de esta manera:
ionic platform add android@latest
pero cuando compila con ionic build android
consola dame este error:
Error: Could not find an installed version of Gradle either in Android Studio,
or on your system to install the gradle wrapper. Please include gradle
in your path, or install Android Studio
e intento descargar manualmente gradle.3.3-all.zip y cambiar esta distribuciónUrl var en la plataforma / android / cordova / lib / builders / GradleBuilder.js
var distributionUrl = process.env['CORDOVA_ANDROID_GRADLE_DISTRIBUTION_URL'] || 'https\\://services.gradle.org/distributions/gradle-3.3-all.zip'
a:
var distributionUrl = process.env['CORDOVA_ANDROID_GRADLE_DISTRIBUTION_URL'] || 'file:///E:/gradles/gradle-3.3-all.zip';
pero no funciona y la consola me da el último error.
No sé cómo agregar gradle para Android @ última versión