Scala + Android Newbie
Solution 1:
On the Android SDK manager, install/reinstall "ARM EABI v7a System Image" and then create a new AVD.
Solution 2:
Maybe it helps some people:
When running the "Android Virtual Device Manager". Clicking the Detail button, the AVD shows the AVD location on your system. Going to this directory will show you a config.ini file.
I changed the image.sysdir.1 value to something other in that particular file.
After going back to the AVD manager, it shows the virtual device with a repair option. Clicking the repair button wields something in the logs like:
[SDK Manager] Updated 'image.sysdir.1'withvalue'add-ons/addon-google_apis-google-16/images/armeabi-v7a/'
[SDK Manager] Updated 'image.sysdir.2'withvalue'system-images/android-16/armeabi-v7a/'
The thing to I noticed it added a image.sysdir.2 value. After this repair I can start the AVD without a missing kernel message.
Solution 3:
This is purely an error on the side of Android's emulator -- it has nothing to do with Scala, or SBT. You can find the text of the error in this code, if you like.
So, I don't know what directions you followed when you created the AVD, but the AVD is malformed. Create a new one by running the android
tool in the tools/ directory of the Android SDK, and then finding Manage AVDs...
in the Tools
menu.
(And to save you some time: after you have a good AVD, use android:package-debug
to build an .apk
, and android:install-emulator
to move it into the emulator. You can do this while the emulator's running.)
Post a Comment for "Scala + Android Newbie"