Skip to content
This repository has been archived by the owner on Aug 1, 2024. It is now read-only.

Releases: glassfy/ios-sdk

1.4.2

05 Jun 07:35
Compare
Choose a tag to compare

What's Changed

  • Add isInTrialPeriod property on PurchaseHistory

1.4.1

23 Feb 13:01
Compare
Choose a tag to compare

What's Changed

  • Added Stripe details on StoreInfo API

Paywall

06 Jun 08:23
Compare
Choose a tag to compare

What's Changed

Connect Glassfy Universal Code

05 Apr 12:11
Compare
Choose a tag to compare

Purchase History API

24 Mar 16:58
Compare
Choose a tag to compare

What's Changed

1.3.6

10 Mar 15:50
Compare
Choose a tag to compare

Added API to get purchase history

Glassfy.purchaseHistory { history, err in
    history?.all.forEach({ p in
//                p.type
//                p.productId
//                p.skuId
//                p.store
//                p.expireDate
    })
}

1.3.5

28 Nov 16:00
Compare
Choose a tag to compare

Now you can set attributions attributes with the following code:

Glassfy.setAttribution(type: .IDFA, value: "device_idfa") { err in
            //    [...]
}

the following attributes can be set
Unique Adjust ID of the device. Available after the installation has been successfully tracked.
.AdjustID

App identifier generated by AppsFlyer at installation. A new ID is generated if an app is deleted, then reinstalled.
.AppsFlyerID

Identifier For Advertisers - Unique to each device. Only use for advertising.
.IDFA

Identifier For Vendor - Uniquely identifies a device to the app’s vendor.
.IDFV

User IP address
.IP

1.3.5-beta.0

04 Nov 09:48
Compare
Choose a tag to compare
1.3.5-beta.0 Pre-release
Pre-release

Add API to set attribution tracking ids

Added

  • On Glassfy:
+ (void)setAttributionWithType:(GYAttributionType)type value:(NSString *_Nullable)value completion:(GYErrorCompletion)block;
+ (void)setAttributions:(NSArray<GYAttributionItem*> *)attributions completion:(GYErrorCompletion)block;
  • New class GYAttributionItem:
+ (instancetype)attributionItemWithType:(GYAttributionType)name value:(NSString *_Nullable)value;
  • New enum GYAttributionType:
GYAttributionTypeAdjustID
GYAttributionTypeAppsFlyerID
GYAttributionTypeIDFA
GYAttributionTypeIDFV
GYAttributionTypeIP

1.4.0-beta.0

26 Oct 08:21
Compare
Choose a tag to compare
1.4.0-beta.0 Pre-release
Pre-release

1.3.4

22 Sep 11:18
Compare
Choose a tag to compare
  • New class AccountableSku returned from permission API
  • Log hint