문제

For example, if we build an application for Android 2.0, will it work on

  1. Droid Incredible

  2. Droid Global

  3. Droid Pro

  4. Droid X

  5. Tablet PCs like Samsung Galaxy Tablet (http://www.samsung.com/us/mobile/galaxy-tab )

도움이 되었습니까?

해결책

In general, yes.

As long as the device meets the minSdkVersion you set in your AndroidManifest, the app can run on that device. If you also set a target version, you need to make sure you only call methods that are available (via reflection) when using newer SDK features.

For the Galaxy Tab specifically, you should check their site for details.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top