Skip to content

Commit

Permalink
Merge pull request #39 from adjust/v4290
Browse files Browse the repository at this point in the history
Version 4.29.0
  • Loading branch information
uerceg committed Nov 17, 2021
2 parents 367be79 + a0aec64 commit 6e94ae5
Show file tree
Hide file tree
Showing 32 changed files with 1,498 additions and 1,372 deletions.
24 changes: 23 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
### Version 4.29.0 (17th November 2021)
#### Added
- Added possibility to get cost data information in attribution callback.
- Added `NeedsCost` property to `AdjustConfig` to indicate if cost data is needed in attribution callback (by default cost data will not be part of attribution callback if not enabled with this setter method).
- Added `SetPreinstallTrackingEnabled` method to `AdjustConfig` to allow enabling of preinstall tracking in Android (this feature is OFF by default).
- Added preinstall tracking with usage of system installer receiver on Android platform (`SetPreinstallFilePath` method of the `AdjustConfig`).
- Added support for Apple Search Ads attribution with usage of `AdServices.framework`.
- Added `SetAllowAdServicesInfoReading` method to `AdjustConfig` to allow option for users to prevent SDK from performing any tasks related to Apple Search Ads attribution with usage of `AdServices.framework`.
- Added wrapper method `UpdateConversionValue` method to `Adjust` to allow updating SKAdNetwork conversion value via SDK API.
- Added `AppTrackingAuthorizationStatus` property to `Adjust` instance to be able to get current iOS app tracking status.
- Added improved measurement consent management and third party sharing mechanism.
- Added data residency feature. You can choose this setting by setting `UrlStrategy` property of `AdjustConfig` instance with `AdjustConfig.DataResidencyEU` (for EU data residency region), `AdjustConfig.DataResidencyTR` (for TR data residency region) or `AdjustConfig.DataResidencyUS` value (for US data residency region).
- Added `AdjustConversionValueUpdated` method to `AdjustDelegate` which can be used to set a callback to get information when Adjust SDK updates conversion value for the iOS user.

#### Native SDKs
- [iOS@v4.29.6][ios_sdk_v4.29.6]
- [Android@v4.28.7][android_sdk_v4.28.7]

---

### Version 4.28.0 (2nd April 2021)
#### Changed
- Removed native iOS legacy code.
Expand Down Expand Up @@ -262,6 +282,7 @@
[ios_sdk_v4.22.1]: https://github.com/adjust/ios_sdk/tree/v4.22.1
[ios_sdk_v4.23.2]: https://github.com/adjust/ios_sdk/tree/v4.23.2
[ios_sdk_v4.28.0]: https://github.com/adjust/ios_sdk/tree/v4.28.0
[ios_sdk_v4.29.6]: https://github.com/adjust/ios_sdk/tree/v4.29.6

[android_sdk_v4.12.0]: https://github.com/adjust/android_sdk/tree/v4.12.0
[android_sdk_v4.12.4]: https://github.com/adjust/android_sdk/tree/v4.12.4
Expand All @@ -273,4 +294,5 @@
[android_sdk_v4.21.1]: https://github.com/adjust/android_sdk/tree/v4.21.1
[android_sdk_v4.22.0]: https://github.com/adjust/android_sdk/tree/v4.22.0
[android_sdk_v4.24.1]: https://github.com/adjust/android_sdk/tree/v4.24.1
[android_sdk_v4.27.0]: https://github.com/adjust/android_sdk/tree/v4.27.0
[android_sdk_v4.27.0]: https://github.com/adjust/android_sdk/tree/v4.27.0
[android_sdk_v4.28.7]: https://github.com/adjust/android_sdk/tree/v4.28.7
208 changes: 138 additions & 70 deletions README.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.28.0
4.29.0
18 changes: 9 additions & 9 deletions android/AdjustSdk.Xamarin.Android/AdjustReferrerReceiver.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
namespace AdjustBindingsAndroid
{
[BroadcastReceiver(Exported = true, Name = "com.adjust.binding.AdjustReferrerReceiver", Permission = "android.permission.INSTALL_PACKAGES")]
[IntentFilter(new[] { "com.android.vending.INSTALL_REFERRER" })]
public class AdjustReferrerReceiver : BroadcastReceiver
{
private readonly Com.Adjust.Sdk.AdjustReferrerReceiver broadcastReceiver = new Com.Adjust.Sdk.AdjustReferrerReceiver();
[IntentFilter(new[] { "com.android.vending.INSTALL_REFERRER" })]
public class AdjustReferrerReceiver : BroadcastReceiver
{
private readonly Com.Adjust.Sdk.AdjustReferrerReceiver broadcastReceiver = new Com.Adjust.Sdk.AdjustReferrerReceiver();

public override void OnReceive(Context context, Intent intent)
{
broadcastReceiver.OnReceive(context, intent);
}
}
public override void OnReceive(Context context, Intent intent)
{
broadcastReceiver.OnReceive(context, intent);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<MonoAndroidResourcePrefix>Resources</MonoAndroidResourcePrefix>
<MonoAndroidAssetsPrefix>Assets</MonoAndroidAssetsPrefix>
<PackageId>AdjustSdk.Xamarin.Android</PackageId>
<PackageVersion>4.28.0</PackageVersion>
<PackageVersion>4.29.0</PackageVersion>
<Authors>Adjust GmbH</Authors>
<Description>This is the Xamarin Android SDK of Adjust. http://www.adjust.com</Description>
<PackOnBuild>true</PackOnBuild>
Expand Down
Binary file modified android/AdjustSdk.Xamarin.Android/Jars/adjust-android.jar
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
// The form "{Major}.{Minor}.*" will automatically update the build and revision,
// and "{Major}.{Minor}.{Build}.*" will update just the revision.

[assembly: AssemblyVersion("4.28.0")]
[assembly: AssemblyVersion("4.29.0")]

// The following attributes are used to specify the signing key for the assembly,
// if desired. See the Mono documentation for more information about signing.
Expand Down
4 changes: 2 additions & 2 deletions android/Example/MainActivity.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ protected override void OnCreate(Bundle savedInstanceState)
Button btnEnableSDK = FindViewById<Button>(Resource.Id.btnEnableSDK);
Button btnDisableSDK = FindViewById<Button>(Resource.Id.btnDisableSDK);
Button btnIsSDKEnabled = FindViewById<Button>(Resource.Id.btnIsSDKEnabled);
Button btnGetIds = FindViewById<Button>(Resource.Id.btnGetIds);
Button btnGetIds = FindViewById<Button>(Resource.Id.btnGetIds);

btnTrackSimpleEvent.Click += delegate
{
Expand Down Expand Up @@ -113,7 +113,7 @@ protected override void OnCreate(Bundle savedInstanceState)
Console.WriteLine("Adid: " + Adjust.Adid);

if (Adjust.Attribution != null)
{
{
Console.WriteLine("Attribution Traker Token: " + Adjust.Attribution.TrackerToken);
Console.WriteLine("Attribution Traker Name: " + Adjust.Attribution.TrackerName);
Console.WriteLine("Attribution Network: " + Adjust.Attribution.Network);
Expand Down
Loading

0 comments on commit 6e94ae5

Please sign in to comment.