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 7957a6a commit 7707302Copy full SHA for 7707302
src/Mono.Android/Android.Telephony/AccessNetworkTypes.cs
@@ -0,0 +1,21 @@
1
+using System;
2
+using System.Collections.Generic;
3
+using System.Text;
4
+
5
+namespace Android.Telephony
6
+{
7
+#if ANDROID_31
8
+ // These constants were added in API-28 and were missed in enumification.
9
+ // Make an enum now because some new API-31 methods use them.
10
+ public enum AccessNetworkTypes
11
+ {
12
+ Unknown = 0,
13
+ Geran = 1,
14
+ Utran = 2,
15
+ Eutran = 3,
16
+ Cdma2000 = 4,
17
+ Iwlan = 5,
18
+ Ngran = 6
19
+ }
20
+#endif
21
+}
0 commit comments