Updating Xamarin Projections for 1704

This commit is contained in:
ajpeacock0 2017-05-09 14:37:45 -07:00
Родитель 4a987110aa
Коммит 39bcd17f0c
13 изменённых файлов: 55 добавлений и 213 удалений

2
xamarin/src/.gitignore поставляемый Normal file
Просмотреть файл

@ -0,0 +1,2 @@
*.aar
*.bak

Просмотреть файл

@ -1,48 +0,0 @@
Additions allow you to add arbitrary C# to the generated classes
before they are compiled. This can be helpful for providing convenience
methods or adding pure C# classes.
== Adding Methods to Generated Classes ==
Let's say the library being bound has a Rectangle class with a constructor
that takes an x and y position, and a width and length size. It will look like
this:
public partial class Rectangle
{
public Rectangle (int x, int y, int width, int height)
{
// JNI bindings
}
}
Imagine we want to add a constructor to this class that takes a Point and
Size structure instead of 4 ints. We can add a new file called Rectangle.cs
with a partial class containing our new method:
public partial class Rectangle
{
public Rectangle (Point location, Size size) :
this (location.X, location.Y, size.Width, size.Height)
{
}
}
At compile time, the additions class will be added to the generated class
and the final assembly will a Rectangle class with both constructors.
== Adding C# Classes ==
Another thing that can be done is adding fully C# managed classes to the
generated library. In the above example, let's assume that there isn't a
Point class available in Java or our library. The one we create doesn't need
to interact with Java, so we'll create it like a normal class in C#.
By adding a Point.cs file with this class, it will end up in the binding library:
public class Point
{
public int X { get; set; }
public int Y { get; set; }
}

Просмотреть файл

@ -1,63 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>8.0.30703</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{11CF356A-08DD-44A9-8531-73D41735F0DB}</ProjectGuid>
<ProjectTypeGuids>{10368E6C-D01B-4462-8E8B-01FC667A7035};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Microsoft.ConnectedDevices.Xamarin.Droid.Core</RootNamespace>
<AssemblyName>Microsoft.ConnectedDevices.Xamarin.Droid.Core</AssemblyName>
<FileAlignment>512</FileAlignment>
<AndroidUseLatestPlatformSdk>True</AndroidUseLatestPlatformSdk>
<TargetFrameworkVersion>v7.1</TargetFrameworkVersion>
<AndroidClassParser>class-parse</AndroidClassParser>
<AndroidCodegenTarget>XAJavaInterop1</AndroidCodegenTarget>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="Mono.Android" />
<Reference Include="System" />
<Reference Include="System.Core" />
</ItemGroup>
<ItemGroup>
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<None Include="Jars\AboutJars.txt" />
<None Include="Additions\AboutAdditions.txt" />
<LibraryProjectZip Include="Jars\connecteddevices-core-armv7-externalRelease.aar" />
</ItemGroup>
<ItemGroup>
<TransformFile Include="Transforms\Metadata.xml" />
<TransformFile Include="Transforms\EnumFields.xml" />
<TransformFile Include="Transforms\EnumMethods.xml" />
</ItemGroup>
<Import Project="$(MSBuildExtensionsPath)\Xamarin\Android\Xamarin.Android.Bindings.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>

Просмотреть файл

@ -1,24 +0,0 @@
This directory is for Android .jars.
There are 2 types of jars that are supported:
== Input Jar ==
This is the jar that bindings should be generated for.
For example, if you were binding the Google Maps library, this would
be Google's "maps.jar".
Set the build action for these jars in the properties page to "InputJar".
== Reference Jars ==
These are jars that are referenced by the input jar. C# bindings will
not be created for these jars. These jars will be used to resolve
types used by the input jar.
NOTE: Do not add "android.jar" as a reference jar. It will be added automatically
based on the Target Framework selected.
Set the build action for these jars in the properties page to "ReferenceJar".

Просмотреть файл

@ -1,29 +0,0 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
using Android.App;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("ConnectedDevices.Xamarin.Droid.Core")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("ConnectedDevices.Xamarin.Droid.Core")]
[assembly: AssemblyCopyright("Copyright © 2017")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]

Просмотреть файл

@ -1,14 +0,0 @@
<enum-field-mappings>
<!--
This example converts the constants Fragment_id, Fragment_name,
and Fragment_tag from android.support.v4.app.FragmentActivity.FragmentTag
to an enum called Android.Support.V4.App.FragmentTagType with values
Id, Name, and Tag.
<mapping jni-class="android/support/v4/app/FragmentActivity$FragmentTag" clr-enum-type="Android.Support.V4.App.FragmentTagType">
<field jni-name="Fragment_name" clr-name="Name" value="0" />
<field jni-name="Fragment_id" clr-name="Id" value="1" />
<field jni-name="Fragment_tag" clr-name="Tag" value="2" />
</mapping>
-->
</enum-field-mappings>

Просмотреть файл

