Compare commits

..

1 Commits

Author SHA1 Message Date
Renovate Bot 24a061b670
chore(deps): update dependency androidx.swiperefreshlayout:swiperefreshlayout to v1.1.0 2021-11-07 12:26:37 +00:00
3 changed files with 24 additions and 4 deletions

View File

@ -2,6 +2,28 @@
![Screenshot](/screenshots/homescreen.jpg?raw=true)
A mobile app for practising the theoretical part of the [vocational exam](https://cke.gov.pl/en/vocational-examination/).
## Development
### Prerequisites
1. Node.JS
2. yarn
3. [JDK and Android Studio](https://reactnative.dev/docs/environment-setup)
### Installation
1. Clone this repo
```
git clone git@github.com:zdam-egzamin-zawodowy/mobile-app.git
```
2. Open the folder with this project in a terminal.
3. `yarn install`
4. `yarn run android` (iOS isn't supported)
## License
Distributed under the MIT License. See `LICENSE` for more information.

View File

@ -206,7 +206,7 @@ dependencies {
//noinspection GradleDynamicVersion
implementation "com.facebook.react:react-native:+" // From node_modules
implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.0.0"
implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.1.0"
debugImplementation("com.facebook.flipper:flipper:${FLIPPER_VERSION}") {
exclude group:'com.facebook.fbjni'

View File

@ -18,9 +18,7 @@ const initSentry = () => {
}),
],
tracesSampleRate: 0.3,
release: __DEV__
? 'com.dawidwysokinski.zdamegzaminzawodowy@development'
: undefined,
release: __DEV__ ? 'development' : undefined,
});
};