Skip to content

Commit

Permalink
Merge pull request #17 from AppsFlyerSDK/releases/6.2.0.0
Browse files Browse the repository at this point in the history
SDK 6.2.0 update
  • Loading branch information
sokoloff06 authored Feb 16, 2021
2 parents a5ac909 + f6ba451 commit 053b427
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@
<AndroidCodegenTarget>XAJavaInterop1</AndroidCodegenTarget>
<RestoreProjectStyle>PackageReference</RestoreProjectStyle>
<PackageId>AppsFlyerXamarinBindingAndroid</PackageId>
<PackageVersion>6.1.3.0</PackageVersion>
<PackageVersion>6.2.0.0</PackageVersion>
<Authors>AppsFlyer</Authors>
<Description>Xamaring binding for AppsFlyer Android SDK</Description>
<PackageLicenseUrl>https://www.appsflyer.com/terms-of-use/</PackageLicenseUrl>
<Owners>AppsFlyer</Owners>
<PackageProjectUrl>https://github.com/AppsFlyerSDK/XamarinAndroidBinding</PackageProjectUrl>
<PackageReleaseNotes>Android SDK 6.1.3</PackageReleaseNotes>
<PackageReleaseNotes>Android SDK 6.2.0</PackageReleaseNotes>
<Title>AppsFlyerXamarinBindingAndroid</Title>
<PackOnBuild>true</PackOnBuild>
</PropertyGroup>
Expand Down
Binary file modified AppsFlyerXamarinBindingAndroid/Jars/AF-Android-SDK.jar
Binary file not shown.
4 changes: 2 additions & 2 deletions AppsFlyerXamarinBindingAndroid/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,5 @@
// 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("6.1.3.0")]
[assembly: AssemblyFileVersion("6.1.3.0")]
[assembly: AssemblyVersion("6.2.0.0")]
[assembly: AssemblyFileVersion("6.2.0.0")]
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@


Xamarin Binding integration guide For Android
AppsFlyer Xamarin Binding version `v6.1.3.0`
Built with AppsFlyer Android SDK `v6.1.3`
AppsFlyer Xamarin Binding version `v6.2.0.0`
Built with AppsFlyer Android SDK `v6.2.0`

## <a id="v6-breaking-changes"> ❗ v6 Breaking Changes

Expand Down Expand Up @@ -79,7 +79,7 @@ https://www.nuget.org/packages/AppsFlyerXamarinBindingAndroid/

1. Go to Project > Add NuGet Packages...
2. Select the `AppsFlyerXamarinBindingAndroid`
3. Select under version - `6.1.3.0`
3. Select under version - `6.2.0.0`
4. Click `Add Package`


Expand Down
5 changes: 5 additions & 0 deletions XamarinSample/MainActivity.cs
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,11 @@ protected override void OnCreate(Bundle savedInstanceState)
AppsFlyerLib.Instance.Init("4UGrDF4vFvPLbHq5bXtCza", new AppsFlyerConversionDelegate(this), Application);
AppsFlyerLib.Instance.SetAppInviteOneLink("E2bM"); // Replace with OneLink ID from your AppsFlyer account
AppsFlyerLib.Instance.SetSharingFilter(new string[]{"test", "partner_int"});
Dictionary<string, Java.Lang.Object> partnerData =
new Dictionary<string, Java.Lang.Object>();
partnerData.Add("id", "test_id");
partnerData.Add("value", "test_value");
AppsFlyerLib.Instance.SetPartnerData("test_partner", partnerData);
AppsFlyerLib.Instance.SubscribeForDeepLink(new MyDeepLinkListener());
AppsFlyerLib.Instance.Start(this, "4UGrDF4vFvPLbHq5bXtCza"); // Replace with your app DevKey
}
Expand Down
2 changes: 1 addition & 1 deletion XamarinSample/XamarinSample.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@
<Version>1.0.0.1</Version>
</PackageReference>
<PackageReference Include="AppsFlyerXamarinBindingAndroid">
<Version>6.1.3</Version>
<Version>6.2.0</Version>
</PackageReference>
<PackageReference Include="Xamarin.GooglePlayServices.Base">
<Version>71.1610.4</Version>
Expand Down

0 comments on commit 053b427

Please sign in to comment.