Greetings, I am facing an issue while trying to compile my Android app using gulp with the command: gulp --prod -p android. The problem arises when comparing the file size of the generated APK between myself and a colleague. When my colleague compiles, the APK weighs 20 MB, but when I compile it, the weight is only 1.7 MB. We both have the same code from our SVN repository, followed by running npm install and bower install.
To help identify the problem, I have included the content of the gulpfile.js below:
'use strict';
// Code continues...
Additionally, here is the content of the package.json file:
{
"name": "myApp",
"version": "1.0.0",
// Other dependencies...
}
Lastly, you can find the compilation log below:
[15:49:52] Using gulpfile D:\Profiles\bgouygou\Workspaces\Eclipse_IDE_for_Java_EE_Developers_442\B0001\gulpfile.js
[15:49:52] Starting 'default'...
// Compilation steps...
BUILD SUCCESSFUL
Total time: 17.387 secs
[15:50:43] Finished 'package' after 21 s
[15:50:43] Finished 'default' after 51 s
If further information is required to troubleshoot the issue, please let me know.