You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Editor/Mono/PlayerSettingsAndroid.bindings.cs
+12-4Lines changed: 12 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -267,12 +267,20 @@ public static extern int minimumWindowHeight
267
267
set;
268
268
}
269
269
270
-
// Should window resizing be allowed.
271
-
publicstaticexternboolresizableWindow
270
+
[Obsolete("resizableWindow has been deprecated and renamed to match Android documentation. Please use resizeableActivity instead. (UnityUpgradable) -> resizeableActivity",false)]
271
+
// Should application resizing be allowed (deprecated old naming).
272
+
publicstaticboolresizeableWindow
272
273
{
273
-
[NativeMethod("GetAndroidResizableWindow")]
274
+
set=>resizeableActivity=value;
275
+
get=>resizeableActivity;
276
+
}
277
+
278
+
// Should application resizing be allowed (new naming).
0 commit comments