Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
thalia
ThaliApp
Commits
d298480b
Verified
Commit
d298480b
authored
Jul 25, 2018
by
Sébastiaan Versteeg
Browse files
Disable sentry upload in Android build
parent
8db153d8
Changes
7
Show whitespace changes
Inline
Side-by-side
.babelrc
View file @
d298480b
{
"presets": ["react-native", "react-native-dotenv"],
"presets": ["react-native", "
module:
react-native-dotenv"],
"plugins": ["@babel/plugin-proposal-object-rest-spread", "@babel/transform-regenerator"]
}
\ No newline at end of file
android/app/build.gradle
View file @
d298480b
...
...
@@ -78,7 +78,8 @@ project.ext.react = [
]
apply
from:
"../../node_modules/react-native/react.gradle"
apply
from:
"../../node_modules/react-native-sentry/sentry.gradle"
// Disabled because of https://github.com/getsentry/react-native-sentry/issues/326
// apply from: "../../node_modules/react-native-sentry/sentry.gradle"
/**
* Set this to true to create two separate APKs instead of one:
...
...
app/sagas/calendar.js
View file @
d298480b
import
{
call
,
put
,
select
,
takeEvery
}
from
'
redux-saga/effects
'
;
import
{
call
,
put
,
select
,
takeEvery
,
}
from
'
redux-saga/effects
'
;
import
{
Sentry
}
from
'
react-native-sentry
'
;
import
{
apiRequest
,
tokenSelector
}
from
'
../utils/url
'
;
...
...
app/sagas/event.js
View file @
d298480b
import
{
call
,
put
,
takeEvery
,
select
}
from
'
redux-saga/effects
'
;
import
{
call
,
put
,
takeEvery
,
select
,
}
from
'
redux-saga/effects
'
;
import
{
Sentry
}
from
'
react-native-sentry
'
;
import
{
apiRequest
,
tokenSelector
}
from
'
../utils/url
'
;
...
...
app/sagas/members.js
View file @
d298480b
import
{
Dimensions
}
from
'
react-native
'
;
import
{
call
,
put
,
select
,
takeEvery
}
from
'
redux-saga/effects
'
;
import
{
call
,
put
,
select
,
takeEvery
,
}
from
'
redux-saga/effects
'
;
import
{
Sentry
}
from
'
react-native-sentry
'
;
import
{
TOTAL_BAR_HEIGHT
}
from
'
../ui/components/standardHeader/style/StandardHeader
'
;
...
...
app/sagas/pizza.js
View file @
d298480b
import
{
call
,
put
,
takeEvery
,
select
}
from
'
redux-saga/effects
'
;
import
{
call
,
put
,
takeEvery
,
select
,
}
from
'
redux-saga/effects
'
;
import
{
Sentry
}
from
'
react-native-sentry
'
;
import
{
apiRequest
,
tokenSelector
}
from
'
../utils/url
'
;
...
...
app/sagas/welcome.js
View file @
d298480b
import
{
call
,
put
,
select
,
takeEvery
}
from
'
redux-saga/effects
'
;
import
{
call
,
put
,
select
,
takeEvery
,
}
from
'
redux-saga/effects
'
;
import
{
Sentry
}
from
'
react-native-sentry
'
;
import
{
apiRequest
,
tokenSelector
}
from
'
../utils/url
'
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment