Relation between android:minSdkVersion, android:targetSdkVersion and “target”

前端 未结 3 1464
野性不改
野性不改 2021-01-01 23:29

So, I\'m a little confused, I thought I understood the meaning of android:minSdkVersion, android:targetSdkVersion and target in projec

3条回答
  •  离开以前
    2021-01-01 23:54

    android:minSdkVersion="7" means you can't run this app in devices under 2.1(API-7). android:targetSdkVersion="13" the app is built targetting this API. the build target will be set to 13 and the methods and stuffs that are available till 13 will work.

    http://developer.android.com/guide/topics/manifest/uses-sdk-element.html

提交回复
热议问题