├── .editorconfig ├── .gitattributes ├── .github └── workflows │ └── publish.yml ├── .gitignore ├── .npmignore ├── .nvmrc ├── .watchmanconfig ├── .yarn ├── plugins │ └── @yarnpkg │ │ ├── plugin-interactive-tools.cjs │ │ └── plugin-workspace-tools.cjs └── releases │ └── yarn-3.6.1.cjs ├── .yarnrc.yml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── android ├── build.gradle ├── gradle.properties └── src │ └── main │ ├── AndroidManifest.xml │ └── java │ └── com │ └── data │ ├── DataConstants.kt │ ├── DataModule.kt │ ├── DataPackage.kt │ ├── SharedPreferencesHelper.kt │ └── SharedPreferencesProvider.kt ├── app.plugin.js ├── assets └── React-Native-App-Data-Sharing.png ├── babel.config.js ├── examples ├── example1 │ ├── .bundle │ │ └── config │ ├── .watchmanconfig │ ├── Gemfile │ ├── README.md │ ├── android │ │ ├── app │ │ │ ├── build.gradle │ │ │ ├── debug.keystore │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ └── data │ │ │ │ │ └── example │ │ │ │ │ └── one │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ └── MainApplication.kt │ │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ └── rn_edit_text_material.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ ├── app.json │ ├── babel.config.js │ ├── index.js │ ├── ios │ │ ├── .xcode.env │ │ ├── .xcode.env.local │ │ ├── ExampleAppOne.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── ExampleAppOne.xcscheme │ │ ├── ExampleAppOne.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ ├── ExampleAppOne │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.mm │ │ │ ├── ExampleAppOne.entitlements │ │ │ ├── Images.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ ├── LaunchScreen.storyboard │ │ │ ├── PrivacyInfo.xcprivacy │ │ │ └── main.m │ │ ├── ExampleAppOneTests │ │ │ ├── ExampleAppOneTests.m │ │ │ └── Info.plist │ │ ├── Podfile │ │ └── Podfile.lock │ ├── jest.config.js │ ├── metro.config.js │ ├── package.json │ ├── react-native.config.js │ └── src │ │ ├── App.tsx │ │ └── contants │ │ ├── Strings.ts │ │ └── index.ts └── example2 │ ├── .bundle │ └── config │ ├── .watchmanconfig │ ├── Gemfile │ ├── README.md │ ├── android │ ├── app │ │ ├── build.gradle │ │ ├── debug.keystore │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── data │ │ │ │ └── example │ │ │ │ └── two │ │ │ │ ├── MainActivity.kt │ │ │ │ └── MainApplication.kt │ │ │ └── res │ │ │ ├── drawable │ │ │ └── rn_edit_text_material.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle │ ├── app.json │ ├── babel.config.js │ ├── index.js │ ├── ios │ ├── .xcode.env │ ├── .xcode.env.local │ ├── ExampleAppTwo.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── ExampleAppTwo.xcscheme │ ├── ExampleAppTwo.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── ExampleAppTwo │ │ ├── AppDelegate.h │ │ ├── AppDelegate.mm │ │ ├── ExampleAppTwo.entitlements │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ ├── LaunchScreen.storyboard │ │ ├── PrivacyInfo.xcprivacy │ │ └── main.m │ ├── ExampleAppTwoTests │ │ ├── ExampleAppTwoTests.m │ │ └── Info.plist │ ├── Podfile │ └── Podfile.lock │ ├── jest.config.js │ ├── metro.config.js │ ├── package.json │ ├── react-native.config.js │ └── src │ ├── App.tsx │ └── contants │ ├── Strings.ts │ └── index.ts ├── ios ├── Data-Bridging-Header.h ├── Data.h └── Data.m ├── lefthook.yml ├── package.json ├── plugin ├── src │ └── index.ts ├── tsconfig.json └── tsconfig.tsbuildinfo ├── react-native-app-data-sharing.podspec ├── src ├── DataSharing.ts ├── DataSharingEnums.ios.ts ├── DataSharingTypes.ts ├── NormalizeOptionsUtils.ios.ts └── index.tsx ├── tsconfig.build.json ├── tsconfig.json ├── turbo.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/.npmignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v18 2 | -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/.yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs -------------------------------------------------------------------------------- /.yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/.yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs -------------------------------------------------------------------------------- /.yarn/releases/yarn-3.6.1.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/.yarn/releases/yarn-3.6.1.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/README.md -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/src/main/java/com/data/DataConstants.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/android/src/main/java/com/data/DataConstants.kt -------------------------------------------------------------------------------- /android/src/main/java/com/data/DataModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/android/src/main/java/com/data/DataModule.kt -------------------------------------------------------------------------------- /android/src/main/java/com/data/DataPackage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/android/src/main/java/com/data/DataPackage.kt -------------------------------------------------------------------------------- /android/src/main/java/com/data/SharedPreferencesHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/android/src/main/java/com/data/SharedPreferencesHelper.kt -------------------------------------------------------------------------------- /android/src/main/java/com/data/SharedPreferencesProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/android/src/main/java/com/data/SharedPreferencesProvider.kt -------------------------------------------------------------------------------- /app.plugin.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./plugin/build'); 2 | -------------------------------------------------------------------------------- /assets/React-Native-App-Data-Sharing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/assets/React-Native-App-Data-Sharing.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/babel.config.js -------------------------------------------------------------------------------- /examples/example1/.bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example1/.bundle/config -------------------------------------------------------------------------------- /examples/example1/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /examples/example1/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example1/Gemfile -------------------------------------------------------------------------------- /examples/example1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example1/README.md -------------------------------------------------------------------------------- /examples/example1/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example1/android/app/build.gradle -------------------------------------------------------------------------------- /examples/example1/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example1/android/app/debug.keystore -------------------------------------------------------------------------------- /examples/example1/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example1/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /examples/example1/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example1/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /examples/example1/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example1/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /examples/example1/android/app/src/main/java/data/example/one/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example1/android/app/src/main/java/data/example/one/MainActivity.kt -------------------------------------------------------------------------------- /examples/example1/android/app/src/main/java/data/example/one/MainApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example1/android/app/src/main/java/data/example/one/MainApplication.kt -------------------------------------------------------------------------------- /examples/example1/android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example1/android/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /examples/example1/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example1/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/example1/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example1/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /examples/example1/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example1/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/example1/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example1/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /examples/example1/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example1/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/example1/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example1/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /examples/example1/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example1/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/example1/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example1/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /examples/example1/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example1/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/example1/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example1/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /examples/example1/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example1/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /examples/example1/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example1/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /examples/example1/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example1/android/build.gradle -------------------------------------------------------------------------------- /examples/example1/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example1/android/gradle.properties -------------------------------------------------------------------------------- /examples/example1/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example1/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /examples/example1/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example1/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /examples/example1/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example1/android/gradlew -------------------------------------------------------------------------------- /examples/example1/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example1/android/gradlew.bat -------------------------------------------------------------------------------- /examples/example1/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example1/android/settings.gradle -------------------------------------------------------------------------------- /examples/example1/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example1/app.json -------------------------------------------------------------------------------- /examples/example1/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example1/babel.config.js -------------------------------------------------------------------------------- /examples/example1/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example1/index.js -------------------------------------------------------------------------------- /examples/example1/ios/.xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example1/ios/.xcode.env -------------------------------------------------------------------------------- /examples/example1/ios/.xcode.env.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example1/ios/.xcode.env.local -------------------------------------------------------------------------------- /examples/example1/ios/ExampleAppOne.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example1/ios/ExampleAppOne.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /examples/example1/ios/ExampleAppOne.xcodeproj/xcshareddata/xcschemes/ExampleAppOne.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example1/ios/ExampleAppOne.xcodeproj/xcshareddata/xcschemes/ExampleAppOne.xcscheme -------------------------------------------------------------------------------- /examples/example1/ios/ExampleAppOne.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example1/ios/ExampleAppOne.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /examples/example1/ios/ExampleAppOne.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example1/ios/ExampleAppOne.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /examples/example1/ios/ExampleAppOne/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example1/ios/ExampleAppOne/AppDelegate.h -------------------------------------------------------------------------------- /examples/example1/ios/ExampleAppOne/AppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example1/ios/ExampleAppOne/AppDelegate.mm -------------------------------------------------------------------------------- /examples/example1/ios/ExampleAppOne/ExampleAppOne.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example1/ios/ExampleAppOne/ExampleAppOne.entitlements -------------------------------------------------------------------------------- /examples/example1/ios/ExampleAppOne/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example1/ios/ExampleAppOne/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /examples/example1/ios/ExampleAppOne/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example1/ios/ExampleAppOne/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /examples/example1/ios/ExampleAppOne/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example1/ios/ExampleAppOne/Info.plist -------------------------------------------------------------------------------- /examples/example1/ios/ExampleAppOne/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example1/ios/ExampleAppOne/LaunchScreen.storyboard -------------------------------------------------------------------------------- /examples/example1/ios/ExampleAppOne/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example1/ios/ExampleAppOne/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /examples/example1/ios/ExampleAppOne/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example1/ios/ExampleAppOne/main.m -------------------------------------------------------------------------------- /examples/example1/ios/ExampleAppOneTests/ExampleAppOneTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example1/ios/ExampleAppOneTests/ExampleAppOneTests.m -------------------------------------------------------------------------------- /examples/example1/ios/ExampleAppOneTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example1/ios/ExampleAppOneTests/Info.plist -------------------------------------------------------------------------------- /examples/example1/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example1/ios/Podfile -------------------------------------------------------------------------------- /examples/example1/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example1/ios/Podfile.lock -------------------------------------------------------------------------------- /examples/example1/jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: 'react-native', 3 | }; 4 | -------------------------------------------------------------------------------- /examples/example1/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example1/metro.config.js -------------------------------------------------------------------------------- /examples/example1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example1/package.json -------------------------------------------------------------------------------- /examples/example1/react-native.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example1/react-native.config.js -------------------------------------------------------------------------------- /examples/example1/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example1/src/App.tsx -------------------------------------------------------------------------------- /examples/example1/src/contants/Strings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example1/src/contants/Strings.ts -------------------------------------------------------------------------------- /examples/example1/src/contants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example1/src/contants/index.ts -------------------------------------------------------------------------------- /examples/example2/.bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example2/.bundle/config -------------------------------------------------------------------------------- /examples/example2/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /examples/example2/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example2/Gemfile -------------------------------------------------------------------------------- /examples/example2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example2/README.md -------------------------------------------------------------------------------- /examples/example2/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example2/android/app/build.gradle -------------------------------------------------------------------------------- /examples/example2/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example2/android/app/debug.keystore -------------------------------------------------------------------------------- /examples/example2/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example2/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /examples/example2/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example2/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /examples/example2/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example2/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /examples/example2/android/app/src/main/java/data/example/two/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example2/android/app/src/main/java/data/example/two/MainActivity.kt -------------------------------------------------------------------------------- /examples/example2/android/app/src/main/java/data/example/two/MainApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example2/android/app/src/main/java/data/example/two/MainApplication.kt -------------------------------------------------------------------------------- /examples/example2/android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example2/android/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /examples/example2/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example2/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/example2/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example2/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /examples/example2/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example2/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/example2/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example2/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /examples/example2/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example2/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/example2/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example2/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /examples/example2/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example2/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/example2/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example2/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /examples/example2/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example2/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/example2/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example2/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /examples/example2/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example2/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /examples/example2/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example2/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /examples/example2/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example2/android/build.gradle -------------------------------------------------------------------------------- /examples/example2/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example2/android/gradle.properties -------------------------------------------------------------------------------- /examples/example2/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example2/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /examples/example2/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example2/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /examples/example2/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example2/android/gradlew -------------------------------------------------------------------------------- /examples/example2/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example2/android/gradlew.bat -------------------------------------------------------------------------------- /examples/example2/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example2/android/settings.gradle -------------------------------------------------------------------------------- /examples/example2/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example2/app.json -------------------------------------------------------------------------------- /examples/example2/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example2/babel.config.js -------------------------------------------------------------------------------- /examples/example2/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example2/index.js -------------------------------------------------------------------------------- /examples/example2/ios/.xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example2/ios/.xcode.env -------------------------------------------------------------------------------- /examples/example2/ios/.xcode.env.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example2/ios/.xcode.env.local -------------------------------------------------------------------------------- /examples/example2/ios/ExampleAppTwo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example2/ios/ExampleAppTwo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /examples/example2/ios/ExampleAppTwo.xcodeproj/xcshareddata/xcschemes/ExampleAppTwo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example2/ios/ExampleAppTwo.xcodeproj/xcshareddata/xcschemes/ExampleAppTwo.xcscheme -------------------------------------------------------------------------------- /examples/example2/ios/ExampleAppTwo.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example2/ios/ExampleAppTwo.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /examples/example2/ios/ExampleAppTwo.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example2/ios/ExampleAppTwo.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /examples/example2/ios/ExampleAppTwo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example2/ios/ExampleAppTwo/AppDelegate.h -------------------------------------------------------------------------------- /examples/example2/ios/ExampleAppTwo/AppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example2/ios/ExampleAppTwo/AppDelegate.mm -------------------------------------------------------------------------------- /examples/example2/ios/ExampleAppTwo/ExampleAppTwo.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example2/ios/ExampleAppTwo/ExampleAppTwo.entitlements -------------------------------------------------------------------------------- /examples/example2/ios/ExampleAppTwo/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example2/ios/ExampleAppTwo/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /examples/example2/ios/ExampleAppTwo/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example2/ios/ExampleAppTwo/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /examples/example2/ios/ExampleAppTwo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example2/ios/ExampleAppTwo/Info.plist -------------------------------------------------------------------------------- /examples/example2/ios/ExampleAppTwo/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example2/ios/ExampleAppTwo/LaunchScreen.storyboard -------------------------------------------------------------------------------- /examples/example2/ios/ExampleAppTwo/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example2/ios/ExampleAppTwo/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /examples/example2/ios/ExampleAppTwo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example2/ios/ExampleAppTwo/main.m -------------------------------------------------------------------------------- /examples/example2/ios/ExampleAppTwoTests/ExampleAppTwoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example2/ios/ExampleAppTwoTests/ExampleAppTwoTests.m -------------------------------------------------------------------------------- /examples/example2/ios/ExampleAppTwoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example2/ios/ExampleAppTwoTests/Info.plist -------------------------------------------------------------------------------- /examples/example2/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example2/ios/Podfile -------------------------------------------------------------------------------- /examples/example2/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example2/ios/Podfile.lock -------------------------------------------------------------------------------- /examples/example2/jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: 'react-native', 3 | }; 4 | -------------------------------------------------------------------------------- /examples/example2/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example2/metro.config.js -------------------------------------------------------------------------------- /examples/example2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example2/package.json -------------------------------------------------------------------------------- /examples/example2/react-native.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example2/react-native.config.js -------------------------------------------------------------------------------- /examples/example2/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example2/src/App.tsx -------------------------------------------------------------------------------- /examples/example2/src/contants/Strings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example2/src/contants/Strings.ts -------------------------------------------------------------------------------- /examples/example2/src/contants/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/examples/example2/src/contants/index.ts -------------------------------------------------------------------------------- /ios/Data-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/ios/Data-Bridging-Header.h -------------------------------------------------------------------------------- /ios/Data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/ios/Data.h -------------------------------------------------------------------------------- /ios/Data.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/ios/Data.m -------------------------------------------------------------------------------- /lefthook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/lefthook.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/package.json -------------------------------------------------------------------------------- /plugin/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/plugin/src/index.ts -------------------------------------------------------------------------------- /plugin/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/plugin/tsconfig.json -------------------------------------------------------------------------------- /plugin/tsconfig.tsbuildinfo: -------------------------------------------------------------------------------- 1 | {"root":["./src/index.ts"],"version":"5.7.2"} -------------------------------------------------------------------------------- /react-native-app-data-sharing.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/react-native-app-data-sharing.podspec -------------------------------------------------------------------------------- /src/DataSharing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/src/DataSharing.ts -------------------------------------------------------------------------------- /src/DataSharingEnums.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/src/DataSharingEnums.ios.ts -------------------------------------------------------------------------------- /src/DataSharingTypes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/src/DataSharingTypes.ts -------------------------------------------------------------------------------- /src/NormalizeOptionsUtils.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/src/NormalizeOptionsUtils.ios.ts -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/src/index.tsx -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/tsconfig.json -------------------------------------------------------------------------------- /turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/turbo.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimformSolutionsPvtLtd/react-native-app-data-sharing/HEAD/yarn.lock --------------------------------------------------------------------------------