【Cordova】cordova-plugin-fileプラグインアップデートの問題点

cordova-plugin-fileプラグインがやっとアップデートされたようなのでインストールしたところ、以下のようなエラーが発生しました。

xxxx@yyyy SimpleWeightManager % cordova plugin add https://github.com/apache/cordova-plugin-file
Installing "cordova-plugin-file" for android
Plugin doesn't support this project's cordova-android version. cordova-android: 9.1.0, failed version requirement: >=10.0.0
Skipping 'cordova-plugin-file' for android
Adding cordova-plugin-file to package.json
[Gradle Properties] Detected Gradle property "android.useAndroidX" with the value of "true", Cordova's recommended value is "false"
[Gradle Properties] Detected Gradle property "android.enableJetifier" with the value of "true", Cordova's recommended value is "false"
xxxx@yyyy SimpleWeightManager % 

Continue reading

【Cordova】Cordova 10「cordova-plugin-crypt-file」Using “requireCordovaModule” to load non-cordova module “path” is not supported.エラー回避方法

今回リリースした「シンプル商品マスタ作成」(11/07時点で審査中)は、Cordova 10で開発を行いました。
その際にcordova-plugin-crypt-fileプラグインにおいて、以下のエラーが発生しました。

Using “requireCordovaModule” to load non-cordova module “path” is not supported. Instead, add this module to your dependencies and use regular “require” to load it.

今回はその対処方法について説明します。
Continue reading

【Cordova】Ver.8.1.2「cordova-plugin-crypt-file」ENOENT: no such file or directory, open ‘DecryptResource.java’ エラー回避方法 その2

2019/07/01現在、Cordova Ver.8.1.2において、「cordova-plugin-crypt-file」プラグインを使用した場合、ビルドにおいて下記のエラーが発生します。
このエラーの回避方法について説明します。

ENOENT: no such file or directory, open ‘C:\xxxxx\yyyyy\platforms\android\src\com\tkyaji\cordova\DecryptResource.java’


Continue reading

【Cordova】Ver.6.3.1「cordova-plugin-crypt-file」ENOENT: no such file or directory, open ‘DecryptResource.java’ エラー回避方法

2018/12/13現在、Visual Studio 2017 Community Cordova Ver.6.3.1において、「cordova-plugin-crypt-file」プラグインを使用した場合、ビルドにおいて下記のエラーが発生します。
このエラーの回避方法について説明します。
※12/13 9:17、この件に関してメールをいただきましたが、返信先のメールアドレスが間違っているため、返答することができませんでした。
こちらに返答内容を記載させていただきます。

ENOENT: no such file or directory, open ‘C:\xxxxx\yyyyy\platforms\android\app\src\main\java\com\tkyaji\cordova\DecryptResource.java’



Continue reading

【Cordova】Ver.8.1.2「cordova-plugin-crypt-file」ENOENT: no such file or directory, open ‘DecryptResource.java’ エラー回避方法

2018/11/19現在、Cordova Ver.8.1.2において、「cordova-plugin-crypt-file」プラグインを使用した場合、ビルドにおいて下記のエラーが発生します。
このエラーの回避方法について説明します。

ENOENT: no such file or directory, open ‘C:\xxxxx\yyyyy\platforms\android\src\com\tkyaji\cordova\DecryptResource.java’



Continue reading

【Monaca】リバースエンジニアリング対策「cordova-plugin-crypt-file」注意点

MonacaやCordovaで開発したアプリの最大のデメリットは、apkファイルを抽出してZIPで解凍すると、HTMLやCSS、JavaScriptなどのコード、ファイル構成が丸見えとなってしまう点である。
つまり、時間をかけて必死に開発を行っても、ZIPで解凍すれば簡単にコピーされてしまうし、コードに記載したクライアントキーやAPIキーなどの情報も知られてしまう。
Continue reading