https://github.com/wingify/vwo-insights-ios-flutter-sdk
VWO Insights SDK for iOS helps you analyze user behavior in your Flutter Application
https://github.com/wingify/vwo-insights-ios-flutter-sdk
Last synced: 3 months ago
JSON representation
VWO Insights SDK for iOS helps you analyze user behavior in your Flutter Application
- Host: GitHub
- URL: https://github.com/wingify/vwo-insights-ios-flutter-sdk
- Owner: wingify
- License: apache-2.0
- Created: 2024-04-18T16:03:29.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-02-14T12:34:33.000Z (4 months ago)
- Last Synced: 2025-02-14T13:34:26.941Z (4 months ago)
- Language: Ruby
- Homepage: https://developers.vwo.com/reference/mobile-insights-ios-sdk-reference
- Size: 16.5 MB
- Stars: 1
- Watchers: 6
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# VWO Insights SDK for iOS
VWO Insights helps you analyze user behavior in your application based on interactions such as application launch, taps, scrolls, and flings. By attributing these actions to critical business events like purchases and sign-ups (which are considered conversions), VWO Insights enables you to identify why users might not be converting. This tool is essential in the research stage of experience optimization, providing insights into what users are (or are not) doing in your application and helping to determine why.
Understanding user behavior through VWO Insights is the foundation of an effective optimization program, guiding you towards data-backed ideation and testing without relying on assumptions.
## Features
- **User Behavior Analysis:** Track and analyze critical user actions within the application.
- **Conversion Tracking:** Associate user actions with custom events to measure effectiveness.
- **Optimization Insights:** Gain insights into potential problem areas affecting user conversion.
- **Data-backed Decisions:** Make informed decisions to enhance the user experience based on actual user data.## Installation
For detailed installation instructions, visit our [Installation Guide](https://developers.vwo.com/reference/mobile-insights-ios-installation).
## Quick Start
To integrate VWO Insights into your iOS application, follow these steps after completing the installation:
1. **Initialize VWO SDK**
- Import VWO SDK into your application.
- Initialize the SDK with your API key.
- If app support SwiftUI than pass isSwiftui true
- If app created in swift and supports Flutter Module than pass isModuleEnabled as true```swift
import vwo_insights_ios_flutter_sdk
VWO.configure(accountId: "", sdkKey: "",isModuleEnabled : false ,isSwiftUI : false userId: "")
```
2. **Track User Actions**
- Implement tracking for various user actions throughout your application by start session recording.```swift
VWO.startSessionRecording()
```
3. **Analyze and Optimize**
- Use the VWO dashboard to analyze tracked data and derive actionable insights.
For more detailed usage instructions, please refer to our [Developer Documentation](https://developers.vwo.com/reference/mobile-insights-introduction).## Support
For any support queries or technical assistance, please contact our support team at [[email protected]](mailto:[email protected])## License
VWO Insights SDK is licensed under the Apache-2.0 License. See the [LICENSE](https://github.com/wingify/vwo-insights-ios-flutter-sdk/blob/main/LICENSE) file for more details.