-
Notifications
You must be signed in to change notification settings - Fork 528
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Mono.Android] Fix some incorrect enums.
- Loading branch information
Showing
5 changed files
with
34 additions
and
10 deletions.
There are no files selected for viewing
Submodule Java.Interop
updated
from f8d77f to 38f969
13 changes: 13 additions & 0 deletions
13
src/Mono.Android/Android.Hardware.Camera2/CameraAccessException.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
using Android.Runtime; | ||
|
||
#if ANDROID_23 | ||
namespace Android.Hardware.Camera2 | ||
{ | ||
// This was converted to an enum in .NET 8 | ||
partial class CameraAccessException | ||
{ | ||
[Register ("MAX_CAMERAS_IN_USE", ApiSince=23)] | ||
public const int MaxCamerasInUse = 5; | ||
} | ||
} | ||
#endif // ANDROID_23 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters