[android-developers] Re: Does the Google app store allow apps that target just 1 device?

2011-02-12 Thread Indicator Veritatis
If you can find a shared library that is present only on the device you target, then you can use uses-library in your manifest. See http://developer.android.com/guide/appendix/market-filters.html#manifest-filters for details. Likewise for features (uses-feature) On Feb 8, 7:27 am, Lee Leclair

Re: [android-developers] Re: Does the Google app store allow apps that target just 1 device?

2011-02-12 Thread Dianne Hackborn
In fact, if a device has its own proprietary APIs, those are expected to be expose to apps through a shared library, so you access them through uses-library, so by having this dependency your app will automatically be filtered by Market as described. On Sat, Feb 12, 2011 at 12:45 AM, Indicator