-
-
Notifications
You must be signed in to change notification settings - Fork 154
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e08ac95
commit 1d53809
Showing
23 changed files
with
1,083 additions
and
17 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
34 changes: 34 additions & 0 deletions
34
src/InAppBillingTests/InAppBillingTests.Mac/AppDelegate.cs
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,34 @@ | ||
using AppKit; | ||
using Foundation; | ||
using Xamarin.Forms; | ||
using Xamarin.Forms.Platform.MacOS; | ||
|
||
namespace InAppBillingTests.Mac | ||
{ | ||
[Register("AppDelegate")] | ||
public class AppDelegate : FormsApplicationDelegate | ||
{ | ||
NSWindow window; | ||
public AppDelegate() | ||
{ | ||
var style = NSWindowStyle.Closable | NSWindowStyle.Resizable | NSWindowStyle.Titled; | ||
|
||
var rect = new CoreGraphics.CGRect(200, 1000, 1024, 768); | ||
window = new NSWindow(rect, style, NSBackingStore.Buffered, false); | ||
window.Title = "Xamarin.Forms on Mac!"; // choose your own Title here | ||
window.TitleVisibility = NSWindowTitleVisibility.Hidden; | ||
} | ||
|
||
public override NSWindow MainWindow | ||
{ | ||
get { return window; } | ||
} | ||
|
||
public override void DidFinishLaunching(NSNotification notification) | ||
{ | ||
Forms.Init(); | ||
LoadApplication(new App()); | ||
base.DidFinishLaunching(notification); | ||
} | ||
} | ||
} |
Binary file added
BIN
+7.93 KB
...gTests/InAppBillingTests.Mac/Assets.xcassets/AppIcon.appiconset/AppIcon-128.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+20.3 KB
...sts/InAppBillingTests.Mac/Assets.xcassets/AppIcon.appiconset/AppIcon-128@2x.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+711 Bytes
...ngTests/InAppBillingTests.Mac/Assets.xcassets/AppIcon.appiconset/AppIcon-16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.45 KB
...ests/InAppBillingTests.Mac/Assets.xcassets/AppIcon.appiconset/AppIcon-16@2x.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+20.3 KB
...gTests/InAppBillingTests.Mac/Assets.xcassets/AppIcon.appiconset/AppIcon-256.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+57.9 KB
...sts/InAppBillingTests.Mac/Assets.xcassets/AppIcon.appiconset/AppIcon-256@2x.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+1.45 KB
...ngTests/InAppBillingTests.Mac/Assets.xcassets/AppIcon.appiconset/AppIcon-32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+3.35 KB
...ests/InAppBillingTests.Mac/Assets.xcassets/AppIcon.appiconset/AppIcon-32@2x.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+57.9 KB
...gTests/InAppBillingTests.Mac/Assets.xcassets/AppIcon.appiconset/AppIcon-512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added
BIN
+173 KB
...sts/InAppBillingTests.Mac/Assets.xcassets/AppIcon.appiconset/AppIcon-512@2x.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
68 changes: 68 additions & 0 deletions
68
src/InAppBillingTests/InAppBillingTests.Mac/Assets.xcassets/AppIcon.appiconset/Contents.json
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,68 @@ | ||
{ | ||
"images": [ | ||
{ | ||
"filename": "AppIcon-16.png", | ||
"size": "16x16", | ||
"scale": "1x", | ||
"idiom": "mac" | ||
}, | ||
{ | ||
"filename": "AppIcon-16@2x.png", | ||
"size": "16x16", | ||
"scale": "2x", | ||
"idiom": "mac" | ||
}, | ||
{ | ||
"filename": "AppIcon-32.png", | ||
"size": "32x32", | ||
"scale": "1x", | ||
"idiom": "mac" | ||
}, | ||
{ | ||
"filename": "AppIcon-32@2x.png", | ||
"size": "32x32", | ||
"scale": "2x", | ||
"idiom": "mac" | ||
}, | ||
{ | ||
"filename": "AppIcon-128.png", | ||
"size": "128x128", | ||
"scale": "1x", | ||
"idiom": "mac" | ||
}, | ||
{ | ||
"filename": "AppIcon-128@2x.png", | ||
"size": "128x128", | ||
"scale": "2x", | ||
"idiom": "mac" | ||
}, | ||
{ | ||
"filename": "AppIcon-256.png", | ||
"size": "256x256", | ||
"scale": "1x", | ||
"idiom": "mac" | ||
}, | ||
{ | ||
"filename": "AppIcon-256@2x.png", | ||
"size": "256x256", | ||
"scale": "2x", | ||
"idiom": "mac" | ||
}, | ||
{ | ||
"filename": "AppIcon-512.png", | ||
"size": "512x512", | ||
"scale": "1x", | ||
"idiom": "mac" | ||
}, | ||
{ | ||
"filename": "AppIcon-512@2x.png", | ||
"size": "512x512", | ||
"scale": "2x", | ||
"idiom": "mac" | ||
} | ||
], | ||
"info": { | ||
"version": 1, | ||
"author": "xcode" | ||
} | ||
} |
6 changes: 6 additions & 0 deletions
6
src/InAppBillingTests/InAppBillingTests.Mac/Assets.xcassets/Contents.json
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,6 @@ | ||
{ | ||
"info" : { | ||
"version" : 1, | ||
"author" : "xcode" | ||
} | ||
} |
6 changes: 6 additions & 0 deletions
6
src/InAppBillingTests/InAppBillingTests.Mac/Entitlements.plist
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,6 @@ | ||
<?xml version="1.0" encoding="UTF-8" ?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
</dict> | ||
</plist> |
102 changes: 102 additions & 0 deletions
102
src/InAppBillingTests/InAppBillingTests.Mac/InAppBillingTests.Mac.csproj
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,102 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup> | ||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | ||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | ||
<ProjectGuid>{04BF1C8C-EACA-466D-80D8-C2B9012A37F1}</ProjectGuid> | ||
<ProjectTypeGuids>{A3F8F2AB-B479-4A4A-A458-A89E7DC349F1};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids> | ||
<OutputType>Exe</OutputType> | ||
<RootNamespace>InAppBillingTests.Mac</RootNamespace> | ||
<AssemblyName>iaptestmac</AssemblyName> | ||
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion> | ||
<TargetFrameworkIdentifier>Xamarin.Mac</TargetFrameworkIdentifier> | ||
<MonoMacResourcePrefix>Resources</MonoMacResourcePrefix> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | ||
<DebugSymbols>true</DebugSymbols> | ||
<DebugType>full</DebugType> | ||
<Optimize>false</Optimize> | ||
<OutputPath>bin\Debug</OutputPath> | ||
<DefineConstants>DEBUG;</DefineConstants> | ||
<ErrorReport>prompt</ErrorReport> | ||
<WarningLevel>4</WarningLevel> | ||
<EnableCodeSigning>false</EnableCodeSigning> | ||
<CodeSigningKey>Mac Developer</CodeSigningKey> | ||
<CreatePackage>false</CreatePackage> | ||
<EnablePackageSigning>false</EnablePackageSigning> | ||
<IncludeMonoRuntime>false</IncludeMonoRuntime> | ||
<UseSGen>true</UseSGen> | ||
<UseRefCounting>true</UseRefCounting> | ||
<Profiling>true</Profiling> | ||
<HttpClientHandler></HttpClientHandler> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | ||
<DebugType>pdbonly</DebugType> | ||
<Optimize>true</Optimize> | ||
<OutputPath>bin\Release</OutputPath> | ||
<DefineConstants></DefineConstants> | ||
<ErrorReport>prompt</ErrorReport> | ||
<WarningLevel>4</WarningLevel> | ||
<EnableCodeSigning>false</EnableCodeSigning> | ||
<CreatePackage>true</CreatePackage> | ||
<EnablePackageSigning>false</EnablePackageSigning> | ||
<IncludeMonoRuntime>true</IncludeMonoRuntime> | ||
<UseSGen>true</UseSGen> | ||
<UseRefCounting>true</UseRefCounting> | ||
<CodeSignEntitlements>Entitlements.plist</CodeSignEntitlements> | ||
<LinkMode>SdkOnly</LinkMode> | ||
<HttpClientHandler></HttpClientHandler> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Reference Include="System" /> | ||
<Reference Include="System.Core" /> | ||
<Reference Include="Xamarin.Mac" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ImageAsset Include="Assets.xcassets\AppIcon.appiconset\Contents.json" /> | ||
<ImageAsset Include="Assets.xcassets\AppIcon.appiconset\AppIcon-128.png" /> | ||
<ImageAsset Include="Assets.xcassets\AppIcon.appiconset\AppIcon-128%402x.png" /> | ||
<ImageAsset Include="Assets.xcassets\AppIcon.appiconset\AppIcon-16.png" /> | ||
<ImageAsset Include="Assets.xcassets\AppIcon.appiconset\AppIcon-16%402x.png" /> | ||
<ImageAsset Include="Assets.xcassets\AppIcon.appiconset\AppIcon-256.png" /> | ||
<ImageAsset Include="Assets.xcassets\AppIcon.appiconset\AppIcon-256%402x.png" /> | ||
<ImageAsset Include="Assets.xcassets\AppIcon.appiconset\AppIcon-32.png" /> | ||
<ImageAsset Include="Assets.xcassets\AppIcon.appiconset\AppIcon-32%402x.png" /> | ||
<ImageAsset Include="Assets.xcassets\AppIcon.appiconset\AppIcon-512.png" /> | ||
<ImageAsset Include="Assets.xcassets\AppIcon.appiconset\AppIcon-512%402x.png" /> | ||
<ImageAsset Include="Assets.xcassets\Contents.json" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Folder Include="Resources\" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<None Include="Info.plist" /> | ||
<None Include="Entitlements.plist" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Compile Include="Main.cs" /> | ||
<Compile Include="AppDelegate.cs" /> | ||
<Compile Include="ViewController.cs" /> | ||
<Compile Include="ViewController.designer.cs"> | ||
<DependentUpon>ViewController.cs</DependentUpon> | ||
</Compile> | ||
</ItemGroup> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="Xamarin.Forms" Version="4.7.0.1179" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<InterfaceDefinition Include="Main.storyboard" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\InAppBillingTests\InAppBillingTests.csproj"> | ||
<Project>{6D4D9135-F225-4626-A9CE-32BDF97AEA89}</Project> | ||
<Name>InAppBillingTests</Name> | ||
</ProjectReference> | ||
<ProjectReference Include="..\..\Plugin.InAppBilling\Plugin.InAppBilling.csproj"> | ||
<Project>{C570E25E-259F-4D4C-88F0-B2982815192D}</Project> | ||
<Name>Plugin.InAppBilling</Name> | ||
</ProjectReference> | ||
</ItemGroup> | ||
<Import Project="$(MSBuildExtensionsPath)\Xamarin\Mac\Xamarin.Mac.CSharp.targets" /> | ||
</Project> |
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,32 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>CFBundleName</key> | ||
<string>iaptestmac</string> | ||
<key>CFBundleIdentifier</key> | ||
<string>com.refractored.iaptest</string> | ||
<key>CFBundleShortVersionString</key> | ||
<string>1.0</string> | ||
<key>CFBundleVersion</key> | ||
<string>1</string> | ||
<key>LSMinimumSystemVersion</key> | ||
<string>10.14</string> | ||
<key>CFBundleDevelopmentRegion</key> | ||
<string>en</string> | ||
<key>CFBundleInfoDictionaryVersion</key> | ||
<string>6.0</string> | ||
<key>CFBundlePackageType</key> | ||
<string>APPL</string> | ||
<key>CFBundleSignature</key> | ||
<string>????</string> | ||
<key>NSHumanReadableCopyright</key> | ||
<string></string> | ||
<key>NSPrincipalClass</key> | ||
<string>NSApplication</string> | ||
<key>NSMainStoryboardFile</key> | ||
<string>Main</string> | ||
<key>XSAppIconAssets</key> | ||
<string>Assets.xcassets/AppIcon.appiconset</string> | ||
</dict> | ||
</plist> |
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,14 @@ | ||
using AppKit; | ||
|
||
namespace InAppBillingTests.Mac | ||
{ | ||
static class MainClass | ||
{ | ||
static void Main(string[] args) | ||
{ | ||
NSApplication.Init(); | ||
NSApplication.SharedApplication.Delegate = new AppDelegate(); | ||
NSApplication.Main(args); | ||
} | ||
} | ||
} |
Oops, something went wrong.