Skip to content
This repository has been archived by the owner on Feb 19, 2020. It is now read-only.

Version 4.1.0-beta.2

Pre-release
Pre-release
Compare
Choose a tag to compare
@lumaxis lumaxis released this 06 May 01:51
· 612 commits to develop since this release

Includes a critical bugfix from Version 4.0.1:

  • [BUGFIX] Fixes an issue where the whole app's Application Support directory was accidentally excluded from backups.
    This SDK release explicitly includes the Application Support directory into backups. If you want to opt-out of this fix and keep the Application Directory's backup flag untouched, add the following line above the SDK setup code:
    • Objective-C:

        [[NSUserDefaults standardUserDefaults] setBool:YES forKey:@"kBITExcludeApplicationSupportFromBackup"];
    • Swift:

        NSUserDefaults.standardUserDefaults().setBool(true, forKey: "kBITExcludeApplicationSupportFromBackup")
  • [BUGFIX] Fixes an issue that prevented preparedItemsForFeedbackManager: delegate method from working