Translations:Android Training/Supporting Different Platform Versions/4/en: Unterschied zwischen den Versionen

Aus Android Wiki
(Neue Version von externer Quelle importiert)
 
(kein Unterschied)

Aktuelle Version vom 10. Januar 2016, 04:08 Uhr

Nachricht im Original (Android Training/Supporting Different Platform Versions)
== Specify Minimum and Target API Levels ==
The [http://developer.android.com/guide/topics/manifest/manifest-intro.html AndroidManifest.xml] file describes details about your app and identifies which versions of Android it supports. Specifically, the <code>minSdkVersion</code> and <code>targetSdkVersion</code> attributes for the <code>[http://developer.android.com/guide/topics/manifest/uses-sdk-element.html <uses-sdk]</code> element identify the lowest API level with which your app is compatible and the highest API level against which you’ve designed and tested your app.

Specify Minimum and Target API Levels[Quelltext bearbeiten]

The AndroidManifest.xml file describes details about your app and identifies which versions of Android it supports. Specifically, the minSdkVersion and targetSdkVersion attributes for the <uses-sdk element identify the lowest API level with which your app is compatible and the highest API level against which you’ve designed and tested your app.