https://github.com/nericode/pokedex
https://github.com/nericode/pokedex
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/nericode/pokedex
- Owner: nericode
- Created: 2021-06-07T18:31:24.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2021-07-01T17:44:05.000Z (almost 5 years ago)
- Last Synced: 2025-02-15T03:42:00.678Z (over 1 year ago)
- Language: JavaScript
- Size: 931 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Hermes
- Android Edit `your android/app/build.gradle`
```
project.ext.react = [
entryFile: "index.js",
- enableHermes: false // clean and rebuild if changing
+ enableHermes: true // clean and rebuild if changing
]
```
cd android && ./gradlew clean && cd ..
- iOS Edit `your ios/Podfile`
```
:hermes_enabled => true
```
# Generating the release APK
cd android && ./gradlew bundleRelease && cd ..
# Testing the release build of your app
npx react-native run-android --variant=release
# Generating the release iOS
npx react-native run-ios --configuration Release
or
npx react-native run-ios --device --configuration Release
# How to test?, execute this commands
Test all project
npm test
Test all project excluding API
npm test -- --testPathIgnorePatterns PokemonService