├── .clang-format ├── .github └── dependabot.yml ├── .gitignore ├── .markdownlint.json ├── .versions ├── .vscode └── extensions.json ├── CHANGELOG.md ├── Countly.js ├── LICENSE ├── README.md ├── SECURITY.md ├── example ├── App.java ├── cordova_example.sh └── ionic_example.sh ├── hooks └── createService.js ├── index.html ├── package.js ├── package.json ├── plugin.xml └── src ├── android ├── CountlyCordova.java ├── CountlyMessagingService.java └── CountlyNative.java └── ios ├── CountlyCordova.h ├── CountlyCordova.m ├── CountlyNSE ├── CountlyNSE-Info.plist ├── NotificationService.h └── NotificationService.m ├── CountlyNative.h ├── CountlyNative.m └── CountlyiOS ├── CHANGELOG.md ├── Countly-PL.podspec ├── Countly.h ├── Countly.m ├── Countly.podspec ├── CountlyCommon.h ├── CountlyCommon.m ├── CountlyConfig.h ├── CountlyConfig.m ├── CountlyConnectionManager.h ├── CountlyConnectionManager.m ├── CountlyConsentManager.h ├── CountlyConsentManager.m ├── CountlyCrashReporter.h ├── CountlyCrashReporter.m ├── CountlyDeviceInfo.h ├── CountlyDeviceInfo.m ├── CountlyEvent.h ├── CountlyEvent.m ├── CountlyFeedbackWidget.h ├── CountlyFeedbackWidget.m ├── CountlyFeedbacks.h ├── CountlyFeedbacks.m ├── CountlyLocationManager.h ├── CountlyLocationManager.m ├── CountlyNotificationService.h ├── CountlyNotificationService.m ├── CountlyPerformanceMonitoring.h ├── CountlyPerformanceMonitoring.m ├── CountlyPersistency.h ├── CountlyPersistency.m ├── CountlyPushNotifications.h ├── CountlyPushNotifications.m ├── CountlyRemoteConfig.h ├── CountlyRemoteConfig.m ├── CountlyUserDetails.h ├── CountlyUserDetails.m ├── CountlyViewTracking.h ├── CountlyViewTracking.m ├── LICENSE.md ├── Package.swift ├── README.md ├── SECURITY.md └── countly_dsym_uploader.sh /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Countly/countly-sdk-cordova/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Countly/countly-sdk-cordova/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | *.orig 4 | .idea -------------------------------------------------------------------------------- /.markdownlint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Countly/countly-sdk-cordova/HEAD/.markdownlint.json -------------------------------------------------------------------------------- /.versions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Countly/countly-sdk-cordova/HEAD/.versions -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Countly/countly-sdk-cordova/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Countly/countly-sdk-cordova/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Countly.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Countly/countly-sdk-cordova/HEAD/Countly.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Countly/countly-sdk-cordova/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Countly/countly-sdk-cordova/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Countly/countly-sdk-cordova/HEAD/SECURITY.md -------------------------------------------------------------------------------- /example/App.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Countly/countly-sdk-cordova/HEAD/example/App.java -------------------------------------------------------------------------------- /example/cordova_example.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Countly/countly-sdk-cordova/HEAD/example/cordova_example.sh -------------------------------------------------------------------------------- /example/ionic_example.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Countly/countly-sdk-cordova/HEAD/example/ionic_example.sh -------------------------------------------------------------------------------- /hooks/createService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Countly/countly-sdk-cordova/HEAD/hooks/createService.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Countly/countly-sdk-cordova/HEAD/index.html -------------------------------------------------------------------------------- /package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Countly/countly-sdk-cordova/HEAD/package.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Countly/countly-sdk-cordova/HEAD/package.json -------------------------------------------------------------------------------- /plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Countly/countly-sdk-cordova/HEAD/plugin.xml -------------------------------------------------------------------------------- /src/android/CountlyCordova.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Countly/countly-sdk-cordova/HEAD/src/android/CountlyCordova.java -------------------------------------------------------------------------------- /src/android/CountlyMessagingService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Countly/countly-sdk-cordova/HEAD/src/android/CountlyMessagingService.java -------------------------------------------------------------------------------- /src/android/CountlyNative.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Countly/countly-sdk-cordova/HEAD/src/android/CountlyNative.java -------------------------------------------------------------------------------- /src/ios/CountlyCordova.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Countly/countly-sdk-cordova/HEAD/src/ios/CountlyCordova.h -------------------------------------------------------------------------------- /src/ios/CountlyCordova.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Countly/countly-sdk-cordova/HEAD/src/ios/CountlyCordova.m -------------------------------------------------------------------------------- /src/ios/CountlyNSE/CountlyNSE-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Countly/countly-sdk-cordova/HEAD/src/ios/CountlyNSE/CountlyNSE-Info.plist -------------------------------------------------------------------------------- /src/ios/CountlyNSE/NotificationService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Countly/countly-sdk-cordova/HEAD/src/ios/CountlyNSE/NotificationService.h -------------------------------------------------------------------------------- /src/ios/CountlyNSE/NotificationService.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Countly/countly-sdk-cordova/HEAD/src/ios/CountlyNSE/NotificationService.m -------------------------------------------------------------------------------- /src/ios/CountlyNative.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Countly/countly-sdk-cordova/HEAD/src/ios/CountlyNative.h -------------------------------------------------------------------------------- /src/ios/CountlyNative.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Countly/countly-sdk-cordova/HEAD/src/ios/CountlyNative.m -------------------------------------------------------------------------------- /src/ios/CountlyiOS/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Countly/countly-sdk-cordova/HEAD/src/ios/CountlyiOS/CHANGELOG.md -------------------------------------------------------------------------------- /src/ios/CountlyiOS/Countly-PL.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Countly/countly-sdk-cordova/HEAD/src/ios/CountlyiOS/Countly-PL.podspec -------------------------------------------------------------------------------- /src/ios/CountlyiOS/Countly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Countly/countly-sdk-cordova/HEAD/src/ios/CountlyiOS/Countly.h -------------------------------------------------------------------------------- /src/ios/CountlyiOS/Countly.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Countly/countly-sdk-cordova/HEAD/src/ios/CountlyiOS/Countly.m -------------------------------------------------------------------------------- /src/ios/CountlyiOS/Countly.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Countly/countly-sdk-cordova/HEAD/src/ios/CountlyiOS/Countly.podspec -------------------------------------------------------------------------------- /src/ios/CountlyiOS/CountlyCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Countly/countly-sdk-cordova/HEAD/src/ios/CountlyiOS/CountlyCommon.h -------------------------------------------------------------------------------- /src/ios/CountlyiOS/CountlyCommon.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Countly/countly-sdk-cordova/HEAD/src/ios/CountlyiOS/CountlyCommon.m -------------------------------------------------------------------------------- /src/ios/CountlyiOS/CountlyConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Countly/countly-sdk-cordova/HEAD/src/ios/CountlyiOS/CountlyConfig.h -------------------------------------------------------------------------------- /src/ios/CountlyiOS/CountlyConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Countly/countly-sdk-cordova/HEAD/src/ios/CountlyiOS/CountlyConfig.m -------------------------------------------------------------------------------- /src/ios/CountlyiOS/CountlyConnectionManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Countly/countly-sdk-cordova/HEAD/src/ios/CountlyiOS/CountlyConnectionManager.h -------------------------------------------------------------------------------- /src/ios/CountlyiOS/CountlyConnectionManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Countly/countly-sdk-cordova/HEAD/src/ios/CountlyiOS/CountlyConnectionManager.m -------------------------------------------------------------------------------- /src/ios/CountlyiOS/CountlyConsentManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Countly/countly-sdk-cordova/HEAD/src/ios/CountlyiOS/CountlyConsentManager.h -------------------------------------------------------------------------------- /src/ios/CountlyiOS/CountlyConsentManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Countly/countly-sdk-cordova/HEAD/src/ios/CountlyiOS/CountlyConsentManager.m -------------------------------------------------------------------------------- /src/ios/CountlyiOS/CountlyCrashReporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Countly/countly-sdk-cordova/HEAD/src/ios/CountlyiOS/CountlyCrashReporter.h -------------------------------------------------------------------------------- /src/ios/CountlyiOS/CountlyCrashReporter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Countly/countly-sdk-cordova/HEAD/src/ios/CountlyiOS/CountlyCrashReporter.m -------------------------------------------------------------------------------- /src/ios/CountlyiOS/CountlyDeviceInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Countly/countly-sdk-cordova/HEAD/src/ios/CountlyiOS/CountlyDeviceInfo.h -------------------------------------------------------------------------------- /src/ios/CountlyiOS/CountlyDeviceInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Countly/countly-sdk-cordova/HEAD/src/ios/CountlyiOS/CountlyDeviceInfo.m -------------------------------------------------------------------------------- /src/ios/CountlyiOS/CountlyEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Countly/countly-sdk-cordova/HEAD/src/ios/CountlyiOS/CountlyEvent.h -------------------------------------------------------------------------------- /src/ios/CountlyiOS/CountlyEvent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Countly/countly-sdk-cordova/HEAD/src/ios/CountlyiOS/CountlyEvent.m -------------------------------------------------------------------------------- /src/ios/CountlyiOS/CountlyFeedbackWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Countly/countly-sdk-cordova/HEAD/src/ios/CountlyiOS/CountlyFeedbackWidget.h -------------------------------------------------------------------------------- /src/ios/CountlyiOS/CountlyFeedbackWidget.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Countly/countly-sdk-cordova/HEAD/src/ios/CountlyiOS/CountlyFeedbackWidget.m -------------------------------------------------------------------------------- /src/ios/CountlyiOS/CountlyFeedbacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Countly/countly-sdk-cordova/HEAD/src/ios/CountlyiOS/CountlyFeedbacks.h -------------------------------------------------------------------------------- /src/ios/CountlyiOS/CountlyFeedbacks.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Countly/countly-sdk-cordova/HEAD/src/ios/CountlyiOS/CountlyFeedbacks.m -------------------------------------------------------------------------------- /src/ios/CountlyiOS/CountlyLocationManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Countly/countly-sdk-cordova/HEAD/src/ios/CountlyiOS/CountlyLocationManager.h -------------------------------------------------------------------------------- /src/ios/CountlyiOS/CountlyLocationManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Countly/countly-sdk-cordova/HEAD/src/ios/CountlyiOS/CountlyLocationManager.m -------------------------------------------------------------------------------- /src/ios/CountlyiOS/CountlyNotificationService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Countly/countly-sdk-cordova/HEAD/src/ios/CountlyiOS/CountlyNotificationService.h -------------------------------------------------------------------------------- /src/ios/CountlyiOS/CountlyNotificationService.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Countly/countly-sdk-cordova/HEAD/src/ios/CountlyiOS/CountlyNotificationService.m -------------------------------------------------------------------------------- /src/ios/CountlyiOS/CountlyPerformanceMonitoring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Countly/countly-sdk-cordova/HEAD/src/ios/CountlyiOS/CountlyPerformanceMonitoring.h -------------------------------------------------------------------------------- /src/ios/CountlyiOS/CountlyPerformanceMonitoring.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Countly/countly-sdk-cordova/HEAD/src/ios/CountlyiOS/CountlyPerformanceMonitoring.m -------------------------------------------------------------------------------- /src/ios/CountlyiOS/CountlyPersistency.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Countly/countly-sdk-cordova/HEAD/src/ios/CountlyiOS/CountlyPersistency.h -------------------------------------------------------------------------------- /src/ios/CountlyiOS/CountlyPersistency.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Countly/countly-sdk-cordova/HEAD/src/ios/CountlyiOS/CountlyPersistency.m -------------------------------------------------------------------------------- /src/ios/CountlyiOS/CountlyPushNotifications.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Countly/countly-sdk-cordova/HEAD/src/ios/CountlyiOS/CountlyPushNotifications.h -------------------------------------------------------------------------------- /src/ios/CountlyiOS/CountlyPushNotifications.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Countly/countly-sdk-cordova/HEAD/src/ios/CountlyiOS/CountlyPushNotifications.m -------------------------------------------------------------------------------- /src/ios/CountlyiOS/CountlyRemoteConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Countly/countly-sdk-cordova/HEAD/src/ios/CountlyiOS/CountlyRemoteConfig.h -------------------------------------------------------------------------------- /src/ios/CountlyiOS/CountlyRemoteConfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Countly/countly-sdk-cordova/HEAD/src/ios/CountlyiOS/CountlyRemoteConfig.m -------------------------------------------------------------------------------- /src/ios/CountlyiOS/CountlyUserDetails.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Countly/countly-sdk-cordova/HEAD/src/ios/CountlyiOS/CountlyUserDetails.h -------------------------------------------------------------------------------- /src/ios/CountlyiOS/CountlyUserDetails.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Countly/countly-sdk-cordova/HEAD/src/ios/CountlyiOS/CountlyUserDetails.m -------------------------------------------------------------------------------- /src/ios/CountlyiOS/CountlyViewTracking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Countly/countly-sdk-cordova/HEAD/src/ios/CountlyiOS/CountlyViewTracking.h -------------------------------------------------------------------------------- /src/ios/CountlyiOS/CountlyViewTracking.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Countly/countly-sdk-cordova/HEAD/src/ios/CountlyiOS/CountlyViewTracking.m -------------------------------------------------------------------------------- /src/ios/CountlyiOS/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Countly/countly-sdk-cordova/HEAD/src/ios/CountlyiOS/LICENSE.md -------------------------------------------------------------------------------- /src/ios/CountlyiOS/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Countly/countly-sdk-cordova/HEAD/src/ios/CountlyiOS/Package.swift -------------------------------------------------------------------------------- /src/ios/CountlyiOS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Countly/countly-sdk-cordova/HEAD/src/ios/CountlyiOS/README.md -------------------------------------------------------------------------------- /src/ios/CountlyiOS/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Countly/countly-sdk-cordova/HEAD/src/ios/CountlyiOS/SECURITY.md -------------------------------------------------------------------------------- /src/ios/CountlyiOS/countly_dsym_uploader.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Countly/countly-sdk-cordova/HEAD/src/ios/CountlyiOS/countly_dsym_uploader.sh --------------------------------------------------------------------------------