├── .codebeatignore ├── .eslintrc.json ├── .gitignore ├── .npmignore ├── .vscode └── settings.json ├── CHANGELOG.md ├── Example ├── .buckconfig ├── .editorconfig ├── .eslintrc.js ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .prettierrc.js ├── .watchmanconfig ├── __tests__ │ └── App-test.js ├── android │ ├── .project │ ├── .settings │ │ └── org.eclipse.buildship.core.prefs │ ├── app │ │ ├── .project │ │ ├── _BUCK │ │ ├── build.gradle │ │ ├── build_defs.bzl │ │ ├── debug.keystore │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── reactnct │ │ │ │ ├── MainActivity.java │ │ │ │ ├── MainApplication.java │ │ │ │ ├── MyFirebaseMessagingService.java │ │ │ │ └── WebViewActivity.java │ │ │ └── res │ │ │ ├── layout │ │ │ └── activity_webview.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── raw │ │ │ └── glitch.mp3 │ │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── app.json ├── app │ ├── App.js │ ├── DynamicForm.js │ ├── ExpandableListView.js │ ├── app-utils.js │ └── constants.js ├── assets │ └── templates.json ├── babel.config.js ├── custom-templates │ ├── CustomTemplate.js │ ├── FunctionPopup.js │ └── InAppMessagePopup.js ├── index.js ├── ios │ ├── Example.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── Example.xcscheme │ ├── Example.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── Example │ │ ├── AppDelegate.h │ │ ├── AppDelegate.mm │ │ ├── Example.entitlements │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── 100.png │ │ │ │ ├── 1024.png │ │ │ │ ├── 114.png │ │ │ │ ├── 120.png │ │ │ │ ├── 144.png │ │ │ │ ├── 152.png │ │ │ │ ├── 167.png │ │ │ │ ├── 180.png │ │ │ │ ├── 20.png │ │ │ │ ├── 29.png │ │ │ │ ├── 40.png │ │ │ │ ├── 50.png │ │ │ │ ├── 57.png │ │ │ │ ├── 58.png │ │ │ │ ├── 60.png │ │ │ │ ├── 72.png │ │ │ │ ├── 76.png │ │ │ │ ├── 80.png │ │ │ │ ├── 87.png │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ └── main.m │ ├── NotificationContent │ │ ├── Base.lproj │ │ │ └── MainInterface.storyboard │ │ ├── Info.plist │ │ ├── NotificationViewController.h │ │ └── NotificationViewController.m │ ├── NotificationContentSwift │ │ ├── Base.lproj │ │ │ └── MainInterface.storyboard │ │ ├── Info.plist │ │ └── NotificationViewController.swift │ ├── NotificationService │ │ ├── Info.plist │ │ ├── NotificationService.h │ │ └── NotificationService.m │ ├── NotificationServiceSwift │ │ ├── Info.plist │ │ └── NotificationService.swift │ └── Podfile ├── metro.config.js ├── package-lock.json ├── package.json ├── react-native.config.js └── styles.js ├── LICENSE ├── README.md ├── android ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── src │ ├── main │ ├── AndroidManifest.xml │ └── java │ │ └── com │ │ └── clevertap │ │ └── react │ │ ├── CleverTapApplication.kt │ │ ├── CleverTapCustomTemplates.kt │ │ ├── CleverTapEvent.kt │ │ ├── CleverTapEventEmitter.kt │ │ ├── CleverTapListenerProxy.kt │ │ ├── CleverTapModuleImpl.java │ │ ├── CleverTapPackage.kt │ │ ├── CleverTapRnAPI.kt │ │ ├── CleverTapUtils.java │ │ └── Constants.kt │ ├── newarch │ └── CleverTapModule.kt │ └── oldarch │ └── CleverTapModule.kt ├── clevertap-react-native.podspec ├── docs ├── CustomCodeTemplates.md ├── Variables.md ├── callbackPayloadFormat.md ├── install.md ├── integration.md ├── iospushtemplates.md ├── pushprimer.md └── usage.md ├── ios ├── CleverTapReact.xcodeproj │ └── project.pbxproj └── CleverTapReact │ ├── .gitignore │ ├── CleverTapReact.h │ ├── CleverTapReact.mm │ ├── CleverTapReactAppFunctionPresenter.h │ ├── CleverTapReactAppFunctionPresenter.mm │ ├── CleverTapReactCustomTemplates.h │ ├── CleverTapReactCustomTemplates.mm │ ├── CleverTapReactManager.h │ ├── CleverTapReactManager.mm │ ├── CleverTapReactPendingEvent.h │ ├── CleverTapReactPendingEvent.mm │ ├── CleverTapReactTemplatePresenter.h │ └── CleverTapReactTemplatePresenter.mm ├── package.json ├── src ├── NativeCleverTapModule.ts ├── index.d.ts └── index.js └── static ├── Finder.png ├── GenerateSpecs.png ├── NotificationContent.png ├── NotificationContentStoryboard.png ├── NotificationContentTarget.png └── NotificationServiceTarget.png /.codebeatignore: -------------------------------------------------------------------------------- 1 | Example/** 2 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | Example 2 | .idea 3 | Starter 4 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Example/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/.buckconfig -------------------------------------------------------------------------------- /Example/.editorconfig: -------------------------------------------------------------------------------- 1 | # Windows files 2 | [*.bat] 3 | end_of_line = crlf 4 | -------------------------------------------------------------------------------- /Example/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | }; 5 | -------------------------------------------------------------------------------- /Example/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/.flowconfig -------------------------------------------------------------------------------- /Example/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/.gitattributes -------------------------------------------------------------------------------- /Example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/.gitignore -------------------------------------------------------------------------------- /Example/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/.prettierrc.js -------------------------------------------------------------------------------- /Example/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /Example/__tests__/App-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/__tests__/App-test.js -------------------------------------------------------------------------------- /Example/android/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/android/.project -------------------------------------------------------------------------------- /Example/android/.settings/org.eclipse.buildship.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/android/.settings/org.eclipse.buildship.core.prefs -------------------------------------------------------------------------------- /Example/android/app/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/android/app/.project -------------------------------------------------------------------------------- /Example/android/app/_BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/android/app/_BUCK -------------------------------------------------------------------------------- /Example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/android/app/build.gradle -------------------------------------------------------------------------------- /Example/android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/android/app/build_defs.bzl -------------------------------------------------------------------------------- /Example/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/android/app/debug.keystore -------------------------------------------------------------------------------- /Example/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /Example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /Example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Example/android/app/src/main/java/com/reactnct/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/android/app/src/main/java/com/reactnct/MainActivity.java -------------------------------------------------------------------------------- /Example/android/app/src/main/java/com/reactnct/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/android/app/src/main/java/com/reactnct/MainApplication.java -------------------------------------------------------------------------------- /Example/android/app/src/main/java/com/reactnct/MyFirebaseMessagingService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/android/app/src/main/java/com/reactnct/MyFirebaseMessagingService.java -------------------------------------------------------------------------------- /Example/android/app/src/main/java/com/reactnct/WebViewActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/android/app/src/main/java/com/reactnct/WebViewActivity.java -------------------------------------------------------------------------------- /Example/android/app/src/main/res/layout/activity_webview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/android/app/src/main/res/layout/activity_webview.xml -------------------------------------------------------------------------------- /Example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Example/android/app/src/main/res/raw/glitch.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/android/app/src/main/res/raw/glitch.mp3 -------------------------------------------------------------------------------- /Example/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/android/build.gradle -------------------------------------------------------------------------------- /Example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/android/gradle.properties -------------------------------------------------------------------------------- /Example/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Example/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/android/gradlew -------------------------------------------------------------------------------- /Example/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/android/gradlew.bat -------------------------------------------------------------------------------- /Example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/android/settings.gradle -------------------------------------------------------------------------------- /Example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/app.json -------------------------------------------------------------------------------- /Example/app/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/app/App.js -------------------------------------------------------------------------------- /Example/app/DynamicForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/app/DynamicForm.js -------------------------------------------------------------------------------- /Example/app/ExpandableListView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/app/ExpandableListView.js -------------------------------------------------------------------------------- /Example/app/app-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/app/app-utils.js -------------------------------------------------------------------------------- /Example/app/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/app/constants.js -------------------------------------------------------------------------------- /Example/assets/templates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/assets/templates.json -------------------------------------------------------------------------------- /Example/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/babel.config.js -------------------------------------------------------------------------------- /Example/custom-templates/CustomTemplate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/custom-templates/CustomTemplate.js -------------------------------------------------------------------------------- /Example/custom-templates/FunctionPopup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/custom-templates/FunctionPopup.js -------------------------------------------------------------------------------- /Example/custom-templates/InAppMessagePopup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/custom-templates/InAppMessagePopup.js -------------------------------------------------------------------------------- /Example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/index.js -------------------------------------------------------------------------------- /Example/ios/Example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/ios/Example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/ios/Example.xcodeproj/xcshareddata/xcschemes/Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/ios/Example.xcodeproj/xcshareddata/xcschemes/Example.xcscheme -------------------------------------------------------------------------------- /Example/ios/Example.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/ios/Example.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/ios/Example.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/ios/Example.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/ios/Example/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/ios/Example/AppDelegate.h -------------------------------------------------------------------------------- /Example/ios/Example/AppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/ios/Example/AppDelegate.mm -------------------------------------------------------------------------------- /Example/ios/Example/Example.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/ios/Example/Example.entitlements -------------------------------------------------------------------------------- /Example/ios/Example/Images.xcassets/AppIcon.appiconset/100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/ios/Example/Images.xcassets/AppIcon.appiconset/100.png -------------------------------------------------------------------------------- /Example/ios/Example/Images.xcassets/AppIcon.appiconset/1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/ios/Example/Images.xcassets/AppIcon.appiconset/1024.png -------------------------------------------------------------------------------- /Example/ios/Example/Images.xcassets/AppIcon.appiconset/114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/ios/Example/Images.xcassets/AppIcon.appiconset/114.png -------------------------------------------------------------------------------- /Example/ios/Example/Images.xcassets/AppIcon.appiconset/120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/ios/Example/Images.xcassets/AppIcon.appiconset/120.png -------------------------------------------------------------------------------- /Example/ios/Example/Images.xcassets/AppIcon.appiconset/144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/ios/Example/Images.xcassets/AppIcon.appiconset/144.png -------------------------------------------------------------------------------- /Example/ios/Example/Images.xcassets/AppIcon.appiconset/152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/ios/Example/Images.xcassets/AppIcon.appiconset/152.png -------------------------------------------------------------------------------- /Example/ios/Example/Images.xcassets/AppIcon.appiconset/167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/ios/Example/Images.xcassets/AppIcon.appiconset/167.png -------------------------------------------------------------------------------- /Example/ios/Example/Images.xcassets/AppIcon.appiconset/180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/ios/Example/Images.xcassets/AppIcon.appiconset/180.png -------------------------------------------------------------------------------- /Example/ios/Example/Images.xcassets/AppIcon.appiconset/20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/ios/Example/Images.xcassets/AppIcon.appiconset/20.png -------------------------------------------------------------------------------- /Example/ios/Example/Images.xcassets/AppIcon.appiconset/29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/ios/Example/Images.xcassets/AppIcon.appiconset/29.png -------------------------------------------------------------------------------- /Example/ios/Example/Images.xcassets/AppIcon.appiconset/40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/ios/Example/Images.xcassets/AppIcon.appiconset/40.png -------------------------------------------------------------------------------- /Example/ios/Example/Images.xcassets/AppIcon.appiconset/50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/ios/Example/Images.xcassets/AppIcon.appiconset/50.png -------------------------------------------------------------------------------- /Example/ios/Example/Images.xcassets/AppIcon.appiconset/57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/ios/Example/Images.xcassets/AppIcon.appiconset/57.png -------------------------------------------------------------------------------- /Example/ios/Example/Images.xcassets/AppIcon.appiconset/58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/ios/Example/Images.xcassets/AppIcon.appiconset/58.png -------------------------------------------------------------------------------- /Example/ios/Example/Images.xcassets/AppIcon.appiconset/60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/ios/Example/Images.xcassets/AppIcon.appiconset/60.png -------------------------------------------------------------------------------- /Example/ios/Example/Images.xcassets/AppIcon.appiconset/72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/ios/Example/Images.xcassets/AppIcon.appiconset/72.png -------------------------------------------------------------------------------- /Example/ios/Example/Images.xcassets/AppIcon.appiconset/76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/ios/Example/Images.xcassets/AppIcon.appiconset/76.png -------------------------------------------------------------------------------- /Example/ios/Example/Images.xcassets/AppIcon.appiconset/80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/ios/Example/Images.xcassets/AppIcon.appiconset/80.png -------------------------------------------------------------------------------- /Example/ios/Example/Images.xcassets/AppIcon.appiconset/87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/ios/Example/Images.xcassets/AppIcon.appiconset/87.png -------------------------------------------------------------------------------- /Example/ios/Example/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/ios/Example/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/ios/Example/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/ios/Example/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/ios/Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/ios/Example/Info.plist -------------------------------------------------------------------------------- /Example/ios/Example/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/ios/Example/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/ios/Example/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/ios/Example/main.m -------------------------------------------------------------------------------- /Example/ios/NotificationContent/Base.lproj/MainInterface.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/ios/NotificationContent/Base.lproj/MainInterface.storyboard -------------------------------------------------------------------------------- /Example/ios/NotificationContent/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/ios/NotificationContent/Info.plist -------------------------------------------------------------------------------- /Example/ios/NotificationContent/NotificationViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/ios/NotificationContent/NotificationViewController.h -------------------------------------------------------------------------------- /Example/ios/NotificationContent/NotificationViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/ios/NotificationContent/NotificationViewController.m -------------------------------------------------------------------------------- /Example/ios/NotificationContentSwift/Base.lproj/MainInterface.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/ios/NotificationContentSwift/Base.lproj/MainInterface.storyboard -------------------------------------------------------------------------------- /Example/ios/NotificationContentSwift/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/ios/NotificationContentSwift/Info.plist -------------------------------------------------------------------------------- /Example/ios/NotificationContentSwift/NotificationViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/ios/NotificationContentSwift/NotificationViewController.swift -------------------------------------------------------------------------------- /Example/ios/NotificationService/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/ios/NotificationService/Info.plist -------------------------------------------------------------------------------- /Example/ios/NotificationService/NotificationService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/ios/NotificationService/NotificationService.h -------------------------------------------------------------------------------- /Example/ios/NotificationService/NotificationService.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/ios/NotificationService/NotificationService.m -------------------------------------------------------------------------------- /Example/ios/NotificationServiceSwift/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/ios/NotificationServiceSwift/Info.plist -------------------------------------------------------------------------------- /Example/ios/NotificationServiceSwift/NotificationService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/ios/NotificationServiceSwift/NotificationService.swift -------------------------------------------------------------------------------- /Example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/ios/Podfile -------------------------------------------------------------------------------- /Example/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/metro.config.js -------------------------------------------------------------------------------- /Example/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/package-lock.json -------------------------------------------------------------------------------- /Example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/package.json -------------------------------------------------------------------------------- /Example/react-native.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/react-native.config.js -------------------------------------------------------------------------------- /Example/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/Example/styles.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/README.md -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/src/main/java/com/clevertap/react/CleverTapApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/android/src/main/java/com/clevertap/react/CleverTapApplication.kt -------------------------------------------------------------------------------- /android/src/main/java/com/clevertap/react/CleverTapCustomTemplates.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/android/src/main/java/com/clevertap/react/CleverTapCustomTemplates.kt -------------------------------------------------------------------------------- /android/src/main/java/com/clevertap/react/CleverTapEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/android/src/main/java/com/clevertap/react/CleverTapEvent.kt -------------------------------------------------------------------------------- /android/src/main/java/com/clevertap/react/CleverTapEventEmitter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/android/src/main/java/com/clevertap/react/CleverTapEventEmitter.kt -------------------------------------------------------------------------------- /android/src/main/java/com/clevertap/react/CleverTapListenerProxy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/android/src/main/java/com/clevertap/react/CleverTapListenerProxy.kt -------------------------------------------------------------------------------- /android/src/main/java/com/clevertap/react/CleverTapModuleImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/android/src/main/java/com/clevertap/react/CleverTapModuleImpl.java -------------------------------------------------------------------------------- /android/src/main/java/com/clevertap/react/CleverTapPackage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/android/src/main/java/com/clevertap/react/CleverTapPackage.kt -------------------------------------------------------------------------------- /android/src/main/java/com/clevertap/react/CleverTapRnAPI.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/android/src/main/java/com/clevertap/react/CleverTapRnAPI.kt -------------------------------------------------------------------------------- /android/src/main/java/com/clevertap/react/CleverTapUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/android/src/main/java/com/clevertap/react/CleverTapUtils.java -------------------------------------------------------------------------------- /android/src/main/java/com/clevertap/react/Constants.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/android/src/main/java/com/clevertap/react/Constants.kt -------------------------------------------------------------------------------- /android/src/newarch/CleverTapModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/android/src/newarch/CleverTapModule.kt -------------------------------------------------------------------------------- /android/src/oldarch/CleverTapModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/android/src/oldarch/CleverTapModule.kt -------------------------------------------------------------------------------- /clevertap-react-native.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/clevertap-react-native.podspec -------------------------------------------------------------------------------- /docs/CustomCodeTemplates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/docs/CustomCodeTemplates.md -------------------------------------------------------------------------------- /docs/Variables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/docs/Variables.md -------------------------------------------------------------------------------- /docs/callbackPayloadFormat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/docs/callbackPayloadFormat.md -------------------------------------------------------------------------------- /docs/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/docs/install.md -------------------------------------------------------------------------------- /docs/integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/docs/integration.md -------------------------------------------------------------------------------- /docs/iospushtemplates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/docs/iospushtemplates.md -------------------------------------------------------------------------------- /docs/pushprimer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/docs/pushprimer.md -------------------------------------------------------------------------------- /docs/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/docs/usage.md -------------------------------------------------------------------------------- /ios/CleverTapReact.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/ios/CleverTapReact.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/CleverTapReact/.gitignore: -------------------------------------------------------------------------------- 1 | CleverTapSDK.framework 2 | -------------------------------------------------------------------------------- /ios/CleverTapReact/CleverTapReact.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/ios/CleverTapReact/CleverTapReact.h -------------------------------------------------------------------------------- /ios/CleverTapReact/CleverTapReact.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/ios/CleverTapReact/CleverTapReact.mm -------------------------------------------------------------------------------- /ios/CleverTapReact/CleverTapReactAppFunctionPresenter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/ios/CleverTapReact/CleverTapReactAppFunctionPresenter.h -------------------------------------------------------------------------------- /ios/CleverTapReact/CleverTapReactAppFunctionPresenter.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/ios/CleverTapReact/CleverTapReactAppFunctionPresenter.mm -------------------------------------------------------------------------------- /ios/CleverTapReact/CleverTapReactCustomTemplates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/ios/CleverTapReact/CleverTapReactCustomTemplates.h -------------------------------------------------------------------------------- /ios/CleverTapReact/CleverTapReactCustomTemplates.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/ios/CleverTapReact/CleverTapReactCustomTemplates.mm -------------------------------------------------------------------------------- /ios/CleverTapReact/CleverTapReactManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/ios/CleverTapReact/CleverTapReactManager.h -------------------------------------------------------------------------------- /ios/CleverTapReact/CleverTapReactManager.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/ios/CleverTapReact/CleverTapReactManager.mm -------------------------------------------------------------------------------- /ios/CleverTapReact/CleverTapReactPendingEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/ios/CleverTapReact/CleverTapReactPendingEvent.h -------------------------------------------------------------------------------- /ios/CleverTapReact/CleverTapReactPendingEvent.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/ios/CleverTapReact/CleverTapReactPendingEvent.mm -------------------------------------------------------------------------------- /ios/CleverTapReact/CleverTapReactTemplatePresenter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/ios/CleverTapReact/CleverTapReactTemplatePresenter.h -------------------------------------------------------------------------------- /ios/CleverTapReact/CleverTapReactTemplatePresenter.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/ios/CleverTapReact/CleverTapReactTemplatePresenter.mm -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/package.json -------------------------------------------------------------------------------- /src/NativeCleverTapModule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/src/NativeCleverTapModule.ts -------------------------------------------------------------------------------- /src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/src/index.d.ts -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/src/index.js -------------------------------------------------------------------------------- /static/Finder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/static/Finder.png -------------------------------------------------------------------------------- /static/GenerateSpecs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/static/GenerateSpecs.png -------------------------------------------------------------------------------- /static/NotificationContent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/static/NotificationContent.png -------------------------------------------------------------------------------- /static/NotificationContentStoryboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/static/NotificationContentStoryboard.png -------------------------------------------------------------------------------- /static/NotificationContentTarget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/static/NotificationContentTarget.png -------------------------------------------------------------------------------- /static/NotificationServiceTarget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CleverTap/clevertap-react-native/HEAD/static/NotificationServiceTarget.png --------------------------------------------------------------------------------