Skip to content

Commit

Permalink
Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
jpobst committed Aug 4, 2021
1 parent 7957a6a commit 7707302
Show file tree
Hide file tree
Showing 3 changed files with 1,011 additions and 162 deletions.
21 changes: 21 additions & 0 deletions src/Mono.Android/Android.Telephony/AccessNetworkTypes.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
using System;
using System.Collections.Generic;
using System.Text;

namespace Android.Telephony
{
#if ANDROID_31
// These constants were added in API-28 and were missed in enumification.
// Make an enum now because some new API-31 methods use them.
public enum AccessNetworkTypes
{
Unknown = 0,
Geran = 1,
Utran = 2,
Eutran = 3,
Cdma2000 = 4,
Iwlan = 5,
Ngran = 6
}
#endif
}
Loading

0 comments on commit 7707302

Please sign in to comment.