【Cordova】ビルド時にgradleの「journal-1.lock」ファイルロックが発生した場合の対処方法

Android版のアプリ開発中に、gradleのファイルロックによるビルドエラーがたびたび発生します。

「journal-1.lock」のほかに「modules-2.lock」「jars-9.lock」など複数ファイルがファイルロックの対象になります。
今回は、gradleのファイルロックが発生した場合の対処方法を紹介します。

Continue reading

【Cordova】「java.lang.AssertionError: annotationType(): unrecognized Attribute name MODULE 」エラーの解決方法について

M1 MacBook AirにCordovaの開発環境を構築していますが、Android版のビルドで以下のエラーが発生しました。

java.lang.AssertionError: annotationType(): unrecognized Attribute name MODULE (class com.sun.tools.javac.util.UnsharedNameTable$NameImpl)

どうやら、Apple M1チップの場合、Oracleが提供しているJDKでは動かないようです。
今回は、このエラーの解決方法について説明します。

Continue reading

【Cordova】Cordova 11のビルドにおいて「Cannot read properties of undefined (reading ‘length’)」エラーを解決する方法

先月中古で購入したEPSON Endeavor ST190Eに、Cordova 11のビルド環境を構築しましたが、下記エラーが発生してビルドできない状態となりました。

Cannot read properties of undefined (reading 'length')

今回は、このエラーの解決方法について説明します。

Continue reading

【Cordova】cordova-diagnostic-pluginプラグインのビルドエラー

シンプル体重管理の不具合などに対応したAndroid版のデバッグビルドを行ったところ、以下のようなエラーが発生しました。

FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task ‘:app:processDebugResources’.
> A failure occurred while executing com.android.build.gradle.internal.tasks.Workers$ActionFacade
> Android resource linking failed
/***/***/.gradle/caches/transforms-2/files-2.1/082fd8435f96aa3f026dd001121230f9/core-1.7.0-beta02/res/values/values.xml:105:5-114:25: AAPT: error: resource android:attr/lStar not found.

* Try:
Run with –stacktrace option to get the stack trace. Run with –info or –debug option to get more log output. Run with –scan to get full insights.

* Get more help at https://help.gradle.org

BUILD FAILED in 9s
20 actionable tasks: 20 executed
Command failed with exit code 1: /***/***/App/SimpleWeightManager/platforms/android/gradlew cdvBuildDebug -b /***/***/App/SimpleWeightManager/platforms/android/build.gradle

Continue reading