Android Question The application BlackBerry Keyboard has stopped unexpectedly

Scantech

Well-Known Member
Licensed User
Longtime User
I was successfully to convert APK to Bar and install it to the BlackBerry Tablet Simulator. However, the Error Message "The application BlackBerry Keyboard has stopped unexpectedly" occurs when I run the app. I saw my Progress Bar and then the Error occurs. The app is blank even when i force close the error message.

Anyone knows what is preventing the app to start?
 

Scantech

Well-Known Member
Licensed User
Longtime User
FYI. If you are experiencing same error as I am. Change the Manifest minSDVersion and TargetSdkVersion.

This works
B4X:
<uses-sdk android:minSdkVersion="10" android:targetSdkVersion="10"/>)

I had this before and caused an error
B4X:
<uses-sdk android:minSdkVersion="15" android:targetSdkVersion="23"/>)

Update: targetSdkVersion will work up to 23. minSdkVersion is the one you need to reduce for testing with BB Tablet Simulator.
 
Last edited:
Upvote 0
Top