Skip to content

Commit

Permalink
Merge pull request #20 from adjust/windows_deeplink
Browse files Browse the repository at this point in the history
Windows deeplink
  • Loading branch information
nonelse committed Oct 13, 2014
2 parents bb2df5a + 01a714f commit 5fa65ad
Show file tree
Hide file tree
Showing 46 changed files with 94 additions and 75 deletions.
Binary file removed Adjust_v3.4.0.unitypackage
Binary file not shown.
Binary file added Adjust_v3.4.1.unitypackage
Binary file not shown.
2 changes: 1 addition & 1 deletion Assets/Adjust.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public class Adjust : MonoBehaviour {
public AdjustUtil.AdjustEnvironment environment = AdjustUtil.AdjustEnvironment.Sandbox;
public bool eventBuffering = false;
public bool startManually = false;
public const string sdkPrefix = "unity3.4.0";
public const string sdkPrefix = "unity3.4.1";

void Awake() {
if (!this.startManually) {
Expand Down
4 changes: 2 additions & 2 deletions Assets/Editor/AdjustEditor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -81,12 +81,12 @@ static int RunPostBuildScript (bool preBuild, string pathToBuiltProject = "") {
string arguments = null;

#if UNITY_ANDROID
pathToScript = "/Editor/AdjustPostBuildAndroid";
pathToScript = "/Editor/PostprocessBuildPlayer_AdjustPostBuildAndroid";
arguments = "\"" + Application.dataPath + "\"";
if (preBuild)
arguments = "--pre-build " + arguments;
#elif UNITY_IOS
pathToScript = "/Editor/AdjustPostBuildiOS";
pathToScript = "/Editor/PostprocessBuildPlayer_AdjustPostBuildiOS";
if (AdjustEditor.iOSBuildPath == "") {
arguments = "\"" + pathToBuiltProject + "\"";
} else {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ def LogInput(writeObject):
return Log

def parse_input(Log, parser):
args = parser.parse_args()
args = parser.parse_known_args()
assets_path = args.assets_path

android_plugin_path = os.path.join(assets_path, "Plugins/Android/")
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def LogInput(writeObject):
return Log

def get_paths(Log, parser, xcode_sdk_path):
args = parser.parse_args()
args = parser.parse_known_args()

This comment has been minimized.

Copy link
@rumblemin

rumblemin Oct 14, 2014

parse_known_args has a different return format than parse_args - https://docs.python.org/3/library/argparse.html

This code was crashing this script (silently) for me under python 2.7.5 on OSX

This seemed to work as intended,
args, ignored_args = parser.parse_known_args()

This comment has been minimized.

Copy link
@nonelse

nonelse Oct 14, 2014

Author Member
ios_project_path = args.ios_project_path

unity_xcode_project_path = ios_project_path + "/Unity-iPhone.xcodeproj/project.pbxproj"
Expand Down
File renamed without changes.
Binary file modified Assets/Plugins/AdjustUnityWP.dll
Binary file not shown.
Binary file modified Assets/Plugins/AdjustUnityWS.dll
Binary file not shown.
Binary file modified Assets/Plugins/Metro/AdjustUnityWS.dll
Binary file not shown.
Binary file modified Assets/Plugins/Metro/AdjustWS.dll
Binary file not shown.
Binary file modified Assets/Plugins/Metro/Microsoft.Threading.Tasks.Extensions.dll
Binary file not shown.
Binary file modified Assets/Plugins/Metro/Microsoft.Threading.Tasks.dll
Binary file not shown.
Binary file modified Assets/Plugins/Metro/Newtonsoft.Json.dll
Binary file not shown.
Binary file modified Assets/Plugins/Metro/PCLStorage.Abstractions.dll
Binary file not shown.
Binary file modified Assets/Plugins/Metro/PCLStorage.dll
Binary file not shown.
Binary file modified Assets/Plugins/Metro/System.Net.Http.Extensions.dll
Binary file not shown.
Binary file modified Assets/Plugins/Metro/System.Net.Http.Primitives.dll
Binary file not shown.
Binary file modified Assets/Plugins/Metro/WindowsPcl.dll
Binary file not shown.
Binary file modified Assets/Plugins/Metro/WindowsPclNet40.dll
Binary file not shown.
Binary file added Assets/Plugins/Metro/WindowsUap.dll
Binary file not shown.
1 change: 1 addition & 0 deletions Assets/Plugins/Metro/src/AdjustUnityWS/RealDLL/AdjustWS.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ public static void AppDidLaunch(string appToken, string sEnvironment, string sdk
Adjust.SetLogLevel((LogLevel)logLevel);

Adjust.SetEventBufferingEnabled(eventBuffering);
Adjust.SetLogDelegate(msg => System.Diagnostics.Debug.WriteLine(msg));
}

public static void AppDidActivate()
Expand Down
54 changes: 32 additions & 22 deletions Assets/Plugins/Metro/src/AdjustUnityWS/RealDLL/RealDLL.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
<MinimumVisualStudioVersion>12</MinimumVisualStudioVersion>
<FileAlignment>512</FileAlignment>
<ProjectTypeGuids>{BC8A1FFA-BEE3-4634-8014-F334798102B3};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<NuGetPackageImportStamp>40f77ebc</NuGetPackageImportStamp>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
Expand Down Expand Up @@ -109,44 +110,53 @@
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<Reference Include="AdjustWS, Version=3.3.1.0, Culture=neutral, processorArchitecture=MSIL">
<Reference Include="AdjustWS, Version=3.5.0.0, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\Adjust.3.3.2\lib\netcore45\AdjustWS.dll</HintPath>
<HintPath>..\packages\Adjust.3.5.0\lib\netcore45\AdjustWS.dll</HintPath>
</Reference>
<Reference Include="Microsoft.Threading.Tasks">
<HintPath>..\packages\Microsoft.Bcl.Async.1.0.165\lib\win8\Microsoft.Threading.Tasks.dll</HintPath>
<Reference Include="Microsoft.Threading.Tasks, Version=1.0.12.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\Microsoft.Bcl.Async.1.0.168\lib\win8\Microsoft.Threading.Tasks.dll</HintPath>
</Reference>
<Reference Include="Microsoft.Threading.Tasks.Extensions">
<HintPath>..\packages\Microsoft.Bcl.Async.1.0.165\lib\win8\Microsoft.Threading.Tasks.Extensions.dll</HintPath>
<Reference Include="Microsoft.Threading.Tasks.Extensions, Version=1.0.12.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\Microsoft.Bcl.Async.1.0.168\lib\win8\Microsoft.Threading.Tasks.Extensions.dll</HintPath>
</Reference>
<Reference Include="Newtonsoft.Json">
<HintPath>..\packages\Newtonsoft.Json.5.0.8\lib\netcore45\Newtonsoft.Json.dll</HintPath>
<Reference Include="Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\Newtonsoft.Json.6.0.5\lib\netcore45\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include="PCLStorage">
<HintPath>..\packages\PCLStorage.0.9.1\lib\win8\PCLStorage.dll</HintPath>
<Reference Include="PCLStorage, Version=0.9.6.0, Culture=neutral, PublicKeyToken=286fe515a2c35b64, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\PCLStorage.0.9.6\lib\portable-win8+wpa81\PCLStorage.dll</HintPath>
</Reference>
<Reference Include="PCLStorage.Abstractions">
<HintPath>..\packages\PCLStorage.0.9.1\lib\win8\PCLStorage.Abstractions.dll</HintPath>
<Reference Include="PCLStorage.Abstractions, Version=0.9.6.0, Culture=neutral, PublicKeyToken=286fe515a2c35b64, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\PCLStorage.0.9.6\lib\portable-win8+wpa81\PCLStorage.Abstractions.dll</HintPath>
</Reference>
<Reference Include="System.Net.Http.Extensions">
<HintPath>..\packages\Microsoft.Net.Http.2.2.18\lib\win8\System.Net.Http.Extensions.dll</HintPath>
<Reference Include="System.Net.Http.Extensions, Version=2.2.28.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\Microsoft.Net.Http.2.2.28\lib\win8\System.Net.Http.Extensions.dll</HintPath>
</Reference>
<Reference Include="System.Net.Http.Primitives">
<HintPath>..\packages\Microsoft.Net.Http.2.2.18\lib\win8\System.Net.Http.Primitives.dll</HintPath>
<Reference Include="System.Net.Http.Primitives, Version=4.2.28.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\Microsoft.Net.Http.2.2.28\lib\win8\System.Net.Http.Primitives.dll</HintPath>
</Reference>
<Reference Include="WindowsPcl, Version=3.3.1.0, Culture=neutral, processorArchitecture=MSIL">
<Reference Include="WindowsPcl, Version=3.5.0.0, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\Adjust.3.3.2\lib\netcore45\WindowsPcl.dll</HintPath>
<HintPath>..\packages\Adjust.3.5.0\lib\netcore45\WindowsPcl.dll</HintPath>
</Reference>
</ItemGroup>
<PropertyGroup Condition=" '$(VisualStudioVersion)' == '' or '$(VisualStudioVersion)' &lt; '12.0' ">
<VisualStudioVersion>12.0</VisualStudioVersion>
</PropertyGroup>
<Import Project="$(MSBuildExtensionsPath)\Microsoft\WindowsXaml\v$(VisualStudioVersion)\Microsoft.Windows.UI.Xaml.CSharp.targets" />
<Import Project="..\packages\Microsoft.Bcl.Build.1.0.14\tools\Microsoft.Bcl.Build.targets" Condition="Exists('..\packages\Microsoft.Bcl.Build.1.0.14\tools\Microsoft.Bcl.Build.targets')" />
<Target Name="EnsureBclBuildImported" BeforeTargets="BeforeBuild" Condition="'$(BclBuildImported)' == ''">
<Error Condition="!Exists('..\packages\Microsoft.Bcl.Build.1.0.14\tools\Microsoft.Bcl.Build.targets')" Text="This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=317567." HelpKeyword="BCLBUILD2001" />
<Error Condition="Exists('..\packages\Microsoft.Bcl.Build.1.0.14\tools\Microsoft.Bcl.Build.targets')" Text="The build restored NuGet packages. Build the project again to include these packages in the build. For more information, see http://go.microsoft.com/fwlink/?LinkID=317568." HelpKeyword="BCLBUILD2002" />
<Import Project="..\packages\Microsoft.Bcl.Build.1.0.21\build\Microsoft.Bcl.Build.targets" Condition="Exists('..\packages\Microsoft.Bcl.Build.1.0.21\build\Microsoft.Bcl.Build.targets')" />
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
<PropertyGroup>
<ErrorText>This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
</PropertyGroup>
<Error Condition="!Exists('..\packages\Microsoft.Bcl.Build.1.0.21\build\Microsoft.Bcl.Build.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Microsoft.Bcl.Build.1.0.21\build\Microsoft.Bcl.Build.targets'))" />
</Target>
<!-- 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.
Expand Down
14 changes: 7 additions & 7 deletions Assets/Plugins/Metro/src/AdjustUnityWS/RealDLL/packages.config
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Adjust" version="3.3.2" targetFramework="win81" />
<package id="Microsoft.Bcl" version="1.1.7" targetFramework="win81" />
<package id="Microsoft.Bcl.Async" version="1.0.165" targetFramework="win81" />
<package id="Microsoft.Bcl.Build" version="1.0.14" targetFramework="win81" />
<package id="Microsoft.Net.Http" version="2.2.18" targetFramework="win81" />
<package id="Newtonsoft.Json" version="5.0.8" targetFramework="win81" />
<package id="PCLStorage" version="0.9.1" targetFramework="win81" />
<package id="Adjust" version="3.5.0" targetFramework="win81" />
<package id="Microsoft.Bcl" version="1.1.9" targetFramework="win81" />
<package id="Microsoft.Bcl.Async" version="1.0.168" targetFramework="win81" />
<package id="Microsoft.Bcl.Build" version="1.0.21" targetFramework="win81" />
<package id="Microsoft.Net.Http" version="2.2.28" targetFramework="win81" />
<package id="Newtonsoft.Json" version="6.0.5" targetFramework="win81" />
<package id="PCLStorage" version="0.9.6" targetFramework="win81" />
</packages>
Binary file modified Assets/Plugins/WP8/AdjustUnityWP.dll
Binary file not shown.
Binary file removed Assets/Plugins/WP8/AdjustWP.dll
Binary file not shown.
4 changes: 0 additions & 4 deletions Assets/Plugins/WP8/AdjustWP.dll.meta

This file was deleted.

Binary file added Assets/Plugins/WP8/AdjustWP80.dll
Binary file not shown.
Binary file not shown.
Binary file modified Assets/Plugins/WP8/Microsoft.Threading.Tasks.Extensions.dll
Binary file not shown.
Binary file modified Assets/Plugins/WP8/Microsoft.Threading.Tasks.dll
Binary file not shown.
Binary file modified Assets/Plugins/WP8/Newtonsoft.Json.dll
Binary file not shown.
Binary file modified Assets/Plugins/WP8/PCLStorage.Abstractions.dll
Binary file not shown.
Binary file modified Assets/Plugins/WP8/PCLStorage.dll
Binary file not shown.
Binary file modified Assets/Plugins/WP8/System.Net.Http.Extensions.dll
Binary file not shown.
Binary file modified Assets/Plugins/WP8/System.Net.Http.Primitives.dll
Binary file not shown.
Binary file modified Assets/Plugins/WP8/System.Net.Http.dll
Binary file not shown.
Binary file modified Assets/Plugins/WP8/WindowsPcl.dll
Binary file not shown.
Binary file modified Assets/Plugins/WP8/WindowsPclNet40.dll
Binary file not shown.
1 change: 1 addition & 0 deletions Assets/Plugins/WP8/src/AdjustUnityWP/RealDLL/AdjustWP.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ public static void AppDidLaunch(string appToken, string sEnvironment, string sdk
Adjust.SetLogLevel((LogLevel)logLevel);

Adjust.SetEventBufferingEnabled(eventBuffering);
Adjust.SetLogDelegate(msg => System.Diagnostics.Debug.WriteLine(msg));
}

public static void AppDidActivate()
Expand Down
66 changes: 39 additions & 27 deletions Assets/Plugins/WP8/src/AdjustUnityWP/RealDLL/RealDLL.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
<ValidateXaml>true</ValidateXaml>
<MinimumVisualStudioVersion>11.0</MinimumVisualStudioVersion>
<ThrowErrorsInValidation>true</ThrowErrorsInValidation>
<NuGetPackageImportStamp>ad77222a</NuGetPackageImportStamp>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
Expand Down Expand Up @@ -87,55 +88,66 @@
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<ItemGroup>
<None Include="app.config" />
<None Include="packages.config" />
</ItemGroup>
<ItemGroup>
<Reference Include="AdjustWP, Version=3.3.1.0, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\Adjust.3.3.2\lib\wp8\AdjustWP.dll</HintPath>
<Reference Include="AdjustWP80">
<HintPath>..\packages\Adjust.3.5.0\lib\wp8\AdjustWP80.dll</HintPath>
</Reference>
<Reference Include="Md5.WP7">
<HintPath>..\packages\Md5.WP7.1.0.3\lib\wp7\Md5.WP7.dll</HintPath>
</Reference>
<Reference Include="Microsoft.Threading.Tasks">
<HintPath>..\packages\Microsoft.Bcl.Async.1.0.165\lib\wp8\Microsoft.Threading.Tasks.dll</HintPath>
<Reference Include="Microsoft.Threading.Tasks, Version=1.0.12.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\Microsoft.Bcl.Async.1.0.168\lib\wp8\Microsoft.Threading.Tasks.dll</HintPath>
</Reference>
<Reference Include="Microsoft.Threading.Tasks.Extensions">
<HintPath>..\packages\Microsoft.Bcl.Async.1.0.165\lib\wp8\Microsoft.Threading.Tasks.Extensions.dll</HintPath>
<Reference Include="Microsoft.Threading.Tasks.Extensions, Version=1.0.12.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\Microsoft.Bcl.Async.1.0.168\lib\wp8\Microsoft.Threading.Tasks.Extensions.dll</HintPath>
</Reference>
<Reference Include="Microsoft.Threading.Tasks.Extensions.Phone">
<HintPath>..\packages\Microsoft.Bcl.Async.1.0.165\lib\wp8\Microsoft.Threading.Tasks.Extensions.Phone.dll</HintPath>
<Reference Include="Microsoft.Threading.Tasks.Extensions.Phone, Version=1.0.12.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\Microsoft.Bcl.Async.1.0.168\lib\wp8\Microsoft.Threading.Tasks.Extensions.Phone.dll</HintPath>
</Reference>
<Reference Include="Newtonsoft.Json">
<HintPath>..\packages\Newtonsoft.Json.5.0.8\lib\portable-net45+wp80+win8\Newtonsoft.Json.dll</HintPath>
<Reference Include="Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\Newtonsoft.Json.6.0.5\lib\portable-net45+wp80+win8+wpa81\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include="PCLStorage">
<HintPath>..\packages\PCLStorage.0.9.1\lib\wp8\PCLStorage.dll</HintPath>
<Reference Include="PCLStorage, Version=0.9.6.0, Culture=neutral, PublicKeyToken=286fe515a2c35b64, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\PCLStorage.0.9.6\lib\wp8\PCLStorage.dll</HintPath>
</Reference>
<Reference Include="PCLStorage.Abstractions">
<HintPath>..\packages\PCLStorage.0.9.1\lib\wp8\PCLStorage.Abstractions.dll</HintPath>
<Reference Include="PCLStorage.Abstractions, Version=0.9.6.0, Culture=neutral, PublicKeyToken=286fe515a2c35b64, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\PCLStorage.0.9.6\lib\wp8\PCLStorage.Abstractions.dll</HintPath>
</Reference>
<Reference Include="System.Net.Http">
<HintPath>..\packages\Microsoft.Net.Http.2.2.18\lib\sl4-windowsphone71\System.Net.Http.dll</HintPath>
<Reference Include="System.Net.Http, Version=1.5.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\Microsoft.Net.Http.2.2.28\lib\sl4-windowsphone71\System.Net.Http.dll</HintPath>
</Reference>
<Reference Include="System.Net.Http.Extensions">
<HintPath>..\packages\Microsoft.Net.Http.2.2.18\lib\sl4-windowsphone71\System.Net.Http.Extensions.dll</HintPath>
<Reference Include="System.Net.Http.Extensions, Version=1.5.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\Microsoft.Net.Http.2.2.28\lib\sl4-windowsphone71\System.Net.Http.Extensions.dll</HintPath>
</Reference>
<Reference Include="System.Net.Http.Primitives">
<HintPath>..\packages\Microsoft.Net.Http.2.2.18\lib\sl4-windowsphone71\System.Net.Http.Primitives.dll</HintPath>
<Reference Include="System.Net.Http.Primitives, Version=1.5.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\Microsoft.Net.Http.2.2.28\lib\sl4-windowsphone71\System.Net.Http.Primitives.dll</HintPath>
</Reference>
<Reference Include="WindowsPcl, Version=3.3.1.0, Culture=neutral, processorArchitecture=MSIL">
<Reference Include="WindowsPcl, Version=3.5.0.0, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\Adjust.3.3.2\lib\wp8\WindowsPcl.dll</HintPath>
<HintPath>..\packages\Adjust.3.5.0\lib\wp8\WindowsPcl.dll</HintPath>
</Reference>
</ItemGroup>
<Import Project="$(MSBuildExtensionsPath)\Microsoft\$(TargetFrameworkIdentifier)\$(TargetFrameworkVersion)\Microsoft.$(TargetFrameworkIdentifier).$(TargetFrameworkVersion).Overrides.targets" />
<Import Project="$(MSBuildExtensionsPath)\Microsoft\$(TargetFrameworkIdentifier)\$(TargetFrameworkVersion)\Microsoft.$(TargetFrameworkIdentifier).CSharp.targets" />
<ProjectExtensions />
<Import Project="..\packages\Microsoft.Bcl.Build.1.0.14\tools\Microsoft.Bcl.Build.targets" Condition="Exists('..\packages\Microsoft.Bcl.Build.1.0.14\tools\Microsoft.Bcl.Build.targets')" />
<Target Name="EnsureBclBuildImported" BeforeTargets="BeforeBuild" Condition="'$(BclBuildImported)' == ''">
<Error Condition="!Exists('..\packages\Microsoft.Bcl.Build.1.0.14\tools\Microsoft.Bcl.Build.targets')" Text="This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=317567." HelpKeyword="BCLBUILD2001" />
<Error Condition="Exists('..\packages\Microsoft.Bcl.Build.1.0.14\tools\Microsoft.Bcl.Build.targets')" Text="The build restored NuGet packages. Build the project again to include these packages in the build. For more information, see http://go.microsoft.com/fwlink/?LinkID=317568." HelpKeyword="BCLBUILD2002" />
<Import Project="..\packages\Microsoft.Bcl.Build.1.0.21\build\Microsoft.Bcl.Build.targets" Condition="Exists('..\packages\Microsoft.Bcl.Build.1.0.21\build\Microsoft.Bcl.Build.targets')" />
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
<PropertyGroup>
<ErrorText>This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
</PropertyGroup>
<Error Condition="!Exists('..\packages\Microsoft.Bcl.Build.1.0.21\build\Microsoft.Bcl.Build.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Microsoft.Bcl.Build.1.0.21\build\Microsoft.Bcl.Build.targets'))" />
</Target>
<!-- 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.
Expand Down
14 changes: 7 additions & 7 deletions Assets/Plugins/WP8/src/AdjustUnityWP/RealDLL/packages.config
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Adjust" version="3.3.2" targetFramework="wp80" />
<package id="Adjust" version="3.5.0" targetFramework="wp80" />
<package id="Md5.WP7" version="1.0.3" targetFramework="wp80" />
<package id="Microsoft.Bcl" version="1.1.7" targetFramework="wp80" />
<package id="Microsoft.Bcl.Async" version="1.0.165" targetFramework="wp80" />
<package id="Microsoft.Bcl.Build" version="1.0.14" targetFramework="wp80" />
<package id="Microsoft.Net.Http" version="2.2.18" targetFramework="wp80" />
<package id="Newtonsoft.Json" version="5.0.8" targetFramework="wp80" />
<package id="PCLStorage" version="0.9.1" targetFramework="wp80" />
<package id="Microsoft.Bcl" version="1.1.9" targetFramework="wp80" />
<package id="Microsoft.Bcl.Async" version="1.0.168" targetFramework="wp80" />
<package id="Microsoft.Bcl.Build" version="1.0.21" targetFramework="wp80" />
<package id="Microsoft.Net.Http" version="2.2.28" targetFramework="wp80" />
<package id="Newtonsoft.Json" version="6.0.5" targetFramework="wp80" />
<package id="PCLStorage" version="0.9.6" targetFramework="wp80" />
</packages>
1 change: 0 additions & 1 deletion Assets/Plugins/iOS/AdjustUnity.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
@interface AdjustUnity : NSObject<AdjustDelegate>

- (void)adjustFinishedTrackingWithResponse:(AIResponseData *)responseData;
- (void)setResponseDelegate;

@end

Loading

0 comments on commit 5fa65ad

Please sign in to comment.