Skip to content

Releases: devtodev-analytics/unity-sdk

v2.10.1

28 Nov 14:05
Compare
Choose a tag to compare
  • Minimum Unity version was downgraded to 2017.1

v2.10

18 Oct 18:23
Compare
Choose a tag to compare
  • Added a property that allows to get current device id
var deviceId = Analytics.DeviceId
  • Added new options for iOS 12 push notifications
PushManager.PushNotificationOptions = (DTDNotificationOptions.Alert | DTDNotificationOptions.Badge | DTDNotificationOptions.Sound | DTDNotificationOptions.Provisional)
public enum DTDNotificationOptions: uint {  
        Badge = (1 << 0),  
        Sound = (1 << 1),  
        Alert = (1 << 2),  
        CarPlay = (1 << 3),  
        CriticalAlert = (1 << 4),  
        AppNotificationSettings = (1 << 5),  
        Provisional = (1 << 6). 
}
  • Fixed issues with push notifications on Android 4.0
  • Optimized the tracking of the Users Online metric
  • Updated Firebase dependencies and Google Play Services
  • Updated Google Play Resolver to the version 1.2.93

v2.9.3

18 Sep 11:49
Compare
Choose a tag to compare
  • User online calculation was improved
  • Removed i386 architecture from MacOS framework
  • Backward compatibility is restored to Unity 2017.X
  • Support UWP platform for .NET scripting backend was restored

v2.9.2

27 Aug 07:54
Compare
Choose a tag to compare
  • Fixed an issue where a decimal separator in data sent was different from a dot due to user locale specifics
  • Better performance in offline mode
  • Improvements to how user sessions are calculated

v2.9.1

15 Aug 14:04
Compare
Choose a tag to compare
  • Compatibility with Unity 2018.2
  • Improved user tracking on Android
  • Improved push notifications on Android
    Attention! UWP platform is temporary out of support! If you use it please wait for the next release.

v2.8.1

22 Jun 16:03
Compare
Choose a tag to compare
  • The supported version of Android API is decreased to 14
  • Fixed problems with push-notifications on Android 8

v2.8

23 May 15:56
Compare
Choose a tag to compare
  • Added restriction of user tracking according to the new GDPR rules
  • Some minor bug fixes

v2.7

20 Dec 11:06
Compare
Choose a tag to compare
  • Google Play Resolver was added
  • Android Manifest was removed
  • Push notifications was rewritten to FCM, GCM no longer supported

v2.6

24 Oct 11:33
Compare
Choose a tag to compare
  • Notification channels and badges support for Android O

v2.5.6

06 Oct 15:29
Compare
Choose a tag to compare
  • Network was refactored to UnityWebRequest classes
  • Full refactoring of visual integration window (please remove old IntegrateWindow and DevToDevIntegration files located at Assets/devtodev/Window)
  • iOS timeZone bug was fixed
  • Minimum required Unity version was upped to 5.4