I want an app to be available in the play store for android M users to download, but the permissions model isn't yet complete for the app. 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)?
compileSdkVersion 22
defaultConfig {
minSdkVersion 15
targetSdkVersion 22
}