We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fdefddc commit c4e07f8Copy full SHA for c4e07f8
sdk/src/main/java/ly/count/android/sdk/TransparentActivity.java
@@ -79,6 +79,7 @@ protected void onCreate(Bundle savedInstanceState) {
79
| WindowManager.LayoutParams.FLAG_WATCH_OUTSIDE_TOUCH;
80
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.P) {
81
params.layoutInDisplayCutoutMode = WindowManager.LayoutParams.LAYOUT_IN_DISPLAY_CUTOUT_MODE_SHORT_EDGES;
82
+ // If this is disabled, UtilsDevice line 61 needs to be changed to subtract cutout always
83
}
84
getWindow().setAttributes(params);
85
getWindow().setBackgroundDrawableResource(android.R.color.transparent);
0 commit comments