mirror of
https://github.com/vector-im/element-android.git
synced 2024-11-16 02:05:06 +08:00
9ab59a543d
- Get Presence Status - Set Presence Status * Integrate presence in room details screen * Integrate presence in room people's view * Update UI to support presence * Fix bug when insertOrUpdate was called on RoomMemberEventHandler and override the correct presence value in RoomMemberSummaryEntity * Improve performance on updateUserPresence in RoomMemberSummaryEntity entity * Remarks & linter fixes * Disable presence when there is no m.presence events. In some servers like matrix.org is disabled atm. * Enhance UI Presence on DM room lists to support dark/light theme * Restore missing lines in gradle.properties to speed up debugging
28 lines
1.1 KiB
Properties
28 lines
1.1 KiB
Properties
# Project-wide Gradle settings.
|
|
# IDE (e.g. Android Studio) users:
|
|
# Gradle settings configured through the IDE *will override*
|
|
# any settings specified in this file.
|
|
# For more details on how to configure your build environment visit
|
|
# http://www.gradle.org/docs/current/userguide/build_environment.html
|
|
# Specifies the JVM arguments used for the daemon process.
|
|
# The setting is particularly useful for tweaking memory settings.
|
|
|
|
# Build Time Optimizations
|
|
org.gradle.jvmargs=-Xmx3g -Xms512M -XX:MaxPermSize=2048m -XX:MaxMetaspaceSize=1g -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 -XX:+UseParallelGC
|
|
org.gradle.configureondemand=true
|
|
org.gradle.parallel=true
|
|
org.gradle.vfs.watch=true
|
|
|
|
# Android Settings
|
|
android.enableJetifier=true
|
|
android.useAndroidX=true
|
|
|
|
#Project Settings
|
|
# Change debugPrivateData to true for debugging
|
|
vector.debugPrivateData=false
|
|
# httpLogLevel values: NONE, BASIC, HEADERS, BODY
|
|
vector.httpLogLevel=BASIC
|
|
|
|
# Note: to debug, you can put and uncomment the following lines in the file ~/.gradle/gradle.properties to override the value above
|
|
#vector.debugPrivateData=true
|
|
#vector.httpLogLevel=BODY |