-
Notifications
You must be signed in to change notification settings - Fork 505
Conversation
Related to #8 |
Ensures that when profiles change an event is triggered.
Local functions!!!!!!!!
build |
var currentAccess = NetworkAccess.None; | ||
var manager = Platform.ConnectivityManager; | ||
|
||
if (Build.VERSION.SdkInt >= BuildVersionCodes.Lollipop) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use the new platform.hasapi here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated!
{ | ||
ValidatePermission(); | ||
var manager = Platform.ConnectivityManager; | ||
if (Build.VERSION.SdkInt >= BuildVersionCodes.Lollipop) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Platform.HasApiLevel
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated!
{ | ||
get | ||
{ | ||
ValidatePermission(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are we ok with potentially throwing here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Agreed that we are only because it is a manifest check :)
Checklist