Android: 对 compileSdkVersion + targetSdkVersion 23 感到困惑
Android: confused about compileSdkVersion + targetSdkVersion 23
我希望应用程序在 Play 商店中可用,供 android M 用户下载,但该应用程序的权限模型尚未完成。如果我将 compileSdkVersion 和 targetSdkVersion 设置为 22 而不是 23 - android M 用户会看到应用程序并能够 dl 它(在运行时授予所有权限)吗?
compileSdkVersion 22
defaultConfig {
minSdkVersion 15
targetSdkVersion 22
}
If I set the compileSdkVersion and targetSdkVersion to 22 instead of
23 - will the android M users see the app and be able to dl it
(granting all permissions at runtime)?
是的,该应用程序将可供 M 位用户使用,并且在安装时授予所有权限。
注意事项,如果您使用支持库 v23,则需要将 compileSdkVersion
设置为 23,否则会出现此错误:
This support library should not use a different version (23) than the
compileSdkVersion (22)
我希望应用程序在 Play 商店中可用,供 android M 用户下载,但该应用程序的权限模型尚未完成。如果我将 compileSdkVersion 和 targetSdkVersion 设置为 22 而不是 23 - android M 用户会看到应用程序并能够 dl 它(在运行时授予所有权限)吗?
compileSdkVersion 22
defaultConfig {
minSdkVersion 15
targetSdkVersion 22
}
If I set the compileSdkVersion and targetSdkVersion to 22 instead of 23 - will the android M users see the app and be able to dl it (granting all permissions at runtime)?
是的,该应用程序将可供 M 位用户使用,并且在安装时授予所有权限。
注意事项,如果您使用支持库 v23,则需要将 compileSdkVersion
设置为 23,否则会出现此错误:
This support library should not use a different version (23) than the compileSdkVersion (22)