2020-08-24 12:24:10 +00:00
|
|
|
def taskRequests = getGradle().getStartParameter().getTaskRequests().toString().toLowerCase()
|
2020-12-14 16:20:32 +00:00
|
|
|
def isFoss = taskRequests.contains("foss")
|
2020-08-24 12:24:10 +00:00
|
|
|
|
2017-08-03 18:23:43 +00:00
|
|
|
apply plugin: "com.android.application"
|
2019-09-16 20:26:32 +00:00
|
|
|
apply plugin: 'kotlin-android'
|
2020-08-24 12:24:10 +00:00
|
|
|
|
2020-12-14 16:20:32 +00:00
|
|
|
if (!isFoss) {
|
2020-08-24 12:24:10 +00:00
|
|
|
apply plugin: 'com.google.firebase.crashlytics'
|
|
|
|
apply plugin: 'com.bugsnag.android.gradle'
|
|
|
|
}
|
2017-08-03 18:23:43 +00:00
|
|
|
|
|
|
|
import com.android.build.OutputFile
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The react.gradle file registers a task for each build variant (e.g. bundleDebugJsAndAssets
|
|
|
|
* and bundleReleaseJsAndAssets).
|
|
|
|
* These basically call `react-native bundle` with the correct arguments during the Android build
|
|
|
|
* cycle. By default, bundleDebugJsAndAssets is skipped, as in debug/dev mode we prefer to load the
|
|
|
|
* bundle directly from the development server. Below you can see all the possible configurations
|
|
|
|
* and their defaults. If you decide to add a configuration block, make sure to add it before the
|
|
|
|
* `apply from: "../../node_modules/react-native/react.gradle"` line.
|
|
|
|
*
|
|
|
|
* project.ext.react = [
|
|
|
|
* // the name of the generated asset file containing your JS bundle
|
|
|
|
* bundleAssetName: "index.android.bundle",
|
|
|
|
*
|
2020-05-08 16:37:49 +00:00
|
|
|
* // the entry file for bundle generation. If none specified and
|
|
|
|
* // "index.android.js" exists, it will be used. Otherwise "index.js" is
|
|
|
|
* // default. Can be overridden with ENTRY_FILE environment variable.
|
2017-08-03 18:23:43 +00:00
|
|
|
* entryFile: "index.android.js",
|
|
|
|
*
|
2019-08-07 13:51:34 +00:00
|
|
|
* // https://facebook.github.io/react-native/docs/performance#enable-the-ram-format
|
|
|
|
* bundleCommand: "ram-bundle",
|
|
|
|
*
|
2017-08-03 18:23:43 +00:00
|
|
|
* // whether to bundle JS and assets in debug mode
|
|
|
|
* bundleInDebug: false,
|
|
|
|
*
|
|
|
|
* // whether to bundle JS and assets in release mode
|
|
|
|
* bundleInRelease: true,
|
|
|
|
*
|
|
|
|
* // whether to bundle JS and assets in another build variant (if configured).
|
|
|
|
* // See http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Build-Variants
|
|
|
|
* // The configuration property can be in the following formats
|
|
|
|
* // 'bundleIn${productFlavor}${buildType}'
|
|
|
|
* // 'bundleIn${buildType}'
|
|
|
|
* // bundleInFreeDebug: true,
|
|
|
|
* // bundleInPaidRelease: true,
|
|
|
|
* // bundleInBeta: true,
|
|
|
|
*
|
|
|
|
* // whether to disable dev mode in custom build variants (by default only disabled in release)
|
|
|
|
* // for example: to disable dev mode in the staging build type (if configured)
|
|
|
|
* devDisabledInStaging: true,
|
|
|
|
* // The configuration property can be in the following formats
|
|
|
|
* // 'devDisabledIn${productFlavor}${buildType}'
|
|
|
|
* // 'devDisabledIn${buildType}'
|
|
|
|
*
|
|
|
|
* // the root of your project, i.e. where "package.json" lives
|
|
|
|
* root: "../../",
|
|
|
|
*
|
|
|
|
* // where to put the JS bundle asset in debug mode
|
|
|
|
* jsBundleDirDebug: "$buildDir/intermediates/assets/debug",
|
|
|
|
*
|
|
|
|
* // where to put the JS bundle asset in release mode
|
|
|
|
* jsBundleDirRelease: "$buildDir/intermediates/assets/release",
|
|
|
|
*
|
|
|
|
* // where to put drawable resources / React Native assets, e.g. the ones you use via
|
|
|
|
* // require('./image.png')), in debug mode
|
|
|
|
* resourcesDirDebug: "$buildDir/intermediates/res/merged/debug",
|
|
|
|
*
|
|
|
|
* // where to put drawable resources / React Native assets, e.g. the ones you use via
|
|
|
|
* // require('./image.png')), in release mode
|
|
|
|
* resourcesDirRelease: "$buildDir/intermediates/res/merged/release",
|
|
|
|
*
|
|
|
|
* // by default the gradle tasks are skipped if none of the JS files or assets change; this means
|
|
|
|
* // that we don't look at files in android/ or ios/ to determine whether the tasks are up to
|
|
|
|
* // date; if you have any other folders that you want to ignore for performance reasons (gradle
|
|
|
|
* // indexes the entire tree), add them here. Alternatively, if you have JS files in android/
|
|
|
|
* // for example, you might want to remove it from here.
|
|
|
|
* inputExcludes: ["android/**", "ios/**"],
|
|
|
|
*
|
|
|
|
* // override which node gets called and with what additional arguments
|
|
|
|
* nodeExecutableAndArgs: ["node"],
|
|
|
|
*
|
|
|
|
* // supply additional arguments to the packager
|
|
|
|
* extraPackagerArgs: []
|
|
|
|
* ]
|
|
|
|
*/
|
|
|
|
|
2018-08-01 19:35:06 +00:00
|
|
|
project.ext.react = [
|
2019-09-18 17:32:12 +00:00
|
|
|
bundleAssetName: "app.bundle",
|
2019-08-07 13:51:34 +00:00
|
|
|
iconFontNames: [ 'custom.ttf' ],
|
2019-12-11 19:23:16 +00:00
|
|
|
enableHermes: true, // clean and rebuild if changing
|
2018-08-01 19:35:06 +00:00
|
|
|
]
|
|
|
|
|
2017-08-03 18:23:43 +00:00
|
|
|
apply from: "../../node_modules/react-native/react.gradle"
|
2019-06-21 16:39:20 +00:00
|
|
|
apply from: '../../node_modules/react-native-unimodules/gradle.groovy'
|
2017-08-03 18:23:43 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Set this to true to create two separate APKs instead of one:
|
|
|
|
* - An APK that only works on ARM devices
|
|
|
|
* - An APK that only works on x86 devices
|
|
|
|
* The advantage is the size of the APK is reduced by about 4MB.
|
|
|
|
* Upload all the APKs to the Play Store and people will download
|
|
|
|
* the correct one based on the CPU architecture of their device.
|
|
|
|
*/
|
2018-04-27 04:09:16 +00:00
|
|
|
def enableSeparateBuildPerCPUArchitecture = false
|
2017-08-03 18:23:43 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Run Proguard to shrink the Java bytecode in release builds.
|
|
|
|
*/
|
2018-04-27 04:09:16 +00:00
|
|
|
def enableProguardInReleaseBuilds = false
|
2017-08-03 18:23:43 +00:00
|
|
|
|
2019-08-07 13:51:34 +00:00
|
|
|
/**
|
|
|
|
* The preferred build flavor of JavaScriptCore.
|
|
|
|
*
|
|
|
|
* For example, to use the international variant, you can use:
|
|
|
|
* `def jscFlavor = 'org.webkit:android-jsc-intl:+'`
|
|
|
|
*
|
|
|
|
* The international variant includes ICU i18n library and necessary data
|
|
|
|
* allowing to use e.g. `Date.toLocaleString` and `String.localeCompare` that
|
|
|
|
* give correct results when using with locales other than en-US. Note that
|
|
|
|
* this variant is about 6MiB larger per architecture than default.
|
|
|
|
*/
|
|
|
|
def jscFlavor = 'org.webkit:android-jsc:+'
|
|
|
|
/**
|
|
|
|
* Whether to enable the Hermes VM.
|
|
|
|
*
|
|
|
|
* This should be set on project.ext.react and mirrored here. If it is not set
|
|
|
|
* on project.ext.react, JavaScript will not be compiled to Hermes Bytecode
|
|
|
|
* and the benefits of using Hermes will therefore be sharply reduced.
|
|
|
|
*/
|
|
|
|
def enableHermes = project.ext.react.get("enableHermes", false);
|
|
|
|
|
2017-08-03 18:23:43 +00:00
|
|
|
android {
|
2019-05-22 20:15:35 +00:00
|
|
|
compileSdkVersion rootProject.ext.compileSdkVersion
|
|
|
|
|
2019-06-21 16:39:20 +00:00
|
|
|
compileOptions {
|
2019-05-22 20:15:35 +00:00
|
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
|
|
}
|
2017-08-03 18:23:43 +00:00
|
|
|
|
|
|
|
defaultConfig {
|
2020-12-04 16:17:29 +00:00
|
|
|
applicationId APPLICATION_ID
|
2019-05-22 20:15:35 +00:00
|
|
|
minSdkVersion rootProject.ext.minSdkVersion
|
|
|
|
targetSdkVersion rootProject.ext.targetSdkVersion
|
2017-11-07 16:58:33 +00:00
|
|
|
versionCode VERSIONCODE as Integer
|
Merge 4.16.2 into single-server (#3095)
* [FIX] RoomItem using deprecated animated event signature (#2771)
* [FIX] Server autocomplete text breaking line (#2774)
* [FIX] ServerDropdown flashing bigger server icon (#2775)
* [FIX] ServerDropdown flashing bigger server icon
* Remove unused logo and update image path where needed
* Minor tweak
Co-authored-by: Diego Mello <diegolmello@gmail.com>
* [FIX] Rooms list not being updated on some cases (#2765)
* Request subscriptions on RoomsListView.constructor
* Removes opened rooms from last message persisting
* Change server reducer
* Prevent undefined ids causing query error
* [FIX] Share Extension hitting memory limit on iOS (#2788)
* [FIX] Disallow swipe to dismiss on share extension
* Limit query to 20 and clean up props
* Remove rn-extension-share branch pointer
* Test new branch
* Remove branch
* [IMPROVEMENT] Threads layout tweaks (#2686)
* improvement: Thread Details
* fix: re-render Thread Messages Item
* fix: update snapshots
* improve: thread details component
* fix: cast replies length
* improvement: format date of threads
* improvement: thread details styles
* fix: wrap text
* tests: update snapshot
* improvement: use same date format for all dates
* Icon size 24
* Remove date
* Remove prop drill
* Badge position
* Badge container tweak
* Fix inline style
* Move ThreadDetails to containers
* Update stories
* Fix lint
* Remove wrong prop
Co-authored-by: Diego Mello <diegolmello@gmail.com>
* [CHORE] Remove some migrations (#2792)
* Remove force rooms refresh
* Remove MMKV migration
* Bump version to 4.14.0 (#2797)
* [FIX] Messagebox tracking lost on pop gesture navigation (#2799)
* Use setTimeout instead of InteractionManager
* Update tracking lib
* [FIX] Back button closing activity when on root stack screen (#2804)
* Make hardware back button to behave as home button on root screens
* Remove unnecessary code
* Remove handleBackPress from OnboardingView
* Fix lint
* [i18n] Add missing German strings (#2715)
Co-authored-by: Diego Mello <diegolmello@gmail.com>
* [NEW] Encrypted Discussions (#2813)
* I18n key fix
* Add encrypted switch
* Remove unused i18n keys
* Add enabled to encryption reducer
* Show encrypted option on CreateDiscussionView only when e2e encryption is properly set
* Add localSearch and use it on search
* Use encrypted from parent channel
* Fix method calls as rest api with 2fa enabled
* Fix logout after reset keys
* Use encryption reducer instead of lib directly to check render
* Check for room type logic to display encryption option on create discussion
* Check toggle-room-e2e-encryption permission on RoomActionsView
* Check for encryption status instead of setting on server
* Fix
* Disable switch instead of hide it
* Fix spotlight for DMs
* Fix server test
* [FIX] Messagebox missing style for text color (#2786)
* Changing auxilaryTintColor
* Changed Placeholder color to BodyText color
* added color prop
* eslint changes
* used array for styles
Co-authored-by: Diego Mello <diegolmello@gmail.com>
* [I18N] Update arabic (#2696)
* Update ar.js
* Update ar.js
Co-authored-by: Diego Mello <diegolmello@gmail.com>
* [FIX] Workspace input without i18n (#2689)
* [FIX] Translation of strings in Login page
* Strings are added for translation.
fixes: #2620
* Add pt-BR
Co-authored-by: Diego Mello <diegolmello@gmail.com>
* [FIX] Spotlight returning duplicated entries (#2805)
* Update rocketchat.js
* Updated search function
* Minor improvements
* Remove atIndex
* Add remove logic to remove duplicate data from response
Co-authored-by: Diego Mello <diegolmello@gmail.com>
* [CHORE] Refactor ServerItem (#2778)
* Updated ServerDropdown and ServerItem
* Added ServerItem stories
* Update ServerDropdown.js
* Updated ServerItem stories
* Updated ServerItem stories and ServerItem component
* Updated SelectServerView, ServerItem and ServerItem stories
* Updated ServerItem stories
* Updated ServerItem stories
* Update tests
Co-authored-by: Diego Mello <diegolmello@gmail.com>
* [DOCS] Updated Quick Start docs link in e2e/readme (#2802)
Co-authored-by: Diego Mello <diegolmello@gmail.com>
* [I18N] Add Turkish (#2793)
* Turkish language support added
* Update tr.js
Co-authored-by: Diego Mello <diegolmello@gmail.com>
* [FIX] Lint on #2793 (#2818)
* [I18N] Add missing german strings (#2689) (#2820)
* [I18N] Add missing italian strings (#2817)
* [FIX] Server version becoming null on server change (#2821)
* [FIX] Wrong styling on E2E encryption banner (#2767)
* [FIX] Wrong styling on E2E encryption banner
* [FIX] Wrong styling on E2E encryption banner
* [FIX] Wrong styling on E2E encryption banner
* [FIX] Wrong styling on E2E encryption banner (#2767)
* Updated SortDropdown, ListHeader, ListItem and added stories for List.Item
* Updated SortDropdown
* Removed unused component
* Updated List.Item and stories
* Reverted unnecessary changes and updated ListItem stories
* Fix minor indentation
* Stop breaking Touch's default underlay color
* Fix indentation
* Remove falsy comparison from render
* Fix left icon
* Use List.Item on OmnichannelStatus
* Add missing separator
* Lint
* Fix sort dropdown
* Remove unnecessary styles
* Fix detox
Co-authored-by: Diego Mello <diegolmello@gmail.com>
* [FIX] App Store using Experimental's app id (#2826)
* [FIX] Wrong username on push notifications (#2825)
* [FIX] Share extension memory issues on iOS (#2845)
* Remove unnecessary class prop
* Stop rendering servers when there's only one
* Map and alloc only necessary columns from query
* Fetch servers count instead of all servers records
* Fetch only needed servers
* Separators
* Remove renderContent
* Minor fix
* Refactor query
* Smaller avatars in memory
* Fix getItemLayout
* Add topic
* Load less pods
* tests
* Import only used functions from lodash
* Fix pods
* Import only used functions from semver
* Fix media sharing
* Update pods
* Disables preview and thumb on iOS
* Update expo-video-thumbnail
* Unnecessary change
* [FIX] Logout from other locations not prompting confirmation option (#2854)
* Fixed logout toast bug for the iOS
* Removing callToAction and replacing with confirmationText
Co-authored-by: Diego Mello <diegolmello@gmail.com>
* Bump version to 4.14.1 (#2859)
* [IMPROVEMENT] Check for focused rooms on in-app notifications (#2857)
* Update InAppNotification and room reducer
* Update InAppNotification
This reverts commit 60330a1e04cfe8d2e5aa311f367083d831682c49.
* Stop subscribing to threads
* Remove ref
* Fix prop-types
Co-authored-by: Diego Mello <diegolmello@gmail.com>
* [FIX] Real name being ignored in SearchMessagesView (#2838)
Co-authored-by: Gerzon Z <gerzonc@icloud.com>
Co-authored-by: Diego Mello <diegolmello@gmail.com>
* [CHORE] Remove unnecessary share reducer calls (#2861)
* Remove unnecesary share reducer calls
* Update Avatar
Co-authored-by: Diego Mello <diegolmello@gmail.com>
* [FIX] Breadcrumbs exceeding characters limit (#2862)
* [FIX] breadcrumbs exceeding
* fix.breadcrumbs-exceeding-change-events
Co-authored-by: Diego Mello <diegolmello@gmail.com>
* [FIX] App compressing videos on iOS (#2915)
* Update index.js
* Update index.js
* [FIX] Real name setting ignored on reply preview (#2908)
Co-authored-by: Diego Mello <diegolmello@gmail.com>
* [FIX] Reply component sending unused prop to Description (#2900)
Co-authored-by: Diego Mello <diegolmello@gmail.com>
* [CHORE] BackdropOpacity based on themes (#2863)
* Added backdropOpacity based on theme
* Updated ActionSheet, ReactionsModal, ReactionPicker and Sidebar
* Updated MultiSelect
Co-authored-by: Diego Mello <diegolmello@gmail.com>
* [FIX] Webview not falling back to default auth challenge when no cert is provided (#2918)
* [FIX] Android - fallback to default auth challenge handling when no cert is provided
* If a certificate auth challenge is requested on Android the webview will hang if no certificate is loaded.
To prevent this, fallback to default Android behavior and cancel the challenge with request.cancel()
* No client certificate case defaults to super implementation
* Update react-native-webview
* Downgrade to previous dependency version
Co-authored-by: Diego Mello <diegolmello@gmail.com>
Co-authored-by: Gerzon Z <gerzonc@icloud.com>
Co-authored-by: Jan Garaj <jan.garaj@gmail.com>
* [FIX] Support Jitsi_URL_Room_Hash (#2905)
* [FIX] Temp attachment files not being flushed after saved to gallery (#2871)
* Update AttachmentView.js
* Update AttachmentView.js
* Update AttachmentView.js
* Update AttachmentView.js
Co-authored-by: Diego Mello <diegolmello@gmail.com>
* [CHORE] Update iOS profiles for Experimental app (#2933)
* [IMPROVE] Deleted thread reply redirects to thread (#2840)
Co-authored-by: Diego Mello <diegolmello@gmail.com>
* [FIX] Thread showing typing indicator from main room (#2869)
* [FIX] Remove typing indicator from thread's header
* remove unnecessary props and change usersTyping condition
Co-authored-by: Diego Mello <diegolmello@gmail.com>
* [FIX] DM rooms show typing status from last group room (#2878)
* [FIX] DM rooms show typing status from last group room
* Undo changes
* Check if current typing is from focused room before dispatching to redux
Co-authored-by: Diego Mello <diegolmello@gmail.com>
* [FIX] Can't copy or edit media's description (#2885)
* [FIX] Image descriptions issues
* shorten the condition string
* fix selectedMessage state
Co-authored-by: Diego Mello <diegolmello@gmail.com>
* [FIX] RightButtonsContainer re-render check not returning default value (#2899)
Co-authored-by: Diego Mello <diegolmello@gmail.com>
* [CHORE] Remove InteractionManager blocks (#2906)
* [FIX] Remove InteractionManager blocks
* Minor fix
Co-authored-by: Diego Mello <diegolmello@gmail.com>
* [FIX] App not sending second argument for EventEmitter.removeListener on some places (#2909)
Co-authored-by: Diego Mello <diegolmello@gmail.com>
* [FIX] Temp message ignoring real name (#2919)
Co-authored-by: Diego Mello <diegolmello@gmail.com>
* [FIX] System message of e2e encryption is missing (#2888)
* [FIX] System message of e2e encryption missing
* add new encryption string
* add to stories
* Add pt-BR
* Move stories
Co-authored-by: Diego Mello <diegolmello@gmail.com>
* [CHORE] Add permissions to Redux (#2914)
* [FIX] Add permissions to Redux store
* add only permissions being used in the app
* add clear permissions reducer
* call RocketChat.hasPermission from reducer
* add server version comparison on getPermissions
* refactor hasPermission function
* refactor hasPermission function
* remove uncomment code
* use Q.experimentalSortBy()
* add coerce function
* Change Rocketchat.hasPermission
* Apply on isReadOnly
* Apply to RoomInfoEditView
* Apply to RoomInfoView and RoomInfoEditView
* canAutoTranslate
* Unnecessary clear permissions
* Revert getUpdatedSince
* Naming fix
Co-authored-by: Diego Mello <diegolmello@gmail.com>
* [CHORE] Add hold step for ios and android build experimental (#2943)
* [CHORE] Add hold step for ios-build-experimental and android-build-experimental
* Android hold step
* add ios hold step
Co-authored-by: Diego Mello <diegolmello@gmail.com>
* [IMPROVEMENT] Remove lodash.isEqual (#2893)
* Added dequal and react-fast-compare as substitutes to lodash.isEqual
* Update ReplyPreview.js
* Remove react-fast-compare
* Removed deep-equal and upgrade babel-eslint dev dependency
* Fix avatar
* Fix Messagebox
* Fix CreateDiscussionView
* ModalBlockView
* NewMessageView
* ProfileView
* RoomInfoEditView
* ServerDropdown
* Return local search as object instead of observable
* SelectedUsersView
Co-authored-by: Diego Mello <diegolmello@gmail.com>
* [I18N] Add missing Russian strings (#2946)
* [i18n] Add missing Russian strings
* Couple fixes
* Fix Direct_message
Translate Direct_message as already has been translated
Co-authored-by: Diego Mello <diegolmello@gmail.com>
* [CHORE] Use shortcut syntax for get collections (#2932)
Co-authored-by: Diego Mello <diegolmello@gmail.com>
* [FIX] Use List.Separator in all places (#2931)
* [FIX] Use List.Separator in all places
* add List.Separator
* change List.Separator
Co-authored-by: Diego Mello <diegolmello@gmail.com>
* [FIX] Limit new message list query size to 50 (#2947)
* Limit query to 50
* Remove observable
* [FIX] Support chats order for older versions of the server (#2934)
* Update mergeSubscriptionsRooms.js
* Update mergeSubscriptionsRooms.js
* Update mergeSubscriptionsRooms.js
* Minor refactor
Co-authored-by: Diego Mello <diegolmello@gmail.com>
* [FIX] Reactions modal's backdrop color too light (#2949)
Co-authored-by: Diego Mello <diegolmello@gmail.com>
* Bump version to 4.15.0 (#2950)
* [FIX] Share extension not working correctly on Official app (#2963)
* [FIX] Cannot read property 'some' of undefined on hasPermission (#2966)
Co-authored-by: Diego Mello <diegolmello@gmail.com>
* [FIX] Deep linking and other connectivity issues (#2894)
* Navigate from push notification only if necessary
* Use JS SDK branch
* Stop reconnecting if it's already connected
* Fix RoomsListView forever loading after tapping push notification of another server
* Execute fewer operations on app/index
* Remove roomsRequest call from onForeground
* Apply check and reopen
* Stop opening in-app notification when the app is on backgorund
* Connecting tweaks
* Fix deep linking not working if the app is on background
* Force reset yarn cache
* Upgrade JS SDK
* Remove listener on unmount
* Fix resume on Android after back button is pressed
* Fix local authentication resume
* Fix back button android
* Change JS SDK branch
* [FIX] Messagebox's placeholder color is too bright (#2968)
* [IMPROVEMENT] Message attachment colors (#2860)
* Added convertStrToHex function and updated Reply component
* Removed convertStrtToHex function and added attachmentBackground
* Added color2k, removed transparent view and applied transparentize to backgroundColor
* Added stories
* Update Reply stories
* Update Reply stories
* Fix lint
* Update Reply stories
* Fix props
* Move tests to Message stories
Co-authored-by: Diego Mello <diegolmello@gmail.com>
* [FIX] App forgetting workspace when server is not finished added (#2798)
* [FIX] App forgetting workspace
* Added e2e tests
* Update login.js
* Update logout.js
* Reverted changes on login and share, updated init
* Update 08-persistantworkspace.spec.js
* Revert unnecessary changes
* Revert line change
* Update share.js
* Tweak tests
* Use wm shorthand
* Remove irrelevant calls to RocketChat.TOKEN_KEY
Co-authored-by: Diego Mello <diegolmello@gmail.com>
* [TESTS] Add E2E tests to draft message (#2960)
* [E2E TEST] Draft message
* Fix tests
Co-authored-by: Diego Mello <diegolmello@gmail.com>
* [TESTS] Add E2E tests to group DM (#2961)
Co-authored-by: Diego Mello <diegolmello@gmail.com>
* [TESTS] Add E2E tests to directory (#2964)
* [E2E TEST] Directory
* Fix tests
Co-authored-by: Diego Mello <diegolmello@gmail.com>
* [CHORE] Simplify server version comparison (#2922)
* Simplify server version where needed
* Added lte and gte functions and updated imports
* Updated functions names
* Update util functions
* Update util function and added methods
* Remove lt and coerce from getPermissions and mergeSubscriptionsRooms
* Fix comparison
* Update getPermissions.js
* Remove unused import
* Fix lint
* Fix lint
Co-authored-by: Diego Mello <diegolmello@gmail.com>
* [TESTS] Add E2E tests to discussions (#2970)
* [E2E TEST] Discussions
* fix error Cannot find UI elemen
* Fix tests
Co-authored-by: Diego Mello <diegolmello@gmail.com>
* [FIX] Attachment not rendering markdown (#2924)
* [FIX] Render markdown in Fields content
* Added stories
Co-authored-by: Diego Mello <diegolmello@gmail.com>
* [TESTS] Add e2e tests for mark message as unread (#2953)
* [E2E TEST] Add e2e tests for mark message as unread
* fixed test for draft message
* change test name
* move test to other file
* Remove unnecessary tests
* Rename file
* Update jest tests
Co-authored-by: Diego Mello <diegolmello@gmail.com>
* [TESTS] Add E2E tests to delete server (#2954)
* [E2E TEST] Delete server
* fixed test for delete server
* fix tests
* minor changes
* Rename file
Co-authored-by: Diego Mello <diegolmello@gmail.com>
* [CHORE] Refactor RoomActionsView permissions (#2872)
Co-authored-by: Diego Mello <diegolmello@gmail.com>
* [CHORE] Add status and teams icons (#2989)
Co-authored-by: Gerzon Z <gerzonc@icloud.com>
* [FIX] SSO not working with 2FA (TOTP) (#2978)
* Update AuthenticationWebView.js
* Updated loginTOTP
* Added validation
* Update rocketchat.js
* Update rocketchat.js
* Update rocketchat.js
* Update rocketchat.js
* Fix resolve
* Remove incognito
* Fix totp being requested on webview
Co-authored-by: Diego Mello <diegolmello@gmail.com>
* [IMPROVEMENT] User status icons (#2991)
* Add status and teams
* Update icons, icon size and getUsersPresence
* Minor changes
* Refactor RoomTypeIcon
* Minor tweaks
* Update unit tests
* Minor fixes
* Fix styles
* Small refactor
* Update jest
Co-authored-by: Diego Mello <diegolmello@gmail.com>
* [REGRESSION] Auth via deep linking not working (#3015)
* Update rocketchat and add e2e test for deep linking
* Update rocketchat and add e2e test for deep linking
* Update deeplinking e2e
* fix deep linking auth
* Test deep linking auth
* Fix deeplink to rid and add tests
* Small refactor
* Add non existing server test
Co-authored-by: Diego Mello <diegolmello@gmail.com>
* [FIX] Create discussion request being sent with null value on encryption param (#3033)
* [CHORE] Use JSON files for i18n (#3011)
* [IMPROVEMENT] Load only i18n files needed (#3014)
* Use json
* Load only i18n files needed
* [REGRESSION] Clear local server cache not loading rooms (#3007)
* Fix clear cache
* Write e2e tests
* Fix lint
* Fix isRTL
* [FIX] Custom OAuth and iframe login attempts being called multiple times (#3020)
* [FIX] App crashing when attachment color is an invalid HEX (#3021)
* [IMPROVEMENT] Add "Message" option to Room Info (#3029)
* [CHORE] Go to room from hashtag
* Layout tweaks
Co-authored-by: Diego Mello <diegolmello@gmail.com>
* [FIX] Can't change status (#3018)
Co-authored-by: Diego Mello <diegolmello@gmail.com>
* [FIX] Search input not using the whole header space (#3012)
* [FIX] Search input not using the whole space
* Fix on getHeaderTitlePosition
Co-authored-by: Diego Mello <diegolmello@gmail.com>
* [FIX] E2EE password hiding automatically (#2972)
* [FIX] E2EE password hiding automatically
* add e2e test
* fixed hiding banner
* move e2e tests to 01-e2eencryption
* remove console.log
* Fix tests
Co-authored-by: Diego Mello <diegolmello@gmail.com>
* [TESTS] Move threads tests to its own file (#2965)
* [E2E TEST] Move threads test to another file
* changed descirbe title
* Rearrange files
Co-authored-by: Diego Mello <diegolmello@gmail.com>
* [FIX] Regex typo on markdown (#2928)
* [FIX] Fix Regex Typo
* Add story for testing
Co-authored-by: Diego Mello <diegolmello@gmail.com>
* [FIX] Make attachment validation compatible with web client (#2927)
* [FIX] Make attachment validation compatible with web client
* Added stories
Co-authored-by: Diego Mello <diegolmello@gmail.com>
* [FIX] Non-reply attachments displaying time (#2902)
* Remove time if no message_link
* Fix message stories for replies
* Final stories fix
Co-authored-by: Diego Mello <diegolmello@gmail.com>
* [FIX] i18n not being applied on login/register labels (#2930)
* Use I18n translate in login text input label
* Add to register and add missing strings
Co-authored-by: Diego Mello <diegolmello@gmail.com>
* Revert "[FIX] Make attachment validation compatible with web client (#2927)" (#3036)
This reverts commit d6200745c028dd47b4ce0f11eb396c8f2a4cf807.
* Bump version to 4.16.0 (#3037)
* [NEW] Basic support to Teams (#3016)
* Database migration
* RoomItem icon
* Team icons
* Teams group
* Small tweak on RoomTypeIcon
* RoomView Header
* Add team's channels to RoomView header
* Starting TeamChannelsView
* Icon size
* o data found
* Update TeamChannelsView, add teams subscriptions and send params to TeamChannelsView
* Use teams.ListRooms endpoint, render rooms list, remove unused functions
* Show team main on TeamChannelsView
* Disable swipe
* Pagination working
* Fix blinking no data found
* Search working
* Refactor to use BackgroundContainer while loading
* Go to room
* Cleanup
* Go to actions
* Events
* Lint
* Add debounce to go room
* Fix for tablet
* i18n
* Small fix
* Minor refactor
* Use local data when it exists
* Show last message
* Force teams migration
* Add stories to BackgroundContainer
* Remove unused component
* Move RoomViewHeader into containers folder
* Refactoring
* Testing RoomHeader
* i18n
* Fix server endpoint version
* Fix events
Co-authored-by: Gerzon Z <gerzonzcanario@gmail.com>
* [CHORE] Refactor mention tracking logic (#2997)
* [Improvement] Improve mentions
This PR focuses on improving command, emoji, channel and user mentions.
* [Tests] Added e2e tests for mention improvement
* [Improvement] Modify slash command mention logic.
Added slash command with argument preview
Slash command should show only if the message bigins with /
* Return data on search for empty text
* Minor fixes
* Update e2e tests
* Minor fix
* [FIX] allow command mentioning in between text
Co-authored-by: Diego Mello <diegolmello@gmail.com>
* [FIX] Status text not being updated on sidebar (#3041)
* Update StatusView.js
* Minor tweak
* Minor tweaks
Co-authored-by: Diego Mello <diegolmello@gmail.com>
* [FIX] Unable to search non-latin alphabet names on members list (#3039)
* Add search by name in members list
* Update RoomMembersView search
Co-authored-by: Diego Mello <diegolmello@gmail.com>
* Search stops working after some time (#3044)
* Bump version to 4.17.0 (#3058)
* [CHORE] Add job to upload Experimental to Google Play production (#3050)
* [REGRESSION] SAML stopped working after #2978 (#3060)
* [REGRESSION] Room actions not loading on tablet (#3061)
* Bump version to 4.16.1 (#3063)
* [REGRESSION] Fallback language stopped working (#3072)
* [CHORE] Update Detox to 18.10.0 (#3052)
* Updated detox and 5 tests
* Update e2e cases for Detox v18, update setUserStatus and added SET_STATUS_FAIL
* Downgrade mocha
* Exclude arm64 from building and update tests cases
* Update more tests cases, add registeringUser4
* Update more test files and add room-actions-scrollview testID
* Update package.json
* Remove unused username from test file and update 08-roominfo test file
* Fixing
* Mark as unread
* Fixing flaky tests
* Minor fixes
Co-authored-by: Diego Mello <diegolmello@gmail.com>
* [FIX] Message author touchable taking whole space available (#3048)
Co-authored-by: Gerzon Z <gerzonc@icloud.com>
* [CHORE] Improve stories (#3028)
* [CHORE] Improve stories
* Refactor Avatar and UIKitModal
* fixed undefined 'name'
* Remove commented stories
* Remove Markdown from stories/index, update Markdown test file and remove markdown stories from Message stories
* Remove StoriesSeparator
* Refactor Markdown
* Remove commented lines of code
* Small refactor
* Re-add stories
Co-authored-by: Gerzon Z <gerzonzcanario@gmail.com>
Co-authored-by: Gerzon Z <gerzonc@icloud.com>
Co-authored-by: Diego Mello <diegolmello@gmail.com>
* Bump version to 4.17.0 (#3083)
* [REGRESSION] Fallback not working when device's language is available (#3091)
* Always add 'en' i18n
* Add tests
* Bump version to 4.16.2 (#3092)
Co-authored-by: Gerzon Z <gerzonzcanario@gmail.com>
Co-authored-by: Gerzon Z <gerzonc@icloud.com>
Co-authored-by: Djorkaeff Alexandre <djorkaeff.unb@gmail.com>
Co-authored-by: phriedrich <info@phriedrich.de>
Co-authored-by: yash-rajpal <58601732+yash-rajpal@users.noreply.github.com>
Co-authored-by: Fazil Boudjelal <fazildiablou@hotmail.fr>
Co-authored-by: Sumukha Hegde <SUMUKHA214@GMAIL.COM>
Co-authored-by: Hakan YILMAZ <mukerrem.yilmaz@hotmail.com>
Co-authored-by: Vincenzo Esposito <aenon.esposito@gmail.com>
Co-authored-by: Arkadyuti Bandyopadhyay <bandyopadhyayarkadyuti@gmail.com>
Co-authored-by: Anant Bhasin <38764067+aKn1ghtOut@users.noreply.github.com>
Co-authored-by: Gung Wah <41157464+kresnaputra@users.noreply.github.com>
Co-authored-by: Billy Newman <newmanw10@gmail.com>
Co-authored-by: Jan Garaj <jan.garaj@gmail.com>
Co-authored-by: ankar84 <ankar84@gmail.com>
Co-authored-by: sadegh <sadeghmohamadnia@yahoo.com>
2021-05-03 16:30:10 +00:00
|
|
|
versionName "4.16.2"
|
2018-07-17 19:10:27 +00:00
|
|
|
vectorDrawables.useSupportLibrary = true
|
2020-12-14 16:20:32 +00:00
|
|
|
if (!isFoss) {
|
2020-08-24 12:24:10 +00:00
|
|
|
manifestPlaceholders = [BugsnagAPIKey: BugsnagAPIKey as String]
|
2020-11-09 20:14:35 +00:00
|
|
|
missingDimensionStrategy "RNNotifications.reactNativeVersion", "reactNative60" // See note below!
|
2020-08-24 12:24:10 +00:00
|
|
|
}
|
2020-11-12 16:06:48 +00:00
|
|
|
resValue "string", "rn_config_reader_custom_package", "chat.rocket.reactnative"
|
2017-08-03 18:23:43 +00:00
|
|
|
}
|
2018-04-24 19:34:03 +00:00
|
|
|
|
2017-08-15 13:21:20 +00:00
|
|
|
signingConfigs {
|
|
|
|
release {
|
2017-11-06 23:45:48 +00:00
|
|
|
if (project.hasProperty('KEYSTORE')) {
|
|
|
|
storeFile file(KEYSTORE)
|
|
|
|
storePassword KEYSTORE_PASSWORD
|
|
|
|
keyAlias KEY_ALIAS
|
|
|
|
keyPassword KEY_PASSWORD
|
2017-08-15 13:21:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-08-03 18:23:43 +00:00
|
|
|
splits {
|
|
|
|
abi {
|
|
|
|
reset()
|
|
|
|
enable enableSeparateBuildPerCPUArchitecture
|
|
|
|
universalApk false // If true, also generate a universal APK
|
2019-05-23 21:23:23 +00:00
|
|
|
include "armeabi-v7a", "x86", "arm64-v8a", "x86_64"
|
2017-08-03 18:23:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
buildTypes {
|
|
|
|
release {
|
2018-04-24 19:34:03 +00:00
|
|
|
minifyEnabled enableProguardInReleaseBuilds
|
|
|
|
setProguardFiles([getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'])
|
2018-04-27 04:09:16 +00:00
|
|
|
signingConfig signingConfigs.release
|
2020-12-14 16:20:32 +00:00
|
|
|
if (!isFoss) {
|
2020-08-24 12:24:10 +00:00
|
|
|
firebaseCrashlytics {
|
|
|
|
nativeSymbolUploadEnabled true
|
|
|
|
}
|
2020-07-24 13:19:17 +00:00
|
|
|
}
|
2018-04-27 04:09:16 +00:00
|
|
|
}
|
2017-08-03 18:23:43 +00:00
|
|
|
}
|
2020-05-08 16:37:49 +00:00
|
|
|
|
2020-07-20 16:35:17 +00:00
|
|
|
// packagingOptions {
|
|
|
|
// pickFirst '**/armeabi-v7a/libc++_shared.so'
|
|
|
|
// pickFirst '**/x86/libc++_shared.so'
|
|
|
|
// pickFirst '**/arm64-v8a/libc++_shared.so'
|
|
|
|
// pickFirst '**/x86_64/libc++_shared.so'
|
|
|
|
// }
|
2020-05-08 16:37:49 +00:00
|
|
|
|
2017-08-03 18:23:43 +00:00
|
|
|
// applicationVariants are e.g. debug, release
|
2020-08-24 12:24:10 +00:00
|
|
|
|
2020-12-14 16:20:32 +00:00
|
|
|
flavorDimensions "app", "type"
|
2020-08-24 12:24:10 +00:00
|
|
|
productFlavors {
|
2020-12-14 16:20:32 +00:00
|
|
|
official {
|
|
|
|
dimension = "app"
|
|
|
|
buildConfigField "boolean", "IS_OFFICIAL", "true"
|
|
|
|
}
|
|
|
|
experimental {
|
|
|
|
dimension = "app"
|
|
|
|
buildConfigField "boolean", "IS_OFFICIAL", "false"
|
|
|
|
}
|
2020-08-24 12:24:10 +00:00
|
|
|
foss {
|
|
|
|
dimension = "type"
|
|
|
|
buildConfigField "boolean", "FDROID_BUILD", "true"
|
|
|
|
}
|
|
|
|
play {
|
|
|
|
dimension = "type"
|
|
|
|
buildConfigField "boolean", "FDROID_BUILD", "false"
|
|
|
|
}
|
|
|
|
}
|
2020-11-09 20:14:35 +00:00
|
|
|
sourceSets {
|
2020-12-14 16:20:32 +00:00
|
|
|
// TODO: refactor making sure notifications are working properly both on debug and release
|
|
|
|
experimentalPlayDebug {
|
|
|
|
java.srcDirs = ['src/main/java', 'src/play/java']
|
|
|
|
manifest.srcFile 'src/play/AndroidManifest.xml'
|
|
|
|
}
|
|
|
|
experimentalPlayRelease {
|
|
|
|
java.srcDirs = ['src/main/java', 'src/play/java']
|
|
|
|
manifest.srcFile 'src/play/AndroidManifest.xml'
|
|
|
|
}
|
|
|
|
officialPlayDebug {
|
2020-11-09 20:14:35 +00:00
|
|
|
java.srcDirs = ['src/main/java', 'src/play/java']
|
|
|
|
manifest.srcFile 'src/play/AndroidManifest.xml'
|
|
|
|
}
|
2020-12-14 16:20:32 +00:00
|
|
|
officialPlayRelease {
|
2020-11-09 20:14:35 +00:00
|
|
|
java.srcDirs = ['src/main/java', 'src/play/java']
|
|
|
|
manifest.srcFile 'src/play/AndroidManifest.xml'
|
|
|
|
}
|
|
|
|
}
|
2020-08-24 12:24:10 +00:00
|
|
|
|
2017-08-03 18:23:43 +00:00
|
|
|
applicationVariants.all { variant ->
|
|
|
|
variant.outputs.each { output ->
|
|
|
|
// For each separate APK per architecture, set a unique version code as described here:
|
2019-08-07 13:51:34 +00:00
|
|
|
// https://developer.android.com/studio/build/configure-apk-splits.html
|
|
|
|
def versionCodes = ["armeabi-v7a": 1, "x86": 2, "arm64-v8a": 3, "x86_64": 4]
|
2017-08-03 18:23:43 +00:00
|
|
|
def abi = output.getFilter(OutputFile.ABI)
|
|
|
|
if (abi != null) { // null for the universal-debug, universal-release variants
|
|
|
|
output.versionCodeOverride =
|
|
|
|
versionCodes.get(abi) * 1048576 + defaultConfig.versionCode
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-05-23 18:44:33 +00:00
|
|
|
|
|
|
|
bundle {
|
|
|
|
language {
|
|
|
|
enableSplit = false
|
|
|
|
}
|
|
|
|
density {
|
|
|
|
enableSplit = true
|
|
|
|
}
|
|
|
|
abi {
|
|
|
|
enableSplit = true
|
|
|
|
}
|
|
|
|
}
|
2017-08-03 18:23:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2019-06-21 16:39:20 +00:00
|
|
|
addUnimodulesDependencies()
|
2019-09-16 20:26:32 +00:00
|
|
|
implementation project(':watermelondb')
|
2019-09-26 14:59:27 +00:00
|
|
|
implementation project(':@react-native-community_viewpager')
|
2020-11-09 20:14:35 +00:00
|
|
|
playImplementation project(':reactnativenotifications')
|
2020-10-13 12:41:03 +00:00
|
|
|
playImplementation project(':@react-native-firebase_app')
|
|
|
|
playImplementation project(':@react-native-firebase_analytics')
|
|
|
|
playImplementation project(':@react-native-firebase_crashlytics')
|
2018-07-10 13:40:32 +00:00
|
|
|
implementation fileTree(dir: "libs", include: ["*.jar"])
|
2020-05-08 16:37:49 +00:00
|
|
|
//noinspection GradleDynamicVersion
|
2018-07-10 13:40:32 +00:00
|
|
|
implementation "com.facebook.react:react-native:+" // From node_modules
|
2020-08-24 12:24:10 +00:00
|
|
|
playImplementation "com.google.firebase:firebase-messaging:18.0.0"
|
2020-05-08 16:37:49 +00:00
|
|
|
implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.0.0"
|
|
|
|
debugImplementation("com.facebook.flipper:flipper:${FLIPPER_VERSION}") {
|
|
|
|
exclude group:'com.facebook.fbjni'
|
|
|
|
}
|
|
|
|
debugImplementation("com.facebook.flipper:flipper-network-plugin:${FLIPPER_VERSION}") {
|
|
|
|
exclude group:'com.facebook.flipper'
|
|
|
|
}
|
|
|
|
debugImplementation("com.facebook.flipper:flipper-fresco-plugin:${FLIPPER_VERSION}") {
|
|
|
|
exclude group:'com.facebook.flipper'
|
|
|
|
}
|
2019-08-07 13:51:34 +00:00
|
|
|
|
|
|
|
if (enableHermes) {
|
2019-09-26 14:59:27 +00:00
|
|
|
def hermesPath = "../../node_modules/hermes-engine/android/";
|
2019-08-07 13:51:34 +00:00
|
|
|
debugImplementation files(hermesPath + "hermes-debug.aar")
|
|
|
|
releaseImplementation files(hermesPath + "hermes-release.aar")
|
|
|
|
} else {
|
|
|
|
implementation jscFlavor
|
|
|
|
}
|
2019-12-17 16:27:13 +00:00
|
|
|
|
|
|
|
implementation "com.google.code.gson:gson:2.8.5"
|
|
|
|
implementation "com.github.bumptech.glide:glide:4.9.0"
|
|
|
|
annotationProcessor "com.github.bumptech.glide:compiler:4.9.0"
|
2020-08-19 17:14:22 +00:00
|
|
|
implementation "com.tencent:mmkv-static:1.2.1"
|
2017-08-03 18:23:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Run this once to be able to run the application with BUCK
|
|
|
|
// puts all compile dependencies into folder libs for BUCK to use
|
|
|
|
task copyDownloadableDepsToLibs(type: Copy) {
|
|
|
|
from configurations.compile
|
|
|
|
into 'libs'
|
|
|
|
}
|
2019-03-25 17:43:55 +00:00
|
|
|
|
2020-08-24 12:24:10 +00:00
|
|
|
apply from: file("../../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesAppBuildGradle(project)
|
2020-12-14 16:20:32 +00:00
|
|
|
if (!isFoss) {
|
2020-08-24 12:24:10 +00:00
|
|
|
apply plugin: 'com.google.gms.google-services'
|
|
|
|
}
|