├── .circleci └── config.yml ├── .eslintrc.js ├── .gitignore ├── .nvmrc ├── .prettierignore ├── .prettierrc.json ├── .vscode └── launch.json ├── .yarn └── releases │ └── yarn-1.22.19.cjs ├── .yarnrc.yml ├── CHANGELOG.md ├── LICENSE ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── __mocks__ └── react-native.js ├── android ├── build.gradle ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── src │ └── main │ ├── AndroidManifest.xml │ └── java │ └── com │ └── heapanalytics │ └── reactnative │ ├── HeapInitializationProvider.java │ ├── RNHeap.java │ ├── RNHeapException.java │ ├── RNHeapLibraryModule.java │ └── RNHeapLibraryPackage.java ├── app.plugin.js ├── babel.config.js ├── docs ├── android-setup.md └── ios-setup.md ├── index.d.ts ├── instrumentor ├── .babelrc ├── src │ └── index.js └── test │ ├── fixtures │ ├── is-function-declaration-no-id │ │ ├── code.js │ │ └── output.js │ ├── is-functional-textinput │ │ ├── code.js │ │ └── output.js │ ├── is-pressable │ │ ├── code.js │ │ └── output.js │ ├── is-scroll-view-createreactclass │ │ ├── code.js │ │ └── output.js │ ├── is-scroll-view-extends-component │ │ ├── code.js │ │ └── output.js │ ├── is-switch-pre-0-66 │ │ ├── code.js │ │ └── output.js │ ├── is-switch │ │ ├── code.js │ │ └── output.js │ ├── is-text-input │ │ ├── code.js │ │ └── output.js │ ├── is-touchable-0-62 │ │ ├── code.js │ │ └── output.js │ ├── is-touchable │ │ ├── code.js │ │ └── output.js │ ├── no-touchable-mixin │ │ ├── code.js │ │ └── output.js │ ├── not-create-react-class │ │ ├── code.js │ │ └── output.js │ ├── not-scroll-view │ │ ├── code.js │ │ └── output.js │ ├── not-text-input │ │ ├── code.js │ │ └── output.js │ ├── run-application │ │ ├── code.js │ │ └── output.js │ └── touchable-no-press-handlers │ │ ├── code.js │ │ └── output.js │ └── index.js ├── integration-tests ├── .gitignore ├── README.md ├── clean-android.sh ├── drivers │ ├── TestDriver063 │ │ ├── .buckconfig │ │ ├── .detoxrc.json │ │ ├── .eslintrc.js │ │ ├── .flowconfig │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .prettierrc.js │ │ ├── .watchmanconfig │ │ ├── __tests__ │ │ │ └── App-test.js │ │ ├── android │ │ │ ├── app │ │ │ │ ├── _BUCK │ │ │ │ ├── build.gradle │ │ │ │ ├── build_defs.bzl │ │ │ │ ├── debug.keystore │ │ │ │ ├── proguard-rules.pro │ │ │ │ └── src │ │ │ │ │ ├── androidTest │ │ │ │ │ └── java │ │ │ │ │ │ └── com │ │ │ │ │ │ └── testdriver063 │ │ │ │ │ │ └── DetoxTest.java │ │ │ │ │ ├── debug │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ └── java │ │ │ │ │ │ └── com │ │ │ │ │ │ └── testdriver063 │ │ │ │ │ │ └── ReactNativeFlipper.java │ │ │ │ │ └── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── assets │ │ │ │ │ └── fonts │ │ │ │ │ │ ├── AntDesign.ttf │ │ │ │ │ │ ├── Entypo.ttf │ │ │ │ │ │ ├── EvilIcons.ttf │ │ │ │ │ │ ├── Feather.ttf │ │ │ │ │ │ ├── FontAwesome.ttf │ │ │ │ │ │ ├── FontAwesome5_Brands.ttf │ │ │ │ │ │ ├── FontAwesome5_Regular.ttf │ │ │ │ │ │ ├── FontAwesome5_Solid.ttf │ │ │ │ │ │ ├── Fontisto.ttf │ │ │ │ │ │ ├── Foundation.ttf │ │ │ │ │ │ ├── Ionicons.ttf │ │ │ │ │ │ ├── MaterialCommunityIcons.ttf │ │ │ │ │ │ ├── MaterialIcons.ttf │ │ │ │ │ │ ├── Octicons.ttf │ │ │ │ │ │ ├── Roboto.ttf │ │ │ │ │ │ ├── Roboto_medium.ttf │ │ │ │ │ │ ├── SimpleLineIcons.ttf │ │ │ │ │ │ ├── Zocial.ttf │ │ │ │ │ │ └── rubicon-icon-font.ttf │ │ │ │ │ ├── java │ │ │ │ │ └── com │ │ │ │ │ │ └── testdriver063 │ │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ │ └── MainApplication.java │ │ │ │ │ └── res │ │ │ │ │ ├── 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 │ │ │ │ │ ├── values │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ │ │ └── xml │ │ │ │ │ └── network_security_config.xml │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── gradlew │ │ │ ├── gradlew.bat │ │ │ └── settings.gradle │ │ ├── app.json │ │ ├── babel.config.js │ │ ├── heap.config.json │ │ ├── index.js │ │ ├── ios │ │ │ ├── Podfile │ │ │ ├── Podfile.lock │ │ │ ├── TestDriver063-tvOS │ │ │ │ └── Info.plist │ │ │ ├── TestDriver063-tvOSTests │ │ │ │ └── Info.plist │ │ │ ├── TestDriver063.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ ├── TestDriver063-tvOS.xcscheme │ │ │ │ │ └── TestDriver063.xcscheme │ │ │ ├── TestDriver063.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ ├── TestDriver063 │ │ │ │ ├── AppDelegate.h │ │ │ │ ├── AppDelegate.m │ │ │ │ ├── Images.xcassets │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── Info.plist │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── main.m │ │ │ └── TestDriver063Tests │ │ │ │ ├── Info.plist │ │ │ │ └── TestDriver063Tests.m │ │ ├── metro.config.js │ │ ├── package-lock.json │ │ ├── package.json │ │ └── patches │ │ │ ├── detox+19.13.0.patch │ │ │ └── react-native+0.63.5.patch │ └── TestDriver066 │ │ ├── .buckconfig │ │ ├── .detoxrc.json │ │ ├── .editorconfig │ │ ├── .eslintrc.js │ │ ├── .flowconfig │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── .prettierrc.js │ │ ├── .watchmanconfig │ │ ├── __tests__ │ │ └── App-test.js │ │ ├── android │ │ ├── app │ │ │ ├── _BUCK │ │ │ ├── build.gradle │ │ │ ├── build_defs.bzl │ │ │ ├── debug.keystore │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ ├── androidTest │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── testdriver066 │ │ │ │ │ └── DetoxTest.java │ │ │ │ ├── debug │ │ │ │ ├── AndroidManifest.xml │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── testdriver066 │ │ │ │ │ └── ReactNativeFlipper.java │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── assets │ │ │ │ └── fonts │ │ │ │ │ ├── AntDesign.ttf │ │ │ │ │ ├── Entypo.ttf │ │ │ │ │ ├── EvilIcons.ttf │ │ │ │ │ ├── Feather.ttf │ │ │ │ │ ├── FontAwesome.ttf │ │ │ │ │ ├── FontAwesome5_Brands.ttf │ │ │ │ │ ├── FontAwesome5_Regular.ttf │ │ │ │ │ ├── FontAwesome5_Solid.ttf │ │ │ │ │ ├── Fontisto.ttf │ │ │ │ │ ├── Foundation.ttf │ │ │ │ │ ├── Ionicons.ttf │ │ │ │ │ ├── MaterialCommunityIcons.ttf │ │ │ │ │ ├── MaterialIcons.ttf │ │ │ │ │ ├── Octicons.ttf │ │ │ │ │ ├── Roboto.ttf │ │ │ │ │ ├── Roboto_medium.ttf │ │ │ │ │ ├── SimpleLineIcons.ttf │ │ │ │ │ ├── Zocial.ttf │ │ │ │ │ └── rubicon-icon-font.ttf │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── testdriver066 │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ └── MainApplication.java │ │ │ │ └── res │ │ │ │ ├── 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 │ │ │ │ ├── values │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ │ └── xml │ │ │ │ └── network_security_config.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ │ ├── app.json │ │ ├── babel.config.js │ │ ├── heap.config.json │ │ ├── index.js │ │ ├── ios │ │ ├── Podfile │ │ ├── Podfile.lock │ │ ├── TestDriver066.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── TestDriver066.xcscheme │ │ ├── TestDriver066.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ ├── TestDriver066 │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Images.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ ├── LaunchScreen.storyboard │ │ │ └── main.m │ │ └── TestDriver066Tests │ │ │ ├── Info.plist │ │ │ └── TestDriver066Tests.m │ │ ├── metro.config.js │ │ ├── package-lock.json │ │ ├── package.json │ │ └── patches │ │ ├── @react-native-community+masked-view+0.1.11.patch │ │ ├── detox+19.13.0.patch │ │ ├── react-native+0.66.5.patch │ │ └── react-native-screens+2.18.1.patch ├── src │ ├── App.tsx │ └── screens │ │ ├── HeapIgnoreScreen.tsx │ │ ├── HomeScreen.tsx │ │ ├── NavigationScreen.tsx │ │ ├── PropertiesScreen.tsx │ │ ├── TouchablesScreen.tsx │ │ └── navigationScreens │ │ ├── StackNavigationScreen.tsx │ │ └── TabNavigationScreen.tsx ├── test.sh └── tests │ ├── config.json │ ├── environment.js │ ├── heap_properties.e2e.js │ ├── heapignore.e2e.js │ ├── hierarchy.e2e.js │ ├── properties.e2e.js │ ├── simple.e2e.js │ └── util │ ├── root.proto.json │ ├── server.ts │ ├── types.ts │ └── util.ts ├── ios ├── HeapSettings.bundle │ ├── HeapSettings.plist │ ├── generate_settings.rb │ ├── generate_settings_common.rb │ ├── generate_settings_non_cocoapods.rb │ └── test_generate_settings.rb ├── RNHeap.h ├── RNHeap.m ├── RNHeap.xcodeproj │ └── project.pbxproj ├── RNHeapInit.h └── RNHeapInit.m ├── jest.config.js ├── js ├── Heap.js ├── __tests__ │ └── Heap.spec.js ├── autotrack │ ├── __tests__ │ │ └── common.spec.js │ ├── common.ts │ ├── heapIgnore.js │ ├── pressable.js │ ├── reactNavigation.js │ ├── scrollViews.js │ ├── switches.js │ ├── textInput.js │ └── touchables.js ├── libraryPropConfigs │ ├── nativeBasePropConfig.ts │ └── rnElementsPropConfig.ts ├── propExtractorConfig.ts ├── util │ ├── __mocks__ │ │ └── navigationUtil.js │ ├── __tests__ │ │ ├── combineConfigs.spec.ts │ │ ├── extractProps.spec.ts │ │ └── navigationUtil.test.ts │ ├── bailer.ts │ ├── checkDisplayNames.ts │ ├── combineConfigs.ts │ ├── contextualProps.ts │ ├── extractProps.ts │ ├── hocUtil.js │ ├── metadataPropUtil.ts │ ├── navigationUtil.ts │ └── reservedCharacters.js └── version.ts ├── package.json ├── plugin ├── src │ └── withHeap.ts └── tsconfig.json ├── react-native-heap.podspec ├── tsconfig.json └── unimodule.json /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 8.12.0 2 | 3 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | instrumentor/test/fixtures/**/output.js -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.yarn/releases/yarn-1.22.19.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/.yarn/releases/yarn-1.22.19.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/LICENSE -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/README.md -------------------------------------------------------------------------------- /__mocks__/react-native.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/__mocks__/react-native.js -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/src/main/java/com/heapanalytics/reactnative/HeapInitializationProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/android/src/main/java/com/heapanalytics/reactnative/HeapInitializationProvider.java -------------------------------------------------------------------------------- /android/src/main/java/com/heapanalytics/reactnative/RNHeap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/android/src/main/java/com/heapanalytics/reactnative/RNHeap.java -------------------------------------------------------------------------------- /android/src/main/java/com/heapanalytics/reactnative/RNHeapException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/android/src/main/java/com/heapanalytics/reactnative/RNHeapException.java -------------------------------------------------------------------------------- /android/src/main/java/com/heapanalytics/reactnative/RNHeapLibraryModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/android/src/main/java/com/heapanalytics/reactnative/RNHeapLibraryModule.java -------------------------------------------------------------------------------- /android/src/main/java/com/heapanalytics/reactnative/RNHeapLibraryPackage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/android/src/main/java/com/heapanalytics/reactnative/RNHeapLibraryPackage.java -------------------------------------------------------------------------------- /app.plugin.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./dist/plugin/build/withHeap'); 2 | -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/babel.config.js -------------------------------------------------------------------------------- /docs/android-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/docs/android-setup.md -------------------------------------------------------------------------------- /docs/ios-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/docs/ios-setup.md -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/index.d.ts -------------------------------------------------------------------------------- /instrumentor/.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/instrumentor/.babelrc -------------------------------------------------------------------------------- /instrumentor/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/instrumentor/src/index.js -------------------------------------------------------------------------------- /instrumentor/test/fixtures/is-function-declaration-no-id/code.js: -------------------------------------------------------------------------------- 1 | export default function() {} 2 | -------------------------------------------------------------------------------- /instrumentor/test/fixtures/is-function-declaration-no-id/output.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/instrumentor/test/fixtures/is-function-declaration-no-id/output.js -------------------------------------------------------------------------------- /instrumentor/test/fixtures/is-functional-textinput/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/instrumentor/test/fixtures/is-functional-textinput/code.js -------------------------------------------------------------------------------- /instrumentor/test/fixtures/is-functional-textinput/output.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/instrumentor/test/fixtures/is-functional-textinput/output.js -------------------------------------------------------------------------------- /instrumentor/test/fixtures/is-pressable/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/instrumentor/test/fixtures/is-pressable/code.js -------------------------------------------------------------------------------- /instrumentor/test/fixtures/is-pressable/output.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/instrumentor/test/fixtures/is-pressable/output.js -------------------------------------------------------------------------------- /instrumentor/test/fixtures/is-scroll-view-createreactclass/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/instrumentor/test/fixtures/is-scroll-view-createreactclass/code.js -------------------------------------------------------------------------------- /instrumentor/test/fixtures/is-scroll-view-createreactclass/output.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/instrumentor/test/fixtures/is-scroll-view-createreactclass/output.js -------------------------------------------------------------------------------- /instrumentor/test/fixtures/is-scroll-view-extends-component/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/instrumentor/test/fixtures/is-scroll-view-extends-component/code.js -------------------------------------------------------------------------------- /instrumentor/test/fixtures/is-scroll-view-extends-component/output.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/instrumentor/test/fixtures/is-scroll-view-extends-component/output.js -------------------------------------------------------------------------------- /instrumentor/test/fixtures/is-switch-pre-0-66/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/instrumentor/test/fixtures/is-switch-pre-0-66/code.js -------------------------------------------------------------------------------- /instrumentor/test/fixtures/is-switch-pre-0-66/output.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/instrumentor/test/fixtures/is-switch-pre-0-66/output.js -------------------------------------------------------------------------------- /instrumentor/test/fixtures/is-switch/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/instrumentor/test/fixtures/is-switch/code.js -------------------------------------------------------------------------------- /instrumentor/test/fixtures/is-switch/output.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/instrumentor/test/fixtures/is-switch/output.js -------------------------------------------------------------------------------- /instrumentor/test/fixtures/is-text-input/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/instrumentor/test/fixtures/is-text-input/code.js -------------------------------------------------------------------------------- /instrumentor/test/fixtures/is-text-input/output.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/instrumentor/test/fixtures/is-text-input/output.js -------------------------------------------------------------------------------- /instrumentor/test/fixtures/is-touchable-0-62/code.js: -------------------------------------------------------------------------------- 1 | class TouchableOpacity extends React.Component {} 2 | -------------------------------------------------------------------------------- /instrumentor/test/fixtures/is-touchable-0-62/output.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/instrumentor/test/fixtures/is-touchable-0-62/output.js -------------------------------------------------------------------------------- /instrumentor/test/fixtures/is-touchable/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/instrumentor/test/fixtures/is-touchable/code.js -------------------------------------------------------------------------------- /instrumentor/test/fixtures/is-touchable/output.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/instrumentor/test/fixtures/is-touchable/output.js -------------------------------------------------------------------------------- /instrumentor/test/fixtures/no-touchable-mixin/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/instrumentor/test/fixtures/no-touchable-mixin/code.js -------------------------------------------------------------------------------- /instrumentor/test/fixtures/no-touchable-mixin/output.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/instrumentor/test/fixtures/no-touchable-mixin/output.js -------------------------------------------------------------------------------- /instrumentor/test/fixtures/not-create-react-class/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/instrumentor/test/fixtures/not-create-react-class/code.js -------------------------------------------------------------------------------- /instrumentor/test/fixtures/not-create-react-class/output.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/instrumentor/test/fixtures/not-create-react-class/output.js -------------------------------------------------------------------------------- /instrumentor/test/fixtures/not-scroll-view/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/instrumentor/test/fixtures/not-scroll-view/code.js -------------------------------------------------------------------------------- /instrumentor/test/fixtures/not-scroll-view/output.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/instrumentor/test/fixtures/not-scroll-view/output.js -------------------------------------------------------------------------------- /instrumentor/test/fixtures/not-text-input/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/instrumentor/test/fixtures/not-text-input/code.js -------------------------------------------------------------------------------- /instrumentor/test/fixtures/not-text-input/output.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/instrumentor/test/fixtures/not-text-input/output.js -------------------------------------------------------------------------------- /instrumentor/test/fixtures/run-application/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/instrumentor/test/fixtures/run-application/code.js -------------------------------------------------------------------------------- /instrumentor/test/fixtures/run-application/output.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/instrumentor/test/fixtures/run-application/output.js -------------------------------------------------------------------------------- /instrumentor/test/fixtures/touchable-no-press-handlers/code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/instrumentor/test/fixtures/touchable-no-press-handlers/code.js -------------------------------------------------------------------------------- /instrumentor/test/fixtures/touchable-no-press-handlers/output.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/instrumentor/test/fixtures/touchable-no-press-handlers/output.js -------------------------------------------------------------------------------- /instrumentor/test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/instrumentor/test/index.js -------------------------------------------------------------------------------- /integration-tests/.gitignore: -------------------------------------------------------------------------------- 1 | heap-react-native-*.tgz 2 | -------------------------------------------------------------------------------- /integration-tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/README.md -------------------------------------------------------------------------------- /integration-tests/clean-android.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/clean-android.sh -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/.buckconfig -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/.detoxrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/.detoxrc.json -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | }; 5 | -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/.flowconfig -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/.gitignore -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/.prettierrc.js -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/__tests__/App-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/__tests__/App-test.js -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/android/app/_BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/android/app/_BUCK -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/android/app/build.gradle -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/android/app/build_defs.bzl -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/android/app/debug.keystore -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/android/app/src/androidTest/java/com/testdriver063/DetoxTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/android/app/src/androidTest/java/com/testdriver063/DetoxTest.java -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/android/app/src/debug/java/com/testdriver063/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/android/app/src/debug/java/com/testdriver063/ReactNativeFlipper.java -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/android/app/src/main/assets/fonts/AntDesign.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/android/app/src/main/assets/fonts/AntDesign.ttf -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/android/app/src/main/assets/fonts/Feather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/android/app/src/main/assets/fonts/Feather.ttf -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/android/app/src/main/assets/fonts/Fontisto.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/android/app/src/main/assets/fonts/Fontisto.ttf -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/android/app/src/main/assets/fonts/Roboto.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/android/app/src/main/assets/fonts/Roboto.ttf -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/android/app/src/main/assets/fonts/Roboto_medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/android/app/src/main/assets/fonts/Roboto_medium.ttf -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/android/app/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/android/app/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/android/app/src/main/assets/fonts/rubicon-icon-font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/android/app/src/main/assets/fonts/rubicon-icon-font.ttf -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/android/app/src/main/java/com/testdriver063/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/android/app/src/main/java/com/testdriver063/MainActivity.java -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/android/app/src/main/java/com/testdriver063/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/android/app/src/main/java/com/testdriver063/MainApplication.java -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/android/app/src/main/res/xml/network_security_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/android/app/src/main/res/xml/network_security_config.xml -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/android/build.gradle -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/android/gradle.properties -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/android/gradlew -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/android/gradlew.bat -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/android/settings.gradle -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/app.json -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/babel.config.js -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/heap.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/heap.config.json -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/index.js -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/ios/Podfile -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/ios/Podfile.lock -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/ios/TestDriver063-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/ios/TestDriver063-tvOS/Info.plist -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/ios/TestDriver063-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/ios/TestDriver063-tvOSTests/Info.plist -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/ios/TestDriver063.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/ios/TestDriver063.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/ios/TestDriver063.xcodeproj/xcshareddata/xcschemes/TestDriver063-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/ios/TestDriver063.xcodeproj/xcshareddata/xcschemes/TestDriver063-tvOS.xcscheme -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/ios/TestDriver063.xcodeproj/xcshareddata/xcschemes/TestDriver063.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/ios/TestDriver063.xcodeproj/xcshareddata/xcschemes/TestDriver063.xcscheme -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/ios/TestDriver063.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/ios/TestDriver063.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/ios/TestDriver063.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/ios/TestDriver063.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/ios/TestDriver063/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/ios/TestDriver063/AppDelegate.h -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/ios/TestDriver063/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/ios/TestDriver063/AppDelegate.m -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/ios/TestDriver063/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/ios/TestDriver063/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/ios/TestDriver063/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/ios/TestDriver063/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/ios/TestDriver063/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/ios/TestDriver063/Info.plist -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/ios/TestDriver063/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/ios/TestDriver063/LaunchScreen.storyboard -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/ios/TestDriver063/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/ios/TestDriver063/main.m -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/ios/TestDriver063Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/ios/TestDriver063Tests/Info.plist -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/ios/TestDriver063Tests/TestDriver063Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/ios/TestDriver063Tests/TestDriver063Tests.m -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/metro.config.js -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/package-lock.json -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/package.json -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/patches/detox+19.13.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/patches/detox+19.13.0.patch -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver063/patches/react-native+0.63.5.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver063/patches/react-native+0.63.5.patch -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/.buckconfig -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/.detoxrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/.detoxrc.json -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/.editorconfig: -------------------------------------------------------------------------------- 1 | # Windows files 2 | [*.bat] 3 | end_of_line = crlf 4 | -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native-community', 4 | }; 5 | -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/.flowconfig -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/.gitattributes -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/.gitignore -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/.prettierrc.js -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/__tests__/App-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/__tests__/App-test.js -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/android/app/_BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/android/app/_BUCK -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/android/app/build.gradle -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/android/app/build_defs.bzl -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/android/app/debug.keystore -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/android/app/src/androidTest/java/com/testdriver066/DetoxTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/android/app/src/androidTest/java/com/testdriver066/DetoxTest.java -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/android/app/src/debug/java/com/testdriver066/ReactNativeFlipper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/android/app/src/debug/java/com/testdriver066/ReactNativeFlipper.java -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/android/app/src/main/assets/fonts/AntDesign.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/android/app/src/main/assets/fonts/AntDesign.ttf -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/android/app/src/main/assets/fonts/Feather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/android/app/src/main/assets/fonts/Feather.ttf -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/android/app/src/main/assets/fonts/Fontisto.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/android/app/src/main/assets/fonts/Fontisto.ttf -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/android/app/src/main/assets/fonts/Roboto.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/android/app/src/main/assets/fonts/Roboto.ttf -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/android/app/src/main/assets/fonts/Roboto_medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/android/app/src/main/assets/fonts/Roboto_medium.ttf -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/android/app/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/android/app/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/android/app/src/main/assets/fonts/rubicon-icon-font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/android/app/src/main/assets/fonts/rubicon-icon-font.ttf -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/android/app/src/main/java/com/testdriver066/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/android/app/src/main/java/com/testdriver066/MainActivity.java -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/android/app/src/main/java/com/testdriver066/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/android/app/src/main/java/com/testdriver066/MainApplication.java -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/android/app/src/main/res/xml/network_security_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/android/app/src/main/res/xml/network_security_config.xml -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/android/build.gradle -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/android/gradle.properties -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/android/gradlew -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/android/gradlew.bat -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/android/settings.gradle -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/app.json -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/babel.config.js -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/heap.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/heap.config.json -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/index.js -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/ios/Podfile -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/ios/Podfile.lock -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/ios/TestDriver066.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/ios/TestDriver066.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/ios/TestDriver066.xcodeproj/xcshareddata/xcschemes/TestDriver066.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/ios/TestDriver066.xcodeproj/xcshareddata/xcschemes/TestDriver066.xcscheme -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/ios/TestDriver066.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/ios/TestDriver066.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/ios/TestDriver066.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/ios/TestDriver066.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/ios/TestDriver066/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/ios/TestDriver066/AppDelegate.h -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/ios/TestDriver066/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/ios/TestDriver066/AppDelegate.m -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/ios/TestDriver066/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/ios/TestDriver066/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/ios/TestDriver066/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/ios/TestDriver066/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/ios/TestDriver066/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/ios/TestDriver066/Info.plist -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/ios/TestDriver066/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/ios/TestDriver066/LaunchScreen.storyboard -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/ios/TestDriver066/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/ios/TestDriver066/main.m -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/ios/TestDriver066Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/ios/TestDriver066Tests/Info.plist -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/ios/TestDriver066Tests/TestDriver066Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/ios/TestDriver066Tests/TestDriver066Tests.m -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/metro.config.js -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/package-lock.json -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/package.json -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/patches/@react-native-community+masked-view+0.1.11.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/patches/@react-native-community+masked-view+0.1.11.patch -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/patches/detox+19.13.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/patches/detox+19.13.0.patch -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/patches/react-native+0.66.5.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/patches/react-native+0.66.5.patch -------------------------------------------------------------------------------- /integration-tests/drivers/TestDriver066/patches/react-native-screens+2.18.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/drivers/TestDriver066/patches/react-native-screens+2.18.1.patch -------------------------------------------------------------------------------- /integration-tests/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/src/App.tsx -------------------------------------------------------------------------------- /integration-tests/src/screens/HeapIgnoreScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/src/screens/HeapIgnoreScreen.tsx -------------------------------------------------------------------------------- /integration-tests/src/screens/HomeScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/src/screens/HomeScreen.tsx -------------------------------------------------------------------------------- /integration-tests/src/screens/NavigationScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/src/screens/NavigationScreen.tsx -------------------------------------------------------------------------------- /integration-tests/src/screens/PropertiesScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/src/screens/PropertiesScreen.tsx -------------------------------------------------------------------------------- /integration-tests/src/screens/TouchablesScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/src/screens/TouchablesScreen.tsx -------------------------------------------------------------------------------- /integration-tests/src/screens/navigationScreens/StackNavigationScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/src/screens/navigationScreens/StackNavigationScreen.tsx -------------------------------------------------------------------------------- /integration-tests/src/screens/navigationScreens/TabNavigationScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/src/screens/navigationScreens/TabNavigationScreen.tsx -------------------------------------------------------------------------------- /integration-tests/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/test.sh -------------------------------------------------------------------------------- /integration-tests/tests/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/tests/config.json -------------------------------------------------------------------------------- /integration-tests/tests/environment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/tests/environment.js -------------------------------------------------------------------------------- /integration-tests/tests/heap_properties.e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/tests/heap_properties.e2e.js -------------------------------------------------------------------------------- /integration-tests/tests/heapignore.e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/tests/heapignore.e2e.js -------------------------------------------------------------------------------- /integration-tests/tests/hierarchy.e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/tests/hierarchy.e2e.js -------------------------------------------------------------------------------- /integration-tests/tests/properties.e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/tests/properties.e2e.js -------------------------------------------------------------------------------- /integration-tests/tests/simple.e2e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/tests/simple.e2e.js -------------------------------------------------------------------------------- /integration-tests/tests/util/root.proto.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/tests/util/root.proto.json -------------------------------------------------------------------------------- /integration-tests/tests/util/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/tests/util/server.ts -------------------------------------------------------------------------------- /integration-tests/tests/util/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/tests/util/types.ts -------------------------------------------------------------------------------- /integration-tests/tests/util/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/integration-tests/tests/util/util.ts -------------------------------------------------------------------------------- /ios/HeapSettings.bundle/HeapSettings.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/ios/HeapSettings.bundle/HeapSettings.plist -------------------------------------------------------------------------------- /ios/HeapSettings.bundle/generate_settings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/ios/HeapSettings.bundle/generate_settings.rb -------------------------------------------------------------------------------- /ios/HeapSettings.bundle/generate_settings_common.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/ios/HeapSettings.bundle/generate_settings_common.rb -------------------------------------------------------------------------------- /ios/HeapSettings.bundle/generate_settings_non_cocoapods.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/ios/HeapSettings.bundle/generate_settings_non_cocoapods.rb -------------------------------------------------------------------------------- /ios/HeapSettings.bundle/test_generate_settings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/ios/HeapSettings.bundle/test_generate_settings.rb -------------------------------------------------------------------------------- /ios/RNHeap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/ios/RNHeap.h -------------------------------------------------------------------------------- /ios/RNHeap.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/ios/RNHeap.m -------------------------------------------------------------------------------- /ios/RNHeap.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/ios/RNHeap.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/RNHeapInit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/ios/RNHeapInit.h -------------------------------------------------------------------------------- /ios/RNHeapInit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/ios/RNHeapInit.m -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/jest.config.js -------------------------------------------------------------------------------- /js/Heap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/js/Heap.js -------------------------------------------------------------------------------- /js/__tests__/Heap.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/js/__tests__/Heap.spec.js -------------------------------------------------------------------------------- /js/autotrack/__tests__/common.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/js/autotrack/__tests__/common.spec.js -------------------------------------------------------------------------------- /js/autotrack/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/js/autotrack/common.ts -------------------------------------------------------------------------------- /js/autotrack/heapIgnore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/js/autotrack/heapIgnore.js -------------------------------------------------------------------------------- /js/autotrack/pressable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/js/autotrack/pressable.js -------------------------------------------------------------------------------- /js/autotrack/reactNavigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/js/autotrack/reactNavigation.js -------------------------------------------------------------------------------- /js/autotrack/scrollViews.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/js/autotrack/scrollViews.js -------------------------------------------------------------------------------- /js/autotrack/switches.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/js/autotrack/switches.js -------------------------------------------------------------------------------- /js/autotrack/textInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/js/autotrack/textInput.js -------------------------------------------------------------------------------- /js/autotrack/touchables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/js/autotrack/touchables.js -------------------------------------------------------------------------------- /js/libraryPropConfigs/nativeBasePropConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/js/libraryPropConfigs/nativeBasePropConfig.ts -------------------------------------------------------------------------------- /js/libraryPropConfigs/rnElementsPropConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/js/libraryPropConfigs/rnElementsPropConfig.ts -------------------------------------------------------------------------------- /js/propExtractorConfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/js/propExtractorConfig.ts -------------------------------------------------------------------------------- /js/util/__mocks__/navigationUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/js/util/__mocks__/navigationUtil.js -------------------------------------------------------------------------------- /js/util/__tests__/combineConfigs.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/js/util/__tests__/combineConfigs.spec.ts -------------------------------------------------------------------------------- /js/util/__tests__/extractProps.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/js/util/__tests__/extractProps.spec.ts -------------------------------------------------------------------------------- /js/util/__tests__/navigationUtil.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/js/util/__tests__/navigationUtil.test.ts -------------------------------------------------------------------------------- /js/util/bailer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/js/util/bailer.ts -------------------------------------------------------------------------------- /js/util/checkDisplayNames.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/js/util/checkDisplayNames.ts -------------------------------------------------------------------------------- /js/util/combineConfigs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/js/util/combineConfigs.ts -------------------------------------------------------------------------------- /js/util/contextualProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/js/util/contextualProps.ts -------------------------------------------------------------------------------- /js/util/extractProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/js/util/extractProps.ts -------------------------------------------------------------------------------- /js/util/hocUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/js/util/hocUtil.js -------------------------------------------------------------------------------- /js/util/metadataPropUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/js/util/metadataPropUtil.ts -------------------------------------------------------------------------------- /js/util/navigationUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/js/util/navigationUtil.ts -------------------------------------------------------------------------------- /js/util/reservedCharacters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/js/util/reservedCharacters.js -------------------------------------------------------------------------------- /js/version.ts: -------------------------------------------------------------------------------- 1 | export const version = "0.22.8"; 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/package.json -------------------------------------------------------------------------------- /plugin/src/withHeap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/plugin/src/withHeap.ts -------------------------------------------------------------------------------- /plugin/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/plugin/tsconfig.json -------------------------------------------------------------------------------- /react-native-heap.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/react-native-heap.podspec -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/tsconfig.json -------------------------------------------------------------------------------- /unimodule.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heap/react-native-heap/HEAD/unimodule.json --------------------------------------------------------------------------------