I am working with new Android application. It works fine with different devices, but I tried to use it with Note 5 (API 24) Android 7.0 and received this error:
does not support the current Display size setting and may behave unexpectedly
this is my gradle:
android {
compileSdkVersion 26
buildToolsVersion '26.0.2'
defaultConfig {
applicationId "com.example.ahmad.kedmatii"
minSdkVersion 15
targetSdkVersion 26
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
}
and here is my mainifest :
<supports-screens
android:anyDensity="true"
android:largeScreens="true"
android:normalScreens="true"
android:requiresSmallestWidthDp="600"
android:smallScreens="true"
android:xlargeScreens="true" />
So what should I do to solve it?