├── .gitignore ├── .npmignore ├── .prettierrc ├── .release-it.json ├── .travis.yml ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── docs ├── assets │ ├── make-logo.png │ ├── splash-example.center.png │ ├── splash-example.contain.png │ └── splash-example.cover.png ├── set-icon.md └── set-splash.md ├── package.json ├── react-native.config.js ├── src ├── logo.ts ├── modules │ ├── config.ts │ ├── index.ts │ ├── setIcon │ │ ├── android │ │ │ ├── config.ts │ │ │ └── service.ts │ │ ├── ios │ │ │ ├── config.ts │ │ │ └── service.ts │ │ ├── setIcon.command.ts │ │ └── setIcon.task.ts │ └── setSplashScreen │ │ ├── android │ │ ├── config.ts │ │ └── service.ts │ │ ├── ios │ │ ├── config.ts │ │ └── service.ts │ │ ├── setSplashScreen.command.ts │ │ └── setSplashScreen.task.ts ├── rn-plugin.config.ts ├── services │ ├── analytics.ts │ ├── color.processing.ts │ ├── file.processing.ts │ ├── image.processing.ts │ ├── ios │ │ └── service.ts │ └── type.ts └── utils.ts ├── templates ├── android │ ├── drawable │ │ └── splashscreen.xml │ ├── layout │ │ ├── launch_screen.center.xml │ │ ├── launch_screen.contain.xml │ │ └── launch_screen.cover.xml │ ├── mipmap │ │ └── ic_launcher.xml │ └── values │ │ ├── colors-icon.xml │ │ ├── colors-splash.xml │ │ └── styles-splash.xml └── ios │ ├── AppIconSetContents.json │ ├── SplashImageSetContents.json │ ├── SplashScreen.center.storyboard │ ├── SplashScreen.contain.storyboard │ └── SplashScreen.cover.storyboard ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-make/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-make/HEAD/.prettierrc -------------------------------------------------------------------------------- /.release-it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-make/HEAD/.release-it.json -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-make/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "editor.formatOnSave": true 3 | } -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-make/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-make/HEAD/README.md -------------------------------------------------------------------------------- /docs/assets/make-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-make/HEAD/docs/assets/make-logo.png -------------------------------------------------------------------------------- /docs/assets/splash-example.center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-make/HEAD/docs/assets/splash-example.center.png -------------------------------------------------------------------------------- /docs/assets/splash-example.contain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-make/HEAD/docs/assets/splash-example.contain.png -------------------------------------------------------------------------------- /docs/assets/splash-example.cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-make/HEAD/docs/assets/splash-example.cover.png -------------------------------------------------------------------------------- /docs/set-icon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-make/HEAD/docs/set-icon.md -------------------------------------------------------------------------------- /docs/set-splash.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-make/HEAD/docs/set-splash.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-make/HEAD/package.json -------------------------------------------------------------------------------- /react-native.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-make/HEAD/react-native.config.js -------------------------------------------------------------------------------- /src/logo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-make/HEAD/src/logo.ts -------------------------------------------------------------------------------- /src/modules/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-make/HEAD/src/modules/config.ts -------------------------------------------------------------------------------- /src/modules/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-make/HEAD/src/modules/index.ts -------------------------------------------------------------------------------- /src/modules/setIcon/android/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-make/HEAD/src/modules/setIcon/android/config.ts -------------------------------------------------------------------------------- /src/modules/setIcon/android/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-make/HEAD/src/modules/setIcon/android/service.ts -------------------------------------------------------------------------------- /src/modules/setIcon/ios/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-make/HEAD/src/modules/setIcon/ios/config.ts -------------------------------------------------------------------------------- /src/modules/setIcon/ios/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-make/HEAD/src/modules/setIcon/ios/service.ts -------------------------------------------------------------------------------- /src/modules/setIcon/setIcon.command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-make/HEAD/src/modules/setIcon/setIcon.command.ts -------------------------------------------------------------------------------- /src/modules/setIcon/setIcon.task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-make/HEAD/src/modules/setIcon/setIcon.task.ts -------------------------------------------------------------------------------- /src/modules/setSplashScreen/android/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-make/HEAD/src/modules/setSplashScreen/android/config.ts -------------------------------------------------------------------------------- /src/modules/setSplashScreen/android/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-make/HEAD/src/modules/setSplashScreen/android/service.ts -------------------------------------------------------------------------------- /src/modules/setSplashScreen/ios/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-make/HEAD/src/modules/setSplashScreen/ios/config.ts -------------------------------------------------------------------------------- /src/modules/setSplashScreen/ios/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-make/HEAD/src/modules/setSplashScreen/ios/service.ts -------------------------------------------------------------------------------- /src/modules/setSplashScreen/setSplashScreen.command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-make/HEAD/src/modules/setSplashScreen/setSplashScreen.command.ts -------------------------------------------------------------------------------- /src/modules/setSplashScreen/setSplashScreen.task.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-make/HEAD/src/modules/setSplashScreen/setSplashScreen.task.ts -------------------------------------------------------------------------------- /src/rn-plugin.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-make/HEAD/src/rn-plugin.config.ts -------------------------------------------------------------------------------- /src/services/analytics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-make/HEAD/src/services/analytics.ts -------------------------------------------------------------------------------- /src/services/color.processing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-make/HEAD/src/services/color.processing.ts -------------------------------------------------------------------------------- /src/services/file.processing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-make/HEAD/src/services/file.processing.ts -------------------------------------------------------------------------------- /src/services/image.processing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-make/HEAD/src/services/image.processing.ts -------------------------------------------------------------------------------- /src/services/ios/service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-make/HEAD/src/services/ios/service.ts -------------------------------------------------------------------------------- /src/services/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-make/HEAD/src/services/type.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-make/HEAD/src/utils.ts -------------------------------------------------------------------------------- /templates/android/drawable/splashscreen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-make/HEAD/templates/android/drawable/splashscreen.xml -------------------------------------------------------------------------------- /templates/android/layout/launch_screen.center.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-make/HEAD/templates/android/layout/launch_screen.center.xml -------------------------------------------------------------------------------- /templates/android/layout/launch_screen.contain.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-make/HEAD/templates/android/layout/launch_screen.contain.xml -------------------------------------------------------------------------------- /templates/android/layout/launch_screen.cover.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-make/HEAD/templates/android/layout/launch_screen.cover.xml -------------------------------------------------------------------------------- /templates/android/mipmap/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-make/HEAD/templates/android/mipmap/ic_launcher.xml -------------------------------------------------------------------------------- /templates/android/values/colors-icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-make/HEAD/templates/android/values/colors-icon.xml -------------------------------------------------------------------------------- /templates/android/values/colors-splash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-make/HEAD/templates/android/values/colors-splash.xml -------------------------------------------------------------------------------- /templates/android/values/styles-splash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-make/HEAD/templates/android/values/styles-splash.xml -------------------------------------------------------------------------------- /templates/ios/AppIconSetContents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-make/HEAD/templates/ios/AppIconSetContents.json -------------------------------------------------------------------------------- /templates/ios/SplashImageSetContents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-make/HEAD/templates/ios/SplashImageSetContents.json -------------------------------------------------------------------------------- /templates/ios/SplashScreen.center.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-make/HEAD/templates/ios/SplashScreen.center.storyboard -------------------------------------------------------------------------------- /templates/ios/SplashScreen.contain.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-make/HEAD/templates/ios/SplashScreen.contain.storyboard -------------------------------------------------------------------------------- /templates/ios/SplashScreen.cover.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-make/HEAD/templates/ios/SplashScreen.cover.storyboard -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-make/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bamlab/react-native-make/HEAD/yarn.lock --------------------------------------------------------------------------------