> Let's say i'm changing the project build target from Android 1.6 to > Android 2.2 and that the android:minSdkVersion attribute is changed > accordingly. What will > happen to my current users who don't have Android 2.2? Will they > receive the update through
No. that's what minSdkVersion is for. They won't see your app in Market any more unless their device meet app requirements. BTW: If your app was 1.6 so far, then I doubt you now need to drop it - if you add a feature that works on 2.2 then check os version you run on and act accordingly by enabling or disabling such feature. I got a feeling you think build target version have to match minSdkVersion, which is wrong. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

