forked from PostHog/posthog-ios
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from PostHog/master
Merge from master
- Loading branch information
Showing
60 changed files
with
319 additions
and
276 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,65 @@ | ||
## 1.4.4 - 2021-11-19 | ||
|
||
Make enabled property public. | ||
|
||
## 1.4.3 - 2021-11-02 | ||
|
||
Add `shouldSendDeviceID` config option. | ||
|
||
## 1.4.2 - 2021-09-17 | ||
|
||
Fix Info.plist warning for Swift Package Manager | ||
|
||
## 1.4.1 - 2021-09-17 | ||
|
||
Fix warning with Swift Package Manager | ||
|
||
## 1.4.0 - 2021-05-27 | ||
|
||
Fix support for Swift Package Manager | ||
|
||
## 1.3.0 - 2021-05-11 | ||
|
||
In the `identify` call the `distinct_id` field can no longer be `nil`. | ||
|
||
## 1.2.3 - 2021-02-24 | ||
|
||
Renamed functions which were causing conflicts with Segment iOS library | ||
|
||
## 1.2.2 - 2020-02-22 | ||
|
||
Swift Package Manager | ||
|
||
## 1.2.1 - 2020-12-18 | ||
|
||
Also remove the `enableAdvertisingCapturing` and `adSupportBlock` config options | ||
|
||
## 1.2.0 - 2020-12-18 | ||
|
||
Completely remove reference to the AdSupport framework | ||
|
||
## 1.1.0 - 2020-10-03 | ||
|
||
Shift responsibility of IDFA collection to clients ([#5](https://github.com/PostHog/posthog-ios/pull/5)) | ||
by removing any references to Apple's AdSupport framework from the library. In case you need to | ||
use the $device_advertisingId field, [see here](https://posthog.com/docs/integrations/ios-integration) for how to enable it. | ||
|
||
## 1.0.5 - 2020-08-25 | ||
|
||
Add Swift Package Manager support | ||
|
||
## 1.0.4 - 2020-05-25 | ||
|
||
Fix selector typo with ad capturing, which resulted in a crash when moving your app to the foreground. | ||
|
||
## 1.0.3 - 2020-05-20 | ||
Support passing in custom library version and name. This is used in the React Native client. | ||
|
||
Support passing in custom library version and name. This is used in the React Native client. | ||
|
||
## 1.0.2 - 2020-05-18 | ||
Fix issues with launching the library and screen tracking. | ||
|
||
Fix issues with launching the library and screen tracking. | ||
|
||
## 1.0.0 - 2020-04-22 | ||
|
||
First Release. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,35 @@ | ||
// swift-tools-version:5.2 | ||
// swift-tools-version:5.3 | ||
|
||
import PackageDescription | ||
|
||
let package = Package( | ||
name: "PostHog", | ||
platforms: [ | ||
.iOS(.v13), .tvOS(.v13) | ||
], | ||
products: [ | ||
.library(name: "PostHog", targets: ["PostHog"]), | ||
// Products define the executables and libraries a package produces, and make them visible to other packages. | ||
.library( | ||
name: "PostHog", | ||
targets: ["PostHog"]), | ||
], | ||
targets: [ | ||
// Targets are the basic building blocks of a package. A target can define a module or a test suite. | ||
// Targets can depend on other targets in this package, and on products in packages which this package depends on. | ||
.target( | ||
name: "PostHog", | ||
dependencies: [], | ||
path: "PostHog" | ||
), | ||
// .testTarget( | ||
// name: "PostHogTests", | ||
// dependencies: ["PostHog"], | ||
// path: "PostHogTests" | ||
// ), | ||
path: "PostHog/", | ||
exclude: ["Info.plist"], | ||
sources: ["Classes", | ||
"Internal", | ||
"Vendor"], | ||
publicHeadersPath: "Classes", | ||
cSettings: [ | ||
.headerSearchPath("Vendor"), | ||
.headerSearchPath("Internal"), | ||
.headerSearchPath("Classes"), | ||
] | ||
) | ||
] | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.