[SOLVED] Android store update successfully pushed but not noticed on devices

Specifying a higher Android versionCode solve my issue.

To do so, I had to add an attribute android-versionCode=“my number” in element widget of config.xml

<widget id="com.myApp" version="0.1.0" android-versionCode="10010">

Like I said before, the downside is now that furthermore the version number I will have to think to change manually the Android versionCode too, but rather like that downside at not being able to notice my user there is a new version of the app.

P.S.: Side note, Android console allowed me to publish again a same version number (example 0.1.0 which was already in store but was not noticed) but with a higher version code (1010 to 10010)