targetsdkversion
时间: 2023-11-22 21:04:46 浏览: 73
gradle中的 compileSdkVersion minSdkVersion targetSdkVersion
The targetSdkVersion is an attribute in AndroidManifest.xml that specifies the API level that the app is intended to run on. It is used by the Android system to determine the level of compatibility with the device's OS. The targetSdkVersion should be set to the highest API level that the app has been tested and optimized for. This ensures that the app behaves correctly with the latest features and security patches provided by the OS.
阅读全文