├── .gitattributes ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── android ├── build.gradle ├── gradle.properties └── src │ └── main │ ├── AndroidManifest.xml │ ├── AndroidManifestNew.xml │ └── java │ └── com │ └── restartapp │ ├── RestartAppModule.kt │ └── RestartAppPackage.kt ├── babel.config.js ├── free-palestine.jpg ├── ios ├── RestartApp-Bridging-Header.h ├── RestartApp.mm └── RestartApp.swift ├── lefthook.yml ├── lib ├── commonjs │ ├── index.js │ ├── index.js.map │ └── package.json ├── module │ ├── index.js │ ├── index.js.map │ └── package.json └── typescript │ ├── commonjs │ ├── package.json │ └── src │ │ ├── __tests__ │ │ ├── index.test.d.ts │ │ └── index.test.d.ts.map │ │ ├── index.d.ts │ │ └── index.d.ts.map │ └── module │ ├── package.json │ └── src │ ├── __tests__ │ ├── index.test.d.ts │ └── index.test.d.ts.map │ ├── index.d.ts │ └── index.d.ts.map ├── package.json ├── react-native-restart-app.podspec ├── src ├── __tests__ │ └── index.test.tsx └── index.tsx ├── tsconfig.build.json ├── tsconfig.json └── turbo.json /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMabroukS/react-native-restart-app/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMabroukS/react-native-restart-app/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMabroukS/react-native-restart-app/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMabroukS/react-native-restart-app/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMabroukS/react-native-restart-app/HEAD/README.md -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMabroukS/react-native-restart-app/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMabroukS/react-native-restart-app/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMabroukS/react-native-restart-app/HEAD/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/src/main/AndroidManifestNew.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMabroukS/react-native-restart-app/HEAD/android/src/main/AndroidManifestNew.xml -------------------------------------------------------------------------------- /android/src/main/java/com/restartapp/RestartAppModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMabroukS/react-native-restart-app/HEAD/android/src/main/java/com/restartapp/RestartAppModule.kt -------------------------------------------------------------------------------- /android/src/main/java/com/restartapp/RestartAppPackage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMabroukS/react-native-restart-app/HEAD/android/src/main/java/com/restartapp/RestartAppPackage.kt -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMabroukS/react-native-restart-app/HEAD/babel.config.js -------------------------------------------------------------------------------- /free-palestine.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMabroukS/react-native-restart-app/HEAD/free-palestine.jpg -------------------------------------------------------------------------------- /ios/RestartApp-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMabroukS/react-native-restart-app/HEAD/ios/RestartApp-Bridging-Header.h -------------------------------------------------------------------------------- /ios/RestartApp.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMabroukS/react-native-restart-app/HEAD/ios/RestartApp.mm -------------------------------------------------------------------------------- /ios/RestartApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMabroukS/react-native-restart-app/HEAD/ios/RestartApp.swift -------------------------------------------------------------------------------- /lefthook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMabroukS/react-native-restart-app/HEAD/lefthook.yml -------------------------------------------------------------------------------- /lib/commonjs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMabroukS/react-native-restart-app/HEAD/lib/commonjs/index.js -------------------------------------------------------------------------------- /lib/commonjs/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMabroukS/react-native-restart-app/HEAD/lib/commonjs/index.js.map -------------------------------------------------------------------------------- /lib/commonjs/package.json: -------------------------------------------------------------------------------- 1 | {"type":"commonjs"} 2 | -------------------------------------------------------------------------------- /lib/module/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMabroukS/react-native-restart-app/HEAD/lib/module/index.js -------------------------------------------------------------------------------- /lib/module/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMabroukS/react-native-restart-app/HEAD/lib/module/index.js.map -------------------------------------------------------------------------------- /lib/module/package.json: -------------------------------------------------------------------------------- 1 | {"type":"module"} 2 | -------------------------------------------------------------------------------- /lib/typescript/commonjs/package.json: -------------------------------------------------------------------------------- 1 | {"type":"commonjs"} 2 | -------------------------------------------------------------------------------- /lib/typescript/commonjs/src/__tests__/index.test.d.ts: -------------------------------------------------------------------------------- 1 | //# sourceMappingURL=index.test.d.ts.map -------------------------------------------------------------------------------- /lib/typescript/commonjs/src/__tests__/index.test.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMabroukS/react-native-restart-app/HEAD/lib/typescript/commonjs/src/__tests__/index.test.d.ts.map -------------------------------------------------------------------------------- /lib/typescript/commonjs/src/index.d.ts: -------------------------------------------------------------------------------- 1 | export default function restart(): any; 2 | //# sourceMappingURL=index.d.ts.map -------------------------------------------------------------------------------- /lib/typescript/commonjs/src/index.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMabroukS/react-native-restart-app/HEAD/lib/typescript/commonjs/src/index.d.ts.map -------------------------------------------------------------------------------- /lib/typescript/module/package.json: -------------------------------------------------------------------------------- 1 | {"type":"module"} 2 | -------------------------------------------------------------------------------- /lib/typescript/module/src/__tests__/index.test.d.ts: -------------------------------------------------------------------------------- 1 | //# sourceMappingURL=index.test.d.ts.map -------------------------------------------------------------------------------- /lib/typescript/module/src/__tests__/index.test.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMabroukS/react-native-restart-app/HEAD/lib/typescript/module/src/__tests__/index.test.d.ts.map -------------------------------------------------------------------------------- /lib/typescript/module/src/index.d.ts: -------------------------------------------------------------------------------- 1 | export default function restart(): any; 2 | //# sourceMappingURL=index.d.ts.map -------------------------------------------------------------------------------- /lib/typescript/module/src/index.d.ts.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMabroukS/react-native-restart-app/HEAD/lib/typescript/module/src/index.d.ts.map -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMabroukS/react-native-restart-app/HEAD/package.json -------------------------------------------------------------------------------- /react-native-restart-app.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMabroukS/react-native-restart-app/HEAD/react-native-restart-app.podspec -------------------------------------------------------------------------------- /src/__tests__/index.test.tsx: -------------------------------------------------------------------------------- 1 | it.todo('write a test'); 2 | -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMabroukS/react-native-restart-app/HEAD/src/index.tsx -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMabroukS/react-native-restart-app/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMabroukS/react-native-restart-app/HEAD/tsconfig.json -------------------------------------------------------------------------------- /turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RMabroukS/react-native-restart-app/HEAD/turbo.json --------------------------------------------------------------------------------