Skip to content

Commit d497124

Browse files
authored
Merge pull request #29 from AppsFlyerSDK/releases/6.2.4.0
Releases/6.2.4.0
2 parents 1140113 + 3595a51 commit d497124

File tree

11 files changed

+16
-9
lines changed

11 files changed

+16
-9
lines changed

AppsFlyerSampleApp/AppDelegate.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ public override bool FinishedLaunching (UIApplication application, NSDictionary
2323
// Override point for customization after application launch.
2424
// If not required for your application you can safely delete this method
2525
appsflyer.IsDebug = true;
26+
//appsflyer.DisableSKAdNetwork = true;
27+
appsflyer.CurrencyCode = "GBP";
2628
appsflyer.AppsFlyerDevKey = "4UGrDF4vFvPLbHq5bXtCza"; // Replace with your DevKey
2729
appsflyer.AppleAppID = "753258300"; // Replace with your app ID
2830
appsflyer.AppInviteOneLinkID = "E2bM"; // Replace with your OneLink ID

AppsFlyerSampleApp/AppsFlyerSampleApp.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
<Reference Include="System.Core" />
7878
<Reference Include="Xamarin.iOS" />
7979
<Reference Include="AppsFlyerXamarinBinding">
80-
<HintPath>..\packages\AppsFlyerXamarinBinding.6.2.3\lib\xamarinios10\AppsFlyerXamarinBinding.dll</HintPath>
80+
<HintPath>..\packages\AppsFlyerXamarinBinding.6.2.4\lib\xamarinios10\AppsFlyerXamarinBinding.dll</HintPath>
8181
</Reference>
8282
<Reference Include="System.Drawing.Common.dll" />
8383
</ItemGroup>

AppsFlyerSampleApp/ViewController.cs

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,16 +31,21 @@ public override void DidReceiveMemoryWarning ()
3131

3232
partial void EventButton_TouchUpInside (UIButton sender)
3333
{
34-
var addToCartEvent = new NSDictionary (AFEventParameter.AFEventParamContentId, "id123",
34+
var addToCartEvent = new NSDictionary (
35+
AFEventParameter.AFEventParamContentId, "id123",
3536
AFEventParameter.AFEventParamContentType, "type 1",
36-
AFEventParameter.AFEventParamCurrency, "USD",
37+
AFEventParameter.AFEventParamCurrency, "GBP",
38+
AFEventParameter.AFEventParamRevenue, 20,
3739
AFEventParameter.AFEventParamDescription, "Description example");
40+
41+
AppsFlyerLib.Shared.LogEvent (AFEventName.AFEventPurchase, addToCartEvent);
42+
3843
AppsFlyerLib.Shared.LogEvent (AFEventName.AFEventAddToCart, addToCartEvent);
3944
}
4045

4146
partial void ShareButton_TouchUpInside (UIButton sender)
4247
{
43-
AppsFlyerXamarinBinding.AppsFlyerShareInviteHelper.generateInviteUrlWithLinkGenerator (
48+
AppsFlyerShareInviteHelper.generateInviteUrlWithLinkGenerator (
4449
(linkGenerator) => {
4550
linkGenerator.setChannel ("channel_name");
4651
linkGenerator.setReferrerName ("ref_name");

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.2.3" targetFramework="xamarinios10" />
3+
<package id="AppsFlyerXamarinBinding" version="6.2.4" targetFramework="xamarinios10" />
44
</packages>

AppsFlyerXamarinBinding/AppsFlyerXamarinBindingiOS.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,17 @@
1010
<RootNamespace>AppsFlyerXamarinBinding</RootNamespace>
1111
<IPhoneResourcePrefix>Resources</IPhoneResourcePrefix>
1212
<AssemblyName>AppsFlyerXamarinBinding</AssemblyName>
13-
<ReleaseVersion>6.2.3.0</ReleaseVersion>
13+
<ReleaseVersion>6.2.4.0</ReleaseVersion>
1414
<PackOnBuild>true</PackOnBuild>
1515
<PackageId>AppsFlyerXamarinBinding</PackageId>
16-
<PackageVersion>6.2.3.0</PackageVersion>
16+
<PackageVersion>6.2.4.0</PackageVersion>
1717
<Authors>AppsFlyer</Authors>
1818
<Description>AppsFlyer SDK iOS Xamarin Binding</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.2.3</PackageReleaseNotes>
23+
<PackageReleaseNotes>iOS SDK 6.2.4</PackageReleaseNotes>
2424
<Summary>AppsFlyer SDK iOS Xamarin Binding</Summary>
2525
<Title>AppsFlyerXamarinBinding</Title>
2626
<SynchReleaseVersion>false</SynchReleaseVersion>

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.2.3.0")]
28+
[assembly: AssemblyVersion ("6.2.4.0")]
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.
-1.5 KB
Binary file not shown.
-88 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)