Ich erstelle ein ionic 2-Projekt und füge ein diagnostisches Cordova-Plugin wie folgt hinzu:
ionic plugin add cordova.plugins.diagnostic
npm install --save @ionic-native/diagnostic
und fügen Sie Android-Plattform wie folgt hinzu:
ionic platform add android@latest
aber wenn mit ionic build android
Konsole gebaut, gib mir diesen Fehler:
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
und ich versuche, manualy gradle.3.3-all.zip herunterzuladen und diese Distribution zu ändernUrl var in platform / 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'
zu:
var distributionUrl = process.env['CORDOVA_ANDROID_GRADLE_DISTRIBUTION_URL'] || 'file:///E:/gradles/gradle-3.3-all.zip';
aber nicht funktioniert und Konsole geben mir letzten Fehler.
Ich weiß nicht, wie ich Gradle für Android @ neueste Version hinzufügen soll