Skip to content
This repository was archived by the owner on Jun 7, 2020. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
9170d16
Refactor push notification.
philipbrito Sep 1, 2019
da14c2f
Fixes asynchronous issues while reveiving push token.
philipbrito Sep 1, 2019
6b934bb
Update AppLifecycleObserver.kt
philipbrito Sep 1, 2019
131d690
Update PushToken.kt (foss)
philipbrito Sep 1, 2019
cf93b6b
Merge pull request #2471 from RocketChat/issue/push-notification
philipbrito Sep 1, 2019
6fad8f6
Add polish language
philipbrito Sep 1, 2019
1ba61bf
Merge branch 'develop' of github.com:RocketChat/Rocket.Chat.Android i…
philipbrito Sep 1, 2019
e3b0266
Merge pull request #2473 from RocketChat/i18n/add-polish-language
philipbrito Sep 1, 2019
fc840f0
Fixes an issue that makes the chat room list not being updated properly.
philipbrito Sep 17, 2019
b28f003
Merge pull request #2480 from RocketChat/fix/chat-room-list-not-being…
philipbrito Sep 17, 2019
d8f9d75
Fixes showing wrong user status on settings screen.
philipbrito Sep 17, 2019
414cc69
Removes context reference from presenter.
philipbrito Sep 17, 2019
46a062f
Merge pull request #2481 from RocketChat/fix/wrong-user-status-on-set…
philipbrito Sep 18, 2019
b50e9e7
Update libraries version and track changes on SDK
philipbrito Sep 19, 2019
6361d0d
Merge branch 'develop' of github.com:RocketChat/Rocket.Chat.Android i…
philipbrito Sep 19, 2019
14f51c5
Merge pull request #2482 from RocketChat/chore/update-library-versions
philipbrito Sep 19, 2019
43bf1b1
Fix sending empty message when replying of quoting
philipbrito Sep 19, 2019
9d60c69
Merge branch 'develop' into fix/empty-message-on-quote-and-reply
philipbrito Sep 19, 2019
f2f901a
Merge pull request #2483 from RocketChat/fix/empty-message-on-quote-a…
philipbrito Sep 19, 2019
364852a
Injects RocketChatClientFactory on PushManager from AppModule.kt
philipbrito Sep 19, 2019
5a9fde6
Merge branch 'develop' into fix/npe
philipbrito Sep 19, 2019
892b7fb
Update app version
philipbrito Sep 19, 2019
2dfbe68
Merge branch 'fix/npe' of github.com:RocketChat/Rocket.Chat.Android i…
philipbrito Sep 19, 2019
a0bfdeb
Merge pull request #2484 from RocketChat/fix/npe
philipbrito Sep 19, 2019
7938d64
Fixes the wrong parameter order.
philipbrito Sep 23, 2019
ea10060
Merge branch 'develop' of github.com:RocketChat/Rocket.Chat.Android i…
philipbrito Sep 23, 2019
6610a6b
Merge pull request #2486 from RocketChat/fix/wrong-param-order
philipbrito Sep 24, 2019
49ba6a6
Update schema version
philipbrito Sep 24, 2019
74c65f4
Change event name (the previous one is reserved).
philipbrito Sep 24, 2019
b7520e4
Update app version code.
philipbrito Sep 24, 2019
d74a0bc
Merge branch 'develop' of github.com:RocketChat/Rocket.Chat.Android i…
philipbrito Sep 24, 2019
80a0d43
Update library versions.
philipbrito Sep 24, 2019
c4181f6
Update DynamicLinksForFirebase.kt
philipbrito Sep 24, 2019
6052351
Merge pull request #2487 from RocketChat/chore/update-schema-version-…
philipbrito Sep 24, 2019
f394b3d
EOL notification to wider community
Sing-Li Oct 15, 2019
f832d59
Merge pull request #2499 from RocketChat/Sing-Li-patch-1
rodrigok Oct 23, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
![Rocket.Chat logo](https://raw.githubusercontent.com/RocketChat/Rocket.Chat.Artwork/master/Logos/logo-dark.svg?sanitize=true)

# Rocket.Chat Android native application
# IMPORTANT: PLEASE READ THIS FIRST

Rocket.Chat mobile is [moving to React Native](https://rocket.chat/2019/10/11/moving-mobile-apps-to-react/). Development on this repository by Rocket.Chat has now ceased. If your team is interested in taking over and maintaining this Android native client repository then please [contact us](https://rocket.chat/contact).

# Legacy Rocket.Chat Android native application

[![CircleCI](https://circleci.com/gh/RocketChat/Rocket.Chat.Android/tree/develop.svg?style=shield)](https://circleci.com/gh/RocketChat/Rocket.Chat.Android/tree/develop) [![Codacy Badge](https://api.codacy.com/project/badge/Grade/a81156a8682e4649994270d3670c3c83)](https://www.codacy.com/app/matheusjardimb/Rocket.Chat.Android)

## Get it from the stores

[![](https://user-images.githubusercontent.com/551004/48210434-74c07100-e35e-11e8-8eee-3ba84ffa74d7.png)](https://play.google.com/store/apps/details?id=chat.rocket.android) [![](https://user-images.githubusercontent.com/551004/48210349-50649480-e35e-11e8-97d9-74a4331faf3a.png)](https://f-droid.org/en/packages/chat.rocket.android/)
[![](https://user-images.githubusercontent.com/551004/48210349-50649480-e35e-11e8-97d9-74a4331faf3a.png)](https://f-droid.org/en/packages/chat.rocket.android/)

## Description

Expand Down
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ android {
applicationId "chat.rocket.android"
minSdkVersion versions.minSdk
targetSdkVersion versions.targetSdk
versionCode 2077
versionName "3.5.1"
versionCode 2080
versionName "3.5.2"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
multiDexEnabled true

Expand Down
Loading