Greyson Parrelli
8511d3576f
Use the SignalServiceNetworkAccess from ApplicationDependencies.
2021-11-04 16:59:59 -04:00
Greyson Parrelli
fcf62512a7
Log when executors are full.
2021-10-21 17:11:46 -04:00
Alex Hart
c1820459b7
Implement further features for badges.
...
* Add Subscriptions API
* Add Accept-Language header to profile requests
* Fix several UI bugs, add error dialogs, etc.
2021-10-21 17:11:46 -04:00
Jim Gustafson
41585699d2
Move device specific control to RingRTC
2021-10-21 17:11:46 -04:00
Greyson Parrelli
0c8b6f8ef8
Add an observer to log blocked threads.
2021-10-08 15:18:52 -04:00
Greyson Parrelli
cac841d8e6
Flush logs before trimming to size.
...
There are situations where we may be hitting our SQLITE_BUSY timeout
when we go to trim. One possibility is that we may have a large ongoing
write when we go to trim.
So, this change just makes sure we're caught up before we go to trim,
which is the simplest thing we can do to address this. It's not a
foolproof solution though, so if we still see it crop up, we'll just
have to re-route all log operations through the single thread we have
setup in the PersistentLogger or something.
2021-10-04 21:49:59 -04:00
Cody Henthorne
3761859681
Fix kotlin compiler warnings.
2021-09-16 14:17:38 -03:00
Greyson Parrelli
e5c172a819
Turn off noisy eventbus logs.
...
Fixes #11617
2021-09-16 14:17:38 -03:00
Greyson Parrelli
c84de8fa60
Add a cache for GIFs.
2021-09-03 20:19:55 -04:00
Greyson Parrelli
c131754874
Add a system for locally tracking performance on-device.
2021-08-04 10:01:14 -04:00
Greyson Parrelli
15a5f5966d
Update logging to be size-limited and more performant.
2021-07-23 08:05:28 -04:00
Greyson Parrelli
60b4862b1b
Ensure SQLCipher is loaded before logging begins.
2021-07-22 03:04:15 -04:00
Alex Hart
ed23c3fe7c
Add avatar picker and defaults.
2021-07-21 16:57:03 -04:00
Greyson Parrelli
7419da7247
Move logging into a database.
2021-07-21 16:57:03 -04:00
Greyson Parrelli
71613d9db1
Ensure SQLCipher libraries are loaded.
2021-07-16 14:12:00 -04:00
Greyson Parrelli
b04ca202f6
Fix ApplicationMigrations UI.
2021-07-15 16:28:13 -04:00
Cody Henthorne
5d6d78a51e
Initial WebSocket refactor.
2021-07-15 16:28:13 -04:00
Cody Henthorne
444d947743
Add RxJava.
2021-07-12 20:29:07 -04:00
Greyson Parrelli
b86acb9773
Increase log size for internal users.
2021-06-25 16:55:15 -04:00
Greyson Parrelli
f19033a7a2
Implement the message send log for sender key retries.
2021-06-24 16:36:13 -04:00
Greyson Parrelli
57c0b8fd0f
Initial pre-alpha support for sender key.
2021-06-07 18:14:12 -04:00
Android Team
08e86b8c82
Add Emoji Search, Sticker Search, and GIF Keyboard.
...
Co-authored-by: Alex Hart <alex@signal.org>
Co-authored-by: Cody Henthorne <cody@signal.org>
Co-authored-by: Greyson Parrelli<greyson@signal.org>
2021-06-02 17:43:17 -04:00
Greyson Parrelli
80c911e118
Sync whether or not our primary device can send SMS.
2021-05-12 14:58:19 -04:00
Alex Hart
1f3e131690
Fix Emoji crashes when downloaded bitmap files cannot be found.
2021-05-07 13:56:14 -03:00
Greyson Parrelli
31e1c6f7aa
Handle 428 rate limiting.
2021-05-05 16:47:13 -04:00
Alex Hart
85e0e74bc6
Add support for OTA emoji download.
2021-05-03 14:02:58 -04:00
Greyson Parrelli
cdddfd37d2
Dynamically respond to notificationsV2 feature flag.
...
We were only reading it once, possibly before the flags were
initialized. This lets us be more responsive to the flag changing within
an application cycle.
2021-04-14 18:50:15 -04:00
Greyson Parrelli
e461625da4
Add Log.internal()
2021-04-14 15:50:40 -04:00
Greyson Parrelli
670aed2074
Move ViewOnceMessageManager and ExpiringMessageManager to AppDependencies.
2021-04-13 14:49:32 -04:00
Alan Evans
53b6cc21b1
Make call to desugared classes from ApplicationContext indirect for API19.
...
Fixes #11185
2021-04-09 16:48:49 -03:00
Greyson Parrelli
b053fbc4a7
Use Log.tag where appropriate.
2021-03-31 16:02:32 -03:00
Greyson Parrelli
32ac6e3429
Ensure blobs from old sessions are deleted before creating new ones.
...
There was a race condition where if you created a blob super-early in
the application lifecycle, you could create it *before* we deleted the
blobs from the previous session, leading you to lose the blob you just
created immediately.
In an effort to protect our cold start time, I just made a little
initialization flow where read/write calls to BlobProvider will block
until it's deleted blobs from the old session.
2021-02-24 16:04:58 -05:00
Greyson Parrelli
267f759452
Fix possible crash during NotificationChannels initialization.
2021-02-16 17:45:06 -05:00
Alan Evans
01418c0e36
Upgrade notification channels earlier.
2021-02-12 17:38:39 -04:00
Alan Evans
98cb6b457c
Periodic alarm to check for messages.
2021-02-10 15:21:04 -05:00
Greyson Parrelli
3bdf2e7e2c
Add a system to improve app foreground observation.
...
There was previously a crash that occurred when multiple threads tried to use ProcessLifecycleOwner, and this will hopefully resolve that.
2021-02-08 15:37:45 -05:00
Greyson Parrelli
46344776a4
Add UI support for configuring a proxy.
2021-02-02 16:42:47 -05:00
Greyson Parrelli
a3556d9f68
Ensure passphrases are disabled for all but the oldest users.
2021-01-27 10:10:26 -05:00
Greyson Parrelli
957a12875d
Fix situations where we might not have detected first-ever-launch.
2021-01-13 17:33:14 -05:00
Greyson Parrelli
74552ba545
Fix possible crash with ProcessLifecycleOwner.
2021-01-12 02:06:00 -05:00
Greyson Parrelli
3b39d13412
Fix possible crash with ProcessLifecycleObserver.
2021-01-09 23:41:31 -05:00
Greyson Parrelli
0ac56ca571
Fix crash with ExpiringMessageManager.
2021-01-09 23:36:09 -05:00
Greyson Parrelli
79d6ac100c
Fix issue where megaphone display may be delayed.
2021-01-08 11:31:35 -05:00
Greyson Parrelli
bbc346bd7a
Create a system for scheduling work post-initial-render.
2021-01-06 17:03:38 -04:00
Greyson Parrelli
61c5fc1057
Add shake-to-report for internal users.
2021-01-06 17:03:20 -04:00
Greyson Parrelli
cdd7b2deb9
Improve and streamline Application#onCreate.
2021-01-06 17:03:20 -04:00
Greyson Parrelli
4b8d02fdba
Move Tracer to core-util.
2021-01-06 17:03:20 -04:00
Greyson Parrelli
e10284bd13
Remove Trace annotation.
2021-01-06 17:03:20 -04:00
Alex Hart
5f947ea2d6
Remove a few more instances of AsyncTask.
2020-12-18 10:41:14 -04:00
Greyson Parrelli
af99753d47
Trace Application and Activity creates.
2020-12-10 11:45:15 -05:00