I'm starting to develop and android app using Cordova 5.0.0 (cordova -v prints 5.0.0), and testing it on a Moto Razr D1 with Android 4.1.2. Under Windows 7, btw.
cordova build
and manually copying the platforms/android/build/output/apk/android-degug.apk to the SD and installing works fine.
cordova emulate android
runs fine on emulator with android version >4.1.2
cordova run android
builds successfully, says using apk platforms/android/build/output/apk/android-debugger.apk, which seems ok, installing app, launching and LAUNCH SUCCESS. however as you can see in this screenshot
This "WALLPAPER/MANAGE/SETTINGS" thing happens, and that's it.
If I execute:
cordova emulate android
On an emulator with Android 4.1.2 Jelly, an equal output
BUILD SUCCESSFUL
Total time: 6.352 secs
Built the following apk(s):
C:\android\Some\platforms\android\build\outputs\apk\android-debug.apk
Installing app on emulator...
Using apk: C:\android\Some\platforms\android\build\outputs\apk\android-debug.apk
Launching application...
LAUNCH SUCCESS
same "WALLPAPAER/MANAGE/SETTINGS", here's another screenshot Emulator Screenshot
Any ideas how to solve this issue? Thanks in advance...
PS: If I've installed the apk previously, the Razr will startup the old version, instead of the WALLPAPER/MANAGE/SETTINGS thing. So I have to uninstall it before trying to run the cordova run commands.