├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── index.js ├── ios ├── RNAppStoreReview.h ├── RNAppStoreReview.m └── RNAppStoreReview.xcodeproj │ └── project.pbxproj ├── package.json ├── react-native-app-store-review.podspec └── src ├── index.android.js └── index.ios.js /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magrinj/react-native-app-store-review/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magrinj/react-native-app-store-review/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magrinj/react-native-app-store-review/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magrinj/react-native-app-store-review/HEAD/index.js -------------------------------------------------------------------------------- /ios/RNAppStoreReview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magrinj/react-native-app-store-review/HEAD/ios/RNAppStoreReview.h -------------------------------------------------------------------------------- /ios/RNAppStoreReview.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magrinj/react-native-app-store-review/HEAD/ios/RNAppStoreReview.m -------------------------------------------------------------------------------- /ios/RNAppStoreReview.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magrinj/react-native-app-store-review/HEAD/ios/RNAppStoreReview.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magrinj/react-native-app-store-review/HEAD/package.json -------------------------------------------------------------------------------- /react-native-app-store-review.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magrinj/react-native-app-store-review/HEAD/react-native-app-store-review.podspec -------------------------------------------------------------------------------- /src/index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magrinj/react-native-app-store-review/HEAD/src/index.android.js -------------------------------------------------------------------------------- /src/index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/magrinj/react-native-app-store-review/HEAD/src/index.ios.js --------------------------------------------------------------------------------