What does the orange triangle in the target column of Android Device Chooser window mean?
Asked Answered
L

4

30

When I launch my Android app with Eclipse, the usual window "Android Device Chooser" appears. I can here choose on which device I want to run my app.

In the target column appears next to my target an orange triangle with an exclamation mark (kind of 'warning') (see the image below)

Does somebody know what it means ?

enter image description here

Lebanon answered 29/8, 2011 at 8:31 Comment(0)
H
22

According to this mailing list thread, that just means you're utilising an optional library and Eclipse can't be sure it's installed on the device. Eclipse knows you're using a compatible version of the API, it's just not sure about the optional extension you're using. So you should be fine, as long as the app works on the phone.

Hobson answered 29/8, 2011 at 10:7 Comment(1)
I think it also might mean that the minSdkVersion you defined in the manifest is bigger than the one you're trying to run the app on.Nuristan
R
7

I have the same exclamation point next to my target but the code complile and run OK. In my opinion the warning appears because the device target has a different API version than project one. In my case the Android project is build with 2.3.3. but my Samsung device has installed 2.3.4

Riocard answered 15/11, 2012 at 8:13 Comment(0)
F
1

just you need to change the target SDK version from "Google API to Android" from sdk window as attached screens shot.enter image description here

Faso answered 24/9, 2015 at 5:36 Comment(0)
B
0

This problem might be a result of wrong project properties/dependencies, as desribed in another question on the same subject: https://mcmap.net/q/500791/-orange-triangle-in-the-target-column-of-android-device-chooser-window

Bogusz answered 3/5, 2015 at 16:29 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.