Skip to content

Commit 7707302

Browse files
committed
Updates
1 parent 7957a6a commit 7707302

File tree

3 files changed

+1011
-162
lines changed

3 files changed

+1011
-162
lines changed
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)