-
Notifications
You must be signed in to change notification settings - Fork 517
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[CoreLocationUI] Add new framework for Xcode13 beta1. (#11979)
- Loading branch information
1 parent
6b78a86
commit c778e6b
Showing
7 changed files
with
57 additions
and
13 deletions.
There are no files selected for viewing
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,49 @@ | ||
using CoreGraphics; | ||
using ObjCRuntime; | ||
using Foundation; | ||
using UIKit; | ||
|
||
using System; | ||
|
||
namespace CoreLocationUI { | ||
|
||
[NoTV, NoMac, NoWatch, iOS (15,0), MacCatalyst (15,0)] | ||
[Native] | ||
public enum CLLocationButtonIcon : long { | ||
None = 0, | ||
ArrowFilled, | ||
ArrowOutline, | ||
} | ||
|
||
[NoTV, NoMac, NoWatch, iOS (15,0), MacCatalyst (15,0)] | ||
[Native] | ||
public enum CLLocationButtonLabel : long { | ||
None = 0, | ||
CurrentLocation, | ||
SendCurrentLocation, | ||
SendMyCurrentLocation, | ||
ShareCurrentLocation, | ||
ShareMyCurrentLocation, | ||
} | ||
|
||
[NoTV, NoMac, NoWatch, iOS (15,0), MacCatalyst (15,0)] | ||
[BaseType (typeof (UIControl))] | ||
interface CLLocationButton : NSSecureCoding { | ||
|
||
[Export ("initWithFrame:")] | ||
[DesignatedInitializer] | ||
IntPtr Constructor (CGRect frame); | ||
|
||
[Export ("icon", ArgumentSemantic.Assign)] | ||
CLLocationButtonIcon Icon { get; set; } | ||
|
||
[Export ("label", ArgumentSemantic.Assign)] | ||
CLLocationButtonLabel Label { get; set; } | ||
|
||
[Export ("fontSize")] | ||
nfloat FontSize { get; set; } | ||
|
||
[Export ("cornerRadius")] | ||
nfloat CornerRadius { get; set; } | ||
} | ||
} |
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
1 change: 1 addition & 0 deletions
1
.../xtro-sharpie/watchOS-CoreLocationUI.todo → ...xtro-sharpie/common-CoreLocationUI.ignore
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 |
---|---|---|
@@ -1,2 +1,3 @@ | ||
# no need to be added | ||
!missing-field! CoreLocationUIVersionNumber not bound | ||
!missing-field! CoreLocationUIVersionString not bound |
This file was deleted.
Oops, something went wrong.
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
c778e6b
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.
✅ [CI Build] Tests passed on Build. ✅
Tests passed on Build.
API diff
✅ API Diff from stable
View API diff
API & Generator diff
ℹ️ API Diff (from PR only) (please review changes)
ℹ️ Generator Diff (please review changes)
Packages generated
View packages
🎉 All 221 tests passed 🎉
Pipeline on Agent XAMBOT-1038.BigSur'
[CoreLocationUI] Add new framework for Xcode13 beta1. (#11979)
c778e6b
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.
🔥 Tests failed catastrophically on VSTS: device tests tvOS 🔥
Not enough free space in the host.
Pipeline on Agent
[CoreLocationUI] Add new framework for Xcode13 beta1. (#11979)
c778e6b
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.
Results were skipped for this run due to provisioning problems Azure Devops. Please contact the bot administrator.
Pipeline on Agent
[CoreLocationUI] Add new framework for Xcode13 beta1. (#11979)
c778e6b
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.
Results were skipped for this run due to provisioning problems Azure Devops. Please contact the bot administrator.
Pipeline on Agent
[CoreLocationUI] Add new framework for Xcode13 beta1. (#11979)
c778e6b
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.
✅ Tests passed on macOS Mac Catalina (10.15) ✅
Tests passed
All tests on macOS X Mac Catalina (10.15) passed.
Pipeline on Agent
[CoreLocationUI] Add new framework for Xcode13 beta1. (#11979)
c778e6b
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.
✅ Tests passed on macOS Mac Mojave (10.14) ✅
Tests passed
All tests on macOS X Mac Mojave (10.14) passed.
Pipeline on Agent
[CoreLocationUI] Add new framework for Xcode13 beta1. (#11979)
c778e6b
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.
✅ Tests passed on macOS Mac High Sierra (10.13) ✅
Tests passed
All tests on macOS X Mac High Sierra (10.13) passed.
Pipeline on Agent
[CoreLocationUI] Add new framework for Xcode13 beta1. (#11979)
c778e6b
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.
Results were skipped for this run due to provisioning problems Azure Devops. Please contact the bot administrator.
Pipeline on Agent
[CoreLocationUI] Add new framework for Xcode13 beta1. (#11979)