├── .gitignore ├── Appfile ├── Common ├── Deliverfile ├── Fastfile ├── Gymfile ├── Matchfile ├── Pluginfile ├── README.md └── actions ├── bugsnag_sourcemaps.rb ├── codepush.rb └── codepush_promote.rb /.gitignore: -------------------------------------------------------------------------------- 1 | *.xml 2 | -------------------------------------------------------------------------------- /Appfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGPSKI/react-native-fastlane-boilerplate/HEAD/Appfile -------------------------------------------------------------------------------- /Common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGPSKI/react-native-fastlane-boilerplate/HEAD/Common -------------------------------------------------------------------------------- /Deliverfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGPSKI/react-native-fastlane-boilerplate/HEAD/Deliverfile -------------------------------------------------------------------------------- /Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGPSKI/react-native-fastlane-boilerplate/HEAD/Fastfile -------------------------------------------------------------------------------- /Gymfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGPSKI/react-native-fastlane-boilerplate/HEAD/Gymfile -------------------------------------------------------------------------------- /Matchfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGPSKI/react-native-fastlane-boilerplate/HEAD/Matchfile -------------------------------------------------------------------------------- /Pluginfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGPSKI/react-native-fastlane-boilerplate/HEAD/Pluginfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGPSKI/react-native-fastlane-boilerplate/HEAD/README.md -------------------------------------------------------------------------------- /actions/bugsnag_sourcemaps.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGPSKI/react-native-fastlane-boilerplate/HEAD/actions/bugsnag_sourcemaps.rb -------------------------------------------------------------------------------- /actions/codepush.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGPSKI/react-native-fastlane-boilerplate/HEAD/actions/codepush.rb -------------------------------------------------------------------------------- /actions/codepush_promote.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TGPSKI/react-native-fastlane-boilerplate/HEAD/actions/codepush_promote.rb --------------------------------------------------------------------------------