refabrique
This commit is contained in:
parent
33dbed8b90
commit
817c1c151f
34 changed files with 3476 additions and 35 deletions
|
|
@ -182,6 +182,9 @@
|
|||
<HintPath>..\..\packages\Xamarin.GooglePlayServices.Measurement.29.0.0.2\lib\MonoAndroid41\Xamarin.GooglePlayServices.Measurement.dll</HintPath>
|
||||
<Private>True</Private>
|
||||
</Reference>
|
||||
<Reference Include="Yavsc.Api">
|
||||
<HintPath>..\..\Yavsc.Api\bin\Debug\net451\Yavsc.Api.dll</HintPath>
|
||||
</Reference>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="Helpers\Settings.cs" />
|
||||
|
|
@ -212,6 +215,10 @@
|
|||
<AndroidResource Include="Resources\values\styles.xml" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\Yavsc.Client\Yavsc.Client.csproj">
|
||||
<Project>{67f9d3a8-f71e-4428-913f-c37ae82cdb24}</Project>
|
||||
<Name>Yavsc.Client</Name>
|
||||
</ProjectReference>
|
||||
<ProjectReference Include="..\BookAStar\BookAStar.csproj">
|
||||
<Project>{A0815650-0A0A-47B0-8826-771F0E1AD137}</Project>
|
||||
<Name>BookAStar</Name>
|
||||
|
|
@ -224,7 +231,7 @@
|
|||
</XamarinComponentReference>
|
||||
<XamarinComponentReference Include="GeolocatorPlugin">
|
||||
<Visible>False</Visible>
|
||||
<Version>1.0.0</Version>
|
||||
<Version>1.0.3</Version>
|
||||
</XamarinComponentReference>
|
||||
<XamarinComponentReference Include="json.net">
|
||||
<Visible>False</Visible>
|
||||
|
|
|
|||
|
|
@ -267,11 +267,14 @@ namespace BookAStar.Droid
|
|||
Model = devinfo.Model,
|
||||
Platform = devinfo.Platform.ToString(),
|
||||
Version = devinfo.Version,
|
||||
GCMRegistrationId = MainSettings.GoogleRegId,
|
||||
DeviceOwnerId = MainSettings.CurrentUser?.Id
|
||||
GCMRegistrationId = MainSettings.GoogleRegId
|
||||
};
|
||||
}
|
||||
|
||||
public void PostDeviceInfo()
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -48,13 +48,11 @@
|
|||
<Compile Include="MainPage.xaml.cs">
|
||||
<DependentUpon>MainPage.xaml</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Model\Auth\MobileAppDeclaration.cs" />
|
||||
<Compile Include="Model\Auth\passwrecovery.cs" />
|
||||
<Compile Include="Model\Auth\Tokens.cs" />
|
||||
<Compile Include="Model\Auth\User.cs" />
|
||||
<Compile Include="Model\Blog\Blog.cs" />
|
||||
<Compile Include="Model\Blog\BlogTag.cs" />
|
||||
<Compile Include="Model\Manager.cs" />
|
||||
<Compile Include="Model\Auth\MobileAppDeclaration.cs" />
|
||||
<Compile Include="Model\Auth\passwrecovery.cs" />
|
||||
<Compile Include="Model\Social\Calendar\OpenDay.cs" />
|
||||
<Compile Include="Model\Social\Calendar\Period.cs" />
|
||||
<Compile Include="Model\Social\Calendar\Periodicity.cs" />
|
||||
|
|
@ -83,6 +81,8 @@
|
|||
<Compile Include="Model\Social\Messaging\PositionAndKeyphrase.cs" />
|
||||
<Compile Include="Model\Social\Messaging\SearchQuery.cs" />
|
||||
<Compile Include="Model\Social\Messaging\YaEvent.cs" />
|
||||
<Compile Include="Model\Auth\Tokens.cs" />
|
||||
<Compile Include="Model\Auth\User.cs" />
|
||||
<Compile Include="PinPage.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
<Compile Include="SearchPage.xaml.cs">
|
||||
|
|
|
|||
|
|
@ -18,7 +18,7 @@ namespace BookAStar
|
|||
|
||||
GoogleCloudMobileDeclaration GetDeviceInfo();
|
||||
|
||||
// void RegisterThisDevice();
|
||||
void PostDeviceInfo();
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@ using System.Runtime.InteropServices;
|
|||
[assembly: AssemblyCopyright("Copyright © Paul Albert Schneider 2016")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
[assembly: NeutralResourcesLanguage("en")]
|
||||
[assembly: NeutralResourcesLanguage("fr")]
|
||||
|
||||
// Version information for an assembly consists of the following four values:
|
||||
//
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue