Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Releases/6.0.3.0 #21

Merged
merged 2 commits into from
Sep 7, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions AppsFlyerSampleApp/AppDelegate.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ public override bool FinishedLaunching (UIApplication application, NSDictionary
appsflyer.AppInviteOneLinkID = "E2bM"; // Replace with your OneLink ID
appsflyer.AnonymizeUser = true;
if (UIDevice.CurrentDevice.CheckSystemVersion (14, 0)) {
appsflyer.WaitForAdvertisingIdentifierWithTimeoutInterval (10); // When Xamarin.iOS will support AppTrackingTransparency, you should implement a popup asking for IDFA permission
// Ask for the IDFA permission here (with AppTrackingTransparency framework)
appsflyer.waitForATTUserAuthorizationWithTimeoutInterval (10);
AppTrackingTransparency.ATTrackingManager.RequestTrackingAuthorizationAsync ();
}
string [] networks = {"test_int", "partner_int"};
appsflyer.SharingFilter = networks;
Expand Down
2 changes: 1 addition & 1 deletion AppsFlyerSampleApp/AppsFlyerSampleApp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
<Reference Include="System.Core" />
<Reference Include="Xamarin.iOS" />
<Reference Include="AppsFlyerXamarinBinding">
<HintPath>..\packages\AppsFlyerXamarinBinding.6.0.2\lib\xamarinios10\AppsFlyerXamarinBinding.dll</HintPath>
<HintPath>..\packages\AppsFlyerXamarinBinding.6.0.3\lib\xamarinios10\AppsFlyerXamarinBinding.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions AppsFlyerSampleApp/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
<string>com.appsflyer.xamarinsample</string>
<key>CFBundleDisplayName</key>
<string>Xamarin Sample App</string>
<key>Privacy - Tracking Usage Description</key>
<string>Please allow us to read your IDFA</string>
<key>NSUserTrackingUsageDescription</key>
<string>This will allow us to read IDFA</string>
</dict>
</plist>
4 changes: 4 additions & 0 deletions AppsFlyerSampleApp/packages.config
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="AppsFlyerXamarinBinding" version="6.0.3" targetFramework="xamarinios10" />
</packages>
6 changes: 3 additions & 3 deletions AppsFlyerXamarinBinding/ApiDefinition.cs
Original file line number Diff line number Diff line change
Expand Up @@ -232,9 +232,9 @@ interface AppsFlyerLib
void SetSharingFilterForAllPartners ();


// -(void)waitForAdvertisingIdentifierWithTimeoutInterval:(NSTimeInterval)timeoutInterval;
[Export ("waitForAdvertisingIdentifierWithTimeoutInterval:")]
void WaitForAdvertisingIdentifierWithTimeoutInterval (double timeoutInterval);
// -(void)waitForATTUserAuthorizationWithTimeoutInterval:(NSTimeInterval)timeoutInterval;
[Export ("waitForATTUserAuthorizationWithTimeoutInterval:")]
void waitForATTUserAuthorizationWithTimeoutInterval (double timeoutInterval);

// @property (nonatomic) BOOL disableSKAdNetwork;
[Export ("disableSKAdNetwork")]
Expand Down
10 changes: 5 additions & 5 deletions AppsFlyerXamarinBinding/AppsFlyerXamarinBindingiOS.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,18 @@
<RootNamespace>AppsFlyerXamarinBinding</RootNamespace>
<IPhoneResourcePrefix>Resources</IPhoneResourcePrefix>
<AssemblyName>AppsFlyerXamarinBinding</AssemblyName>
<ReleaseVersion>6.0.2.0</ReleaseVersion>
<ReleaseVersion>6.0.3.0</ReleaseVersion>
<PackOnBuild>true</PackOnBuild>
<PackageId>AppsFlyerXamarinBinding</PackageId>
<PackageVersion>6.0.2.0</PackageVersion>
<PackageVersion>6.0.3.0</PackageVersion>
<Authors>AppsFlyer</Authors>
<Description>AppsFlyer SDK iOS Xamarin Binding version 6.0.2.0</Description>
<Description>AppsFlyer SDK iOS Xamarin Binding version 6.0.3.0</Description>
<Copyright>AppsFlyer</Copyright>
<PackageLicenseUrl>https://www.appsflyer.com/privacy-policy/</PackageLicenseUrl>
<Owners>AppsFlyer</Owners>
<PackageProjectUrl>https://github.com/AppsFlyerSDK/XamariniOSBinding</PackageProjectUrl>
<PackageReleaseNotes>iOS SDK 6.0.2</PackageReleaseNotes>
<Summary>AppsFlyer Xamarin Binding version 6.0.2.0. Built with AppsFlyer iOS SDK v6.0.2</Summary>
<PackageReleaseNotes>iOS SDK 6.0.3</PackageReleaseNotes>
<Summary>AppsFlyer Xamarin Binding version 6.0.3.0. Built with AppsFlyer iOS SDK v6.0.3</Summary>
<Title>AppsFlyerXamarinBinding</Title>
<SynchReleaseVersion>false</SynchReleaseVersion>
</PropertyGroup>
Expand Down
Binary file not shown.
Binary file not shown.
Binary file modified AppsFlyerXamarinBinding/bin/Release/AppsFlyerXamarinBinding.dll
Binary file not shown.
Binary file modified AppsFlyerXamarinBinding/bin/Release/AppsFlyerXamarinBinding.pdb
Binary file not shown.
Binary file modified AppsFlyerXamarinBinding/libAppsFlyerLib.a
Binary file not shown.
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 iOS

AppsFlyer Xamarin Binding version `v6.0.2.0` <br>
Built with AppsFlyer iOS SDK `v6.0.2`
AppsFlyer Xamarin Binding version `v6.0.3.0` <br>
Built with AppsFlyer iOS SDK `v6.0.3`

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

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

1. Go to Project > Add NuGet Packages...
2. Select the AppsFlyerXamarinBinding
3. Select under version - 6.0.2.0
3. Select under version - 6.0.3.0
4. Click `Add Package`


Expand Down