Skip to content

Commit 85648c6

Browse files
authored
Merge pull request #25 from AppsFlyerSDK/releases/6.1.3.0
Releases/6.1.3.1
2 parents e84bc5f + ae48a44 commit 85648c6

13 files changed

+33
-18
lines changed

AppsFlyerSampleApp/AppDelegate.cs

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,10 @@ public override bool FinishedLaunching (UIApplication application, NSDictionary
3333
}
3434
string [] networks = {"test_int", "partner_int"};
3535
appsflyer.SharingFilter = networks;
36+
appsflyer.AddPushNotificationDeepLinkPath(new string [] { "key1", "key2" });
3637

37-
38-
39-
// Conversion data callbacks
40-
ViewController controller = (ViewController)Window.RootViewController;
38+
// Conversion data callbacks
39+
ViewController controller = (ViewController)Window.RootViewController;
4140
AppsFlyerLibDelegate af_delegate = new AppsFlyerConversionDataDelegate (controller);
4241
AppsFlyerLib.Shared.Delegate = af_delegate;
4342

AppsFlyerSampleApp/AppsFlyerSampleApp.csproj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,9 @@
7676
<Reference Include="System.Xml" />
7777
<Reference Include="System.Core" />
7878
<Reference Include="Xamarin.iOS" />
79+
<Reference Include="System.Drawing.Common.dll" />
7980
<Reference Include="AppsFlyerXamarinBinding">
80-
<HintPath>..\packages\AppsFlyerXamarinBinding.6.1.1\lib\xamarinios10\AppsFlyerXamarinBinding.dll</HintPath>
81+
<HintPath>..\packages\AppsFlyerXamarinBinding.6.1.3.1\lib\xamarinios10\AppsFlyerXamarinBinding.dll</HintPath>
8182
</Reference>
8283
</ItemGroup>
8384
<ItemGroup>

AppsFlyerSampleApp/packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="AppsFlyerXamarinBinding" version="6.1.1" targetFramework="xamarinios10" />
3+
<package id="AppsFlyerXamarinBinding" version="6.1.3.1" targetFramework="xamarinios10" />
44
</packages>

AppsFlyerXamarinBinding/ApiDefinition.cs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -239,6 +239,14 @@ interface AppsFlyerLib
239239
// @property (nonatomic) BOOL disableSKAdNetwork;
240240
[Export ("disableSKAdNetwork")]
241241
bool DisableSKAdNetwork { get; set; }
242+
243+
// - (void)appendParametersToDeepLinkingURLWithString:(NSString *)containsString parameters:(NSDictionary<NSString*, NSString*>*)parameters
244+
[Export ("appendParametersToDeepLinkingURLWithString:parameters:")]
245+
void AppendParametersToDeepLinkingURL (string containsString, NSDictionary parameters);
246+
247+
// - (void)addPushNotificationDeepLinkPath:(NSArray<NSString *> *)deepLinkPath;
248+
[Export ("addPushNotificationDeepLinkPath:")]
249+
void AddPushNotificationDeepLinkPath (string [] deepLinkPath);
242250
}
243251

244252
[BaseType (typeof (NSObject))]

AppsFlyerXamarinBinding/AppsFlyerXamarinBindingiOS.csproj

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,18 @@
1010
<RootNamespace>AppsFlyerXamarinBinding</RootNamespace>
1111
<IPhoneResourcePrefix>Resources</IPhoneResourcePrefix>
1212
<AssemblyName>AppsFlyerXamarinBinding</AssemblyName>
13-
<ReleaseVersion>6.1.1.0</ReleaseVersion>
13+
<ReleaseVersion>6.1.3.1</ReleaseVersion>
1414
<PackOnBuild>true</PackOnBuild>
1515
<PackageId>AppsFlyerXamarinBinding</PackageId>
16-
<PackageVersion>6.1.1.0</PackageVersion>
16+
<PackageVersion>6.1.3.1</PackageVersion>
1717
<Authors>AppsFlyer</Authors>
18-
<Description>AppsFlyer SDK iOS Xamarin Binding version 6.1.1.0</Description>
18+
<Description>AppsFlyer SDK iOS Xamarin Binding version 6.1.3.1</Description>
1919
<Copyright>AppsFlyer</Copyright>
2020
<PackageLicenseUrl>https://www.appsflyer.com/privacy-policy/</PackageLicenseUrl>
2121
<Owners>AppsFlyer</Owners>
2222
<PackageProjectUrl>https://github.com/AppsFlyerSDK/XamariniOSBinding</PackageProjectUrl>
23-
<PackageReleaseNotes>iOS SDK 6.1.1</PackageReleaseNotes>
24-
<Summary>AppsFlyer Xamarin Binding version 6.1.1.0 Built with AppsFlyer iOS SDK v6.1.1</Summary>
23+
<PackageReleaseNotes>iOS SDK 6.1.3</PackageReleaseNotes>
24+
<Summary>AppsFlyer Xamarin Binding version 6.1.3.1 Built with AppsFlyer iOS SDK v6.1.3</Summary>
2525
<Title>AppsFlyerXamarinBinding</Title>
2626
<SynchReleaseVersion>false</SynchReleaseVersion>
2727
</PropertyGroup>
@@ -66,10 +66,10 @@
6666
</ItemGroup>
6767
<Import Project="$(MSBuildExtensionsPath)\Xamarin\iOS\Xamarin.iOS.ObjCBinding.CSharp.targets" />
6868
<ItemGroup>
69-
<ObjcBindingNativeLibrary Include="libAppsFlyerLib.a" />
69+
<BundleResource Include="packages.config" />
7070
</ItemGroup>
7171
<ItemGroup>
72-
<BundleResource Include="packages.config" />
72+
<ObjcBindingNativeLibrary Include="libAppsFlyerLib.a" />
7373
</ItemGroup>
7474
<Import Project="..\packages\NuGet.Build.Packaging.0.2.2\build\NuGet.Build.Packaging.targets" Condition="Exists('..\packages\NuGet.Build.Packaging.0.2.2\build\NuGet.Build.Packaging.targets')" />
7575
</Project>

AppsFlyerXamarinBinding/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
2626
// and "{Major}.{Minor}.{Build}.*" will update just the revision.
2727

28-
[assembly: AssemblyVersion ("6.1.1.0")]
28+
[assembly: AssemblyVersion ("6.1.3.1")]
2929

3030
// The following attributes are used to specify the signing key for the assembly,
3131
// if desired. See the Mono documentation for more information about signing.
Binary file not shown.
Binary file not shown.
301 KB
Binary file not shown.
500 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)