Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
SRCT
whats-open-android
Commits
9cf9354c
Commit
9cf9354c
authored
Mar 03, 2017
by
Robert Hitt
Browse files
Should actually fix CI build failing
parent
497c3af6
Pipeline
#1029
failed with stages
in 2 minutes and 22 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
app/src/main/java/srct/whatsopen/MyApplication.java
View file @
9cf9354c
...
...
@@ -20,11 +20,14 @@ public class MyApplication extends Application {
@Override
public
void
onCreate
()
{
super
.
onCreate
();
Fabric
.
with
(
this
,
new
Crashlytics
.
Builder
()
.
core
(
new
CrashlyticsCore
.
Builder
()
.
disabled
(
BuildConfig
.
DEBUG
)
.
build
())
.
build
());
if
(!
BuildConfig
.
DEBUG
)
{
Fabric
.
with
(
this
,
new
Crashlytics
.
Builder
()
.
core
(
new
CrashlyticsCore
.
Builder
()
.
disabled
(
BuildConfig
.
DEBUG
)
.
build
())
.
build
());
}
// Set up LeakCanary for memory leak detection
if
(
LeakCanary
.
isInAnalyzerProcess
(
this
))
{
...
...
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