Issue
I'm developing my Android app with target
set to 15, but would still like to test the app on lower API levels. When the 'Android Device Chooser' dialog opens however, AVDs with a level lower than 15 are not shown, even though the minSdkVersion
is set to 10 in AndroidManifest.xml
. How can I run my app on an API level 10 AVD?
In AndroidManifest.xml:
<uses-sdk
android:minSdkVersion="10"
android:targetSdkVersion="15" />
In project.properties:
target=android-15
Solution
Converted from comment:
Start the AVD first then, when trying to run the app from eclipse, it should either automatically use the one that's running or at least prompt you to use it.
Answered By - Squonk
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.