LoginSignup
2
0

More than 5 years have passed since last update.

ionic Error まとめ

Posted at

IonicでAndroid用のapkビルド時に発生するERROR時の対処法

プラグインによるバージョンが原因らしく、以下のエラーが発生することがある。
その場合の対処法。

Error:(20, 1) A problem occurred evaluating root project 'android'.
  > Failed to apply plugin [id 'com.android.application']
  > Minimum supported Gradle version is 3.3. Current version is 2.14.1. If using the gradle wrapper,
  try editing the distributionUrl in /< App Pash >/platforms/android/gradle/wrapper/gradle-wrapper.properties to gradle-3.3-all.zip

下のfile内を書き換える。

  > /< App Pash >/platforms/android/cordova/lib/builders/GradleBuilder.js

...
// var distributionUrl = process.env['CORDOVA_ANDROID_GRADLE_DISTRIBUTION_URL'] || 'https\\://services.gradle.org/distributions/gradle-2.14.1-all.zip';
   var distributionUrl = process.env['CORDOVA_ANDROID_GRADLE_DISTRIBUTION_URL'] || 'https\\://services.gradle.org/distributions/gradle-3.3-all.zip';
...

※今後対処したエラーがあれば追加する予定。

参照記事 Link

参照した記事: CordovaでGradleのバージョンが低いと怒られた

2
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0