We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98ce068 commit 271de17Copy full SHA for 271de17
modules/statusbar/src/main/native/android/dalvik/DalvikStatusBarService.java
@@ -80,7 +80,7 @@ public void run() {
80
}
81
82
private void setSystemBarsColor(final int statusBarColor, final int navigationBarColor) {
83
- if (Build.VERSION.SDK_INT < Build.VERSION_CODES.UPSIDE_DOWN_CAKE) { // < 34
+ if (Build.VERSION.SDK_INT <= Build.VERSION_CODES.UPSIDE_DOWN_CAKE) { // < 34
84
Log.e(TAG, "setSystemBarsColor is not supported for the current Android version. " +
85
"Use setColor instead");
86
return;
0 commit comments