matomo-sdk-ios
matomo-sdk-ios copied to clipboard
Matomo iOS, tvOS and macOS SDK: a Matomo tracker written in Swift
Hello, My mobile application is available on IOS and Android. For IOS, when navigating to the graph in the Matomo Dashboard, the number of IOS application download remains on 0....
In some reason, our server Matomo web interface cannot process request by POST method. Is it possible to support GET method in SDK? Thank you so much.
Hi, is it possible to use Tag Manager using iOS SDK and send custom event with many custom parameters?
## Issue Current instructions recommend using: ``` .package(url: "https://github.com/matomo-org/matomo-sdk-ios.git", from: "v7.5"), ``` when integrating through SPM, but this will result with: ``` Invalid semantic version string 'v7.5' ``` error while...
Please suport visionOS. in file Device.swift, there is a line #elseif os(iOS) || os(tvOS) Probably it is sufficient to change it to #elseif os(iOS) || os(tvOS) || os(visionOS) To reproduce...
To support Matomo's new [Crash Analytics](https://matomo.org/blog/2023/08/crash-analytics/) feature, we'd like to add crash tracking methods in all supported tracking SDKs. The tracking methods should be similar to the PHP SDK's methods:...
Currently there seems to be no way to reset session information (`sessionsCount`, `firstVisit`, ...) as well as the visitor id. I would propose some functionality that enables deleting all stored...
Forks from #418 Implements #417
Using Xcode 15 Beta 2 and compiling against xrOS beta 1 Xcode build fails in Device.swift in the functions: - internal static func screenSizeForCurrentDevice() -> CGSize - internal static func...
Hi there, I'm reading the latest source code and wondering why it requires running on the main thread. For example: - `MatomoTracker`'s `func queue(event: Event)` and `func dispatchBatch()` - `MemoryQueue`'s...