@ -1,13 +0,0 @@
<enum-method-mappings>
<!--
This example changes the Java method:
android.support.v4.app.Fragment.SavedState.writeToParcel (int flags)
to be:
android.support.v4.app.Fragment.SavedState.writeToParcel (Android.OS.ParcelableWriteFlags flags)
when bound in C#.
<mapping jni-class="android/support/v4/app/Fragment.SavedState">
<method jni-name="writeToParcel" parameter="flags" clr-enum-type="Android.OS.ParcelableWriteFlags" />
</mapping>
-->
</enum-method-mappings>

Просмотреть файл

@ -1,10 +0,0 @@
<metadata>
<!--
This sample removes the class: android.support.v4.content.AsyncTaskLoader.LoadTask:
<remove-node path="/api/package[@name='android.support.v4.content']/class[@name='AsyncTaskLoader.LoadTask']" />
This sample removes the method: android.support.v4.content.CursorLoader.loadInBackground:
<remove-node path="/api/package[@name='android.support.v4.content']/class[@name='CursorLoader']/method[@name='loadInBackground']" />
-->
<attr path="/api/package[@name='com.microsoft.cdp']" name="managedName">Microsoft.ConnectedDevices.Core</attr>
</metadata>

Просмотреть файл

@ -92,7 +92,7 @@ namespace Microsoft.ConnectedDevices
this.ConnectedStatus?.Invoke(status);
}
public void OnClosed() {}
public void OnClosed(AppServiceClientConnectionClosedStatus status) {}
}
internal class AppServiceResponseListener : Java.Lang.Object, IAppServiceResponseListener

Просмотреть файл

@ -18,7 +18,6 @@ namespace Microsoft.ConnectedDevices
public static Task<RemoteLaunchUriStatus> LaunchUriAsync(RemoteSystemConnectionRequest connectionRequest, Uri uri)
{
var tcs = new TaskCompletionSource<RemoteLaunchUriStatus>();
RemoteLauncher launcher = new RemoteLauncher();
try
{
@ -27,7 +26,8 @@ namespace Microsoft.ConnectedDevices
{
tcs.TrySetResult(r);
};
launcher.LaunchUriAsync(connectionRequest, uri.OriginalString, launchUriListener);
RemoteLauncher.LaunchUriAsync(connectionRequest, uri.OriginalString, launchUriListener);
}
catch (Exception e)
{

Просмотреть файл

@ -8,6 +8,8 @@
//
//*********************************************************
using System.Collections.Generic;
namespace Microsoft.ConnectedDevices
{
@ -17,7 +19,12 @@ namespace Microsoft.ConnectedDevices
public static RemoteSystemWatcher CreateWatcher()
{
return new RemoteSystemWatcher();
return new RemoteSystemWatcher(null);
}
public static RemoteSystemWatcher CreateWatcher(List<IRemoteSystemFilter> filters)
{
return new RemoteSystemWatcher(filters);
}
}
}

Просмотреть файл

@ -8,7 +8,7 @@
//
//*********************************************************
using System;
using System.Collections.Generic;
namespace Microsoft.ConnectedDevices
{
@ -16,8 +16,15 @@ namespace Microsoft.ConnectedDevices
{
private RemoteSystemDiscovery.Builder builder = new RemoteSystemDiscovery.Builder();
private RemoteSystemDiscoveryListener listener;
private List<IRemoteSystemFilter> filters;
private RemoteSystemDiscovery watcher;
public RemoteSystemWatcher(List<IRemoteSystemFilter> filters)
{
this.filters = filters;
}
//
// Summary:
// The event that is raised when a new remote system (device) is discovered.
@ -57,7 +64,17 @@ namespace Microsoft.ConnectedDevices
public void Start()
{
this.listener = new RemoteSystemDiscoveryListener(this);
this.watcher = this.builder.SetListener(this.listener).Result;
this.builder = this.builder.SetListener(this.listener);
if (filters != null)
{
foreach (var filter in this.filters)
{
this.builder = this.builder.Filter(filter);
}
}
this.watcher = this.builder.Result;
this.watcher.Start();
}

Просмотреть файл

@ -34,6 +34,28 @@
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
<DebugSymbols>true</DebugSymbols>
<OutputPath>bin\x86\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<DebugType>full</DebugType>
<PlatformTarget>x86</PlatformTarget>
<GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'">
<OutputPath>bin\x86\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Optimize>true</Optimize>
<DebugType>pdbonly</DebugType>
<PlatformTarget>x86</PlatformTarget>
<GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
<ErrorReport>prompt</ErrorReport>
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Xml" />
@ -42,6 +64,7 @@
</ItemGroup>
<ItemGroup>
<Compile Include="Additions\Platform.cs" />
<Compile Include="Additions\AppServiceClientConnection.cs" />
<Compile Include="Additions\RemoteLauncher.cs" />
<Compile Include="Additions\RemoteSystem.cs" />
<Compile Include="Additions\RemoteSystemWatcher.cs" />
@ -59,12 +82,6 @@
<SubType>Designer</SubType>
</TransformFile>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\ConnectedDevices.Xamarin.Droid.Core\ConnectedDevices.Xamarin.Droid.Core.csproj">
<Project>{11cf356a-08dd-44a9-8531-73d41735f0db}</Project>
<Name>ConnectedDevices.Xamarin.Droid.Core</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildExtensionsPath)\Xamarin\Android\Xamarin.Android.Bindings.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.