Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
AloqaIM-Android
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
AloqaIM-Android
Commits
24478040
Commit
24478040
authored
Aug 22, 2017
by
Filipe de Lima Brito
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update Stetho version/build configuration.
parent
6d4ef307
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
12 deletions
+9
-12
build.gradle
app/build.gradle
+8
-8
RocketChatApplication.java
.../main/java/chat/rocket/android/RocketChatApplication.java
+1
-4
No files found.
app/build.gradle
View file @
24478040
...
...
@@ -3,9 +3,7 @@ apply plugin: 'io.fabric'
repositories
{
maven
{
url
'https://maven.fabric.io/public'
}
maven
{
url
'https://github.com/uPhyca/stetho-realm/raw/master/maven-repo'
}
maven
{
url
'https://github.com/uPhyca/stetho-realm/raw/master/maven-repo'
}
}
apply
plugin:
'kotlin-android'
...
...
@@ -95,7 +93,9 @@ play {
ext
{
playLibVersion
=
'11.0.4'
stethoVersion
=
'1.4.2'
stethoVersion
=
'1.5.0'
stethoOkhttp3Version
=
'1.5.0'
stethoRealmVersion
=
'2.1.0'
rxbindingVersion
=
'2.0.0'
rxlifecycleVersion
=
'2.1.0'
icepickVersion
=
'3.2.0'
...
...
@@ -124,9 +124,9 @@ dependencies {
compile
'com.squareup.okhttp3:okhttp:3.8.0'
c
ompile
"com.facebook.stetho:stetho:$stethoVersion"
compile
"com.facebook.stetho:stetho-okhttp3:$stetho
Version"
compile
'com.uphyca:stetho_realm:2.1.0'
debugC
ompile
"com.facebook.stetho:stetho:$stethoVersion"
debugCompile
"com.facebook.stetho:stetho-okhttp3:$stethoOkhttp3
Version"
debugCompile
"com.uphyca:stetho_realm:$stethoRealmVersion"
compile
"com.jakewharton.rxbinding2:rxbinding:$rxbindingVersion"
compile
"com.jakewharton.rxbinding2:rxbinding-support-v4:$rxbindingVersion"
...
...
@@ -156,4 +156,4 @@ dependencies {
provided
"com.github.akarnokd:rxjava2-interop:0.10.2"
}
apply
plugin:
'com.google.gms.google-services'
apply
plugin:
'com.google.gms.google-services'
\ No newline at end of file
app/src/main/java/chat/rocket/android/RocketChatApplication.java
View file @
24478040
...
...
@@ -23,6 +23,7 @@ public class RocketChatApplication extends MultiDexApplication {
public
void
onCreate
()
{
if
(
BuildConfig
.
DEBUG
)
{
enableStrictMode
();
enableStetho
();
}
super
.
onCreate
();
...
...
@@ -35,10 +36,6 @@ public class RocketChatApplication extends MultiDexApplication {
RealmStore
.
put
(
serverInfo
.
getHostname
());
}
if
(
BuildConfig
.
DEBUG
)
{
enableStetho
();
}
RocketChatWidgets
.
initialize
(
this
,
OkHttpHelper
.
getClientForDownloadFile
(
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