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
1970ec80
Commit
1970ec80
authored
Oct 05, 2017
by
Mala
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gradle(globally declare library) changes
parent
3ec8f4b0
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
101 additions
and
57 deletions
+101
-57
build.gradle
android-ddp/build.gradle
+4
-5
build.gradle
app/build.gradle
+34
-21
build.gradle
build.gradle
+1
-4
dependencies.gradle
dependencies.gradle
+38
-1
build.gradle
persistence-realm/build.gradle
+9
-8
build.gradle
rocket-chat-android-widgets/build.gradle
+13
-16
build.gradle
rocket-chat-core/build.gradle
+2
-2
No files found.
android-ddp/build.gradle
View file @
1970ec80
...
...
@@ -37,11 +37,10 @@ android {
dependencies
{
compile
project
(
':log-wrapper'
)
compile
"com.android.support:support-annotations:$rootProject.ext.supportLibraryVersion"
compile
"com.squareup.okhttp3:okhttp:$rootProject.ext.okHttpVersion"
compile
'io.reactivex.rxjava2:rxjava:2.1.0'
compile
'com.parse.bolts:bolts-tasks:1.4.0'
compile
extraDependencies
.
okHTTP
compile
extraDependencies
.
rxJava
compile
extraDependencies
.
boltTask
compile
supportDependencies
.
annotation
}
\ No newline at end of file
app/build.gradle
View file @
1970ec80
...
...
@@ -134,39 +134,38 @@ dependencies {
compile
project
(
':rocket-chat-android-widgets'
)
compile
project
(
':persistence-realm'
)
compile
"com.android.support:appcompat-v7:$rootProject.ext.supportLibraryVersion"
compile
"com.android.support:design:$rootProject.ext.supportLibraryVersion"
compile
"com.android.support:support-annotations:$rootProject.ext.supportLibraryVersion"
compile
"com.android.support.constraint:constraint-layout:$rootProject.ext.constraintLayoutVersion"
compile
'com.android.support:multidex:1.0.1'
compile
extraDependencies
.
circleImageView
;
compile
extraDependencies
.
okHTTP
compile
extraDependencies
.
rxJava
compile
extraDependencies
.
boltTask
compile
extraDependencies
.
textDrawable
compile
supportDependencies
.
appCompat
compile
supportDependencies
.
designSupportLibrary
compile
supportDependencies
.
annotation
compile
supportDependencies
.
constrainLayout
compile
supportDependencies
.
kotlin
;
compile
rxbindingDependencies
.
rxBinding
compile
rxbindingDependencies
.
rxBindingSupport
compile
rxbindingDependencies
.
rxBindingAppcompact
compile
"org.jetbrains.kotlin:kotlin-stdlib-jre7:$rootProject.ext.kotlinVersion"
testCompile
"org.jetbrains.kotlin:kotlin-test:$rootProject.ext.kotlinVersion"
testCompile
"org.jetbrains.kotlin:kotlin-test-junit:$rootProject.ext.kotlinVersion"
compile
'com.android.support:multidex:1.0.1'
compile
"com.google.firebase:firebase-core:$playLibVersion"
compile
"com.google.firebase:firebase-crash:$playLibVersion"
compile
"com.google.android.gms:play-services-gcm:$playLibVersion"
compile
"com.squareup.okhttp3:okhttp:$rootProject.ext.okHttpVersion"
debugCompile
"com.facebook.stetho:stetho:$stethoVersion"
debugCompile
"com.facebook.stetho:stetho-okhttp3:$stethoOkhttp3Version"
debugCompile
"com.uphyca:stetho_realm:$stethoRealmVersion"
compile
"com.jakewharton.rxbinding2:rxbinding:$rxbindingVersion"
compile
"com.jakewharton.rxbinding2:rxbinding-support-v4:$rxbindingVersion"
compile
"com.jakewharton.rxbinding2:rxbinding-appcompat-v7:$rxbindingVersion"
compile
"com.trello.rxlifecycle2:rxlifecycle:$rxlifecycleVersion"
compile
"com.trello.rxlifecycle2:rxlifecycle-android:$rxlifecycleVersion"
compile
"com.trello.rxlifecycle2:rxlifecycle-components:$rxlifecycleVersion"
compile
'nl.littlerobots.rxlint:rxlint:1.2'
compile
'com.amulyakhare:com.amulyakhare.textdrawable:1.0.1'
compile
"frankiesardo:icepick:$icepickVersion"
provided
"frankiesardo:icepick-processor:$icepickVersion"
...
...
@@ -177,10 +176,24 @@ dependencies {
transitive
=
true
;
}
debugCompile
"com.tspoon.traceur:traceur:1.0.1"
provided
'com.parse.bolts:bolts-tasks:1.4.0'
provided
'io.reactivex.rxjava2:rxjava:2.1.0'
compile
'com.aurelhubert:ahbottomnavigation:2.0.6'
compile
(
'com.h6ah4i.android.widget.advrecyclerview:advrecyclerview:0.10.6@aar'
)
{
transitive
=
true
}
compile
'com.github.JakeWharton:ViewPagerIndicator:2.4.1@aar'
compile
'com.jakewharton:butterknife:8.5.1'
annotationProcessor
'com.jakewharton:butterknife-compiler:8.5.1'
compile
'com.jakewharton.timber:timber:4.5.1'
compile
'com.github.matrixxun:MaterialBadgeTextView:c5a27e8243'
compile
'com.github.chrisbanes:PhotoView:2.0.0'
// Full Screen Dialogue libs
//compile 'com.github.franmontiel:FullScreenDialog:1.0.1'
provided
'io.reactivex:rxjava:1.3.0'
provided
"com.github.akarnokd:rxjava2-interop:0.10.2"
provided
'com.hadisatrio:Optional:v1.0.1'
...
...
build.gradle
View file @
1970ec80
...
...
@@ -20,10 +20,7 @@ ext {
compileSdkVersion
=
26
targetSdkVersion
=
26
buildToolsVersion
=
"26.0.0"
supportLibraryVersion
=
"25.4.0"
constraintLayoutVersion
=
"1.0.2"
kotlinVersion
=
"1.1.4-3"
okHttpVersion
=
"3.9.0"
}
task
clean
(
type:
Delete
)
{
...
...
dependencies.gradle
View file @
1970ec80
ext
{
preDexLibs
=
"true"
!=
System
.
getenv
(
"CI"
)
supportLibraryVersion
=
"25.4.0"
constraintLayoutVersion
=
"1.0.2"
kotlinVersion
=
"1.1.4-2"
okHttpVersion
=
"3.9.0"
rxbindingVersion
=
'2.0.0'
supportDependencies
=
[
appCompat
:
"com.android.support:appcompat-v7:${supportLibraryVersion}"
,
designSupportLibrary:
"com.android.support:design:${supportLibraryVersion}"
,
annotation
:
"com.android.support:support-annotations:${supportLibraryVersion}"
,
constrainLayout
:
"com.android.support.constraint:constraint-layout:${constraintLayoutVersion}"
,
kotlin
:
"org.jetbrains.kotlin:kotlin-stdlib-jre7:${kotlinVersion}"
,
cardView
:
"com.android.support:cardview-v7:${supportLibraryVersion}"
,
supportV4
:
"com.android.support:support-v4:${supportLibraryVersion}"
,
recycleview
:
"com.android.support:recyclerview-v7:${supportLibraryVersion}"
,
cardview
:
"com.android.support:cardview-v7:${supportLibraryVersion}"
,
]
extraDependencies
=
[
circleImageView:
"de.hdodenhof:circleimageview:1.2.1"
,
okHTTP
:
"com.squareup.okhttp3:okhttp:3.8.0"
,
rxJava
:
"io.reactivex.rxjava2:rxjava:2.1.0"
,
boltTask
:
"com.parse.bolts:bolts-tasks:1.4.0"
,
textDrawable
:
"com.amulyakhare:com.amulyakhare.textdrawable:1.0.1"
,
rxAndroid
:
"io.reactivex.rxjava2:rxandroid:2.0.1"
]
rxbindingDependencies
=
[
rxBinding
:
"com.jakewharton.rxbinding2:rxbinding:${rxbindingVersion}"
,
rxBindingSupport
:
"com.jakewharton.rxbinding2:rxbinding-support-v4:${rxbindingVersion}"
,
rxBindingAppcompact:
"com.jakewharton.rxbinding2:rxbinding-appcompat-v7:${rxbindingVersion}"
,
]
}
subprojects
{
...
...
@@ -10,4 +46,5 @@ subprojects {
project
.
android
.
dexOptions
.
preDexLibraries
=
rootProject
.
ext
.
preDexLibs
}
}
}
\ No newline at end of file
}
persistence-realm/build.gradle
View file @
1970ec80
...
...
@@ -48,24 +48,25 @@ android {
dependencies
{
compile
project
(
':log-wrapper'
)
compile
project
(
':rocket-chat-core'
)
compile
extraDependencies
.
rxJava
compile
extraDependencies
.
boltTask
compile
"com.android.support:support-annotations:$rootProject.ext.supportLibraryVersion"
compile
"com.android.support:appcompat-v7:$rootProject.ext.supportLibraryVersion"
compile
"com.android.support:design:$rootProject.ext.supportLibraryVersion"
compile
"org.jetbrains.kotlin:kotlin-stdlib-jre7:$rootProject.ext.kotlinVersion"
compile
supportDependencies
.
annotation
compile
supportDependencies
.
appCompat
compile
supportDependencies
.
designSupportLibrary
compile
supportDependencies
.
kotlin
compile
extraDependencies
.
rxAndroid
testCompile
"org.jetbrains.kotlin:kotlin-test:$rootProject.ext.kotlinVersion"
testCompile
"org.jetbrains.kotlin:kotlin-test-junit:$rootProject.ext.kotlinVersion"
testCompile
'org.json:json:20170516'
testCompile
'org.skyscreamer:jsonassert:1.5.0'
compile
'io.reactivex.rxjava2:rxjava:2.1.0'
compile
'io.reactivex.rxjava2:rxandroid:2.0.1'
compile
'com.github.akarnokd:rxjava2-interop:0.10.0'
compile
'com.parse.bolts:bolts-tasks:1.4.0'
compile
'com.github.akarnokd:rxjava2-interop:0.10.0'
provided
'com.hadisatrio:Optional:v1.0.1'
...
...
rocket-chat-android-widgets/build.gradle
View file @
1970ec80
...
...
@@ -46,27 +46,26 @@ ext {
dependencies
{
compile
project
(
':rocket-chat-core'
)
compile
extraDependencies
.
circleImageView
;
compile
extraDependencies
.
okHTTP
;
compile
supportDependencies
.
annotation
compile
supportDependencies
.
appCompat
compile
supportDependencies
.
recycleview
compile
supportDependencies
.
cardview
compile
supportDependencies
.
designSupportLibrary
compile
supportDependencies
.
constrainLayout
compile
supportDependencies
.
kotlin
compile
extraDependencies
.
textDrawable
compile
rxbindingDependencies
.
rxBinding
compile
rxbindingDependencies
.
rxBindingSupport
compile
"com.android.support:support-annotations:$rootProject.ext.supportLibraryVersion"
compile
"com.android.support:appcompat-v7:$rootProject.ext.supportLibraryVersion"
compile
"com.android.support:recyclerview-v7:$rootProject.ext.supportLibraryVersion"
compile
"com.android.support:cardview-v7:$rootProject.ext.supportLibraryVersion"
compile
"com.android.support:support-v13:$rootProject.ext.supportLibraryVersion"
compile
"com.android.support:design:$rootProject.ext.supportLibraryVersion"
compile
"com.android.support.constraint:constraint-layout:$rootProject.ext.constraintLayoutVersion"
compile
"org.jetbrains.kotlin:kotlin-stdlib-jre7:$rootProject.ext.kotlinVersion"
testCompile
"org.jetbrains.kotlin:kotlin-test:$rootProject.ext.kotlinVersion"
testCompile
"org.jetbrains.kotlin:kotlin-test-junit:$rootProject.ext.kotlinVersion"
compile
'org.nibor.autolink:autolink:0.6.0'
compile
'com.amulyakhare:com.amulyakhare.textdrawable:1.0.1'
compile
"com.squareup.okhttp3:okhttp:$rootProject.ext.okHttpVersion"
compile
'com.github.yusukeiwaki.android-widget:widget-fontawesome:0.0.1'
compile
"com.facebook.fresco:fresco:$frescoVersion"
compile
"com.facebook.fresco:animated-gif:$frescoVersion"
compile
"com.facebook.fresco:animated-webp:$frescoVersion"
...
...
@@ -75,8 +74,6 @@ dependencies {
compile
'com.caverock:androidsvg:1.2.1'
compile
"com.jakewharton.rxbinding2:rxbinding:$rxbindingVersion"
compile
"com.jakewharton.rxbinding2:rxbinding-support-v4:$rxbindingVersion"
testCompile
'junit:junit:4.12'
testCompile
"org.mockito:mockito-core:2.7.19"
...
...
rocket-chat-core/build.gradle
View file @
1970ec80
...
...
@@ -7,12 +7,12 @@ apply plugin: 'java'
dependencies
{
compile
fileTree
(
dir:
'libs'
,
include:
[
'*.jar'
])
compile
extraDependencies
.
rxJava
compile
"org.jetbrains.kotlin:kotlin-stdlib-jre7:$rootProject.ext.kotlinVersion"
compile
'com.google.code.findbugs:jsr305:3.0.1'
compile
'io.reactivex.rxjava2:rxjava:2.1.0'
compile
'com.hadisatrio:Optional:v1.0.1'
...
...
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