Compare commits
55 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5d7ac81c4b | ||
|
|
93856ed8cf | ||
|
|
84fd1a9140 | ||
|
|
9949e5e3a5 | ||
|
|
c0a44c7fc3 | ||
|
|
d9df1ec39e | ||
|
|
abcd599ad8 | ||
|
|
8a3d0dde91 | ||
|
|
0f3de6c979 | ||
|
|
c089d6cd43 | ||
|
|
cfcb9a8cdb | ||
|
|
83479d11b7 | ||
|
|
73b8f11b5a | ||
|
|
4593014d00 | ||
|
|
2cf5d57454 | ||
|
|
048d859881 | ||
|
|
1df28c6564 | ||
|
|
f59e937006 | ||
|
|
5948b46ac7 | ||
|
|
75b232bfdc | ||
|
|
9e6594cc0b | ||
|
|
7f85b61e89 | ||
|
|
1a32bc8232 | ||
|
|
e603162ee7 | ||
|
|
08eca5d844 | ||
|
|
1d1dbcf9cd | ||
|
|
e6b107fa78 | ||
|
|
284cca3e25 | ||
|
|
1e0b0d926a | ||
|
|
cb86be578b | ||
|
|
b8bb2b78bd | ||
|
|
6fceb25121 | ||
|
|
0484047b4e | ||
|
|
b9a10653f1 | ||
|
|
42a5504f0d | ||
|
|
ae784db80d | ||
|
|
f5cbf64ccf | ||
|
|
cecf16c595 | ||
|
|
fb4c9d3bf1 | ||
|
|
b5aa46bb67 | ||
|
|
2dc68ed053 | ||
|
|
58d818923d | ||
|
|
f4a6cd9c68 | ||
|
|
ed04535537 | ||
|
|
7d4de3d4cb | ||
|
|
bc7cc306cb | ||
|
|
5fa07e7094 | ||
|
|
2b069fa63f | ||
|
|
99848f98d3 | ||
|
|
967e9dd9a7 | ||
|
|
4a720289e2 | ||
|
|
86d58e97cf | ||
|
|
bc6b7d15f1 | ||
|
|
37f3b1f1ba | ||
|
|
262012887c |
@@ -3,7 +3,7 @@
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
package="org.thoughtcrime.securesms">
|
||||
|
||||
<uses-sdk tools:overrideLibrary="com.amulyakhare.textdrawable,com.astuetz.pagerslidingtabstrip,pl.tajchert.waitingdots,com.h6ah4i.android.multiselectlistpreferencecompat,android.support.v13,com.davemorrissey.labs.subscaleview,com.tomergoldst.tooltips,com.klinker.android.send_message,com.takisoft.colorpicker,android.support.v14.preference"/>
|
||||
<uses-sdk tools:overrideLibrary="androidx.camera.core,androidx.camera.camera2"/>
|
||||
|
||||
<permission android:name="org.thoughtcrime.securesms.ACCESS_SECRETS"
|
||||
android:label="Access to TextSecure Secrets"
|
||||
@@ -58,6 +58,7 @@
|
||||
<uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" />
|
||||
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
||||
<uses-permission android:name="android.permission.INTERNET" />
|
||||
<uses-permission android:name="android.permission.FOREGROUND_SERVICE"/>
|
||||
|
||||
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
|
||||
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
|
||||
@@ -86,6 +87,7 @@
|
||||
<uses-permission android:name="android.permission.DISABLE_KEYGUARD" />
|
||||
<uses-permission android:name="android.permission.RAISED_THREAD_PRIORITY" />
|
||||
<uses-permission android:name="android.permission.REQUEST_IGNORE_BATTERY_OPTIMIZATIONS"/>
|
||||
<uses-permission android:name="android.permission.USE_FULL_SCREEN_INTENT"/>
|
||||
|
||||
<application android:name=".ApplicationContext"
|
||||
android:icon="@mipmap/ic_launcher"
|
||||
@@ -457,6 +459,11 @@
|
||||
android:exported="true"
|
||||
android:configChanges="touchscreen|keyboard|keyboardHidden|orientation|screenLayout|screenSize"/>
|
||||
|
||||
<activity
|
||||
android:name=".maps.PlacePickerActivity"
|
||||
android:label="@string/PlacePickerActivity_title"
|
||||
android:theme="@style/TextSecure.LightNoActionBar" />
|
||||
|
||||
<service android:enabled="true" android:name="org.thoughtcrime.securesms.service.WebRtcCallService"/>
|
||||
<service android:enabled="true" android:name=".service.ApplicationMigrationService"/>
|
||||
<service android:enabled="true" android:exported="false" android:name=".service.KeyCachingService"/>
|
||||
@@ -580,7 +587,7 @@
|
||||
android:exported="false"
|
||||
android:authorities="org.thoughtcrime.provider.securesms.mms" />
|
||||
|
||||
<provider android:name="android.support.v4.content.FileProvider"
|
||||
<provider android:name="androidx.core.content.FileProvider"
|
||||
android:authorities="org.thoughtcrime.securesms.fileprovider"
|
||||
android:exported="false"
|
||||
android:grantUriPermissions="true">
|
||||
@@ -683,6 +690,12 @@
|
||||
</intent-filter>
|
||||
</receiver>
|
||||
|
||||
<service
|
||||
android:name=".gcm.FcmJobService"
|
||||
android:permission="android.permission.BIND_JOB_SERVICE"
|
||||
android:enabled="@bool/enable_job_service"
|
||||
tools:targetApi="26" />
|
||||
|
||||
<service
|
||||
android:name=".jobmanager.JobSchedulerScheduler$SystemService"
|
||||
android:permission="android.permission.BIND_JOB_SERVICE"
|
||||
@@ -706,6 +719,8 @@
|
||||
</intent-filter>
|
||||
</receiver>
|
||||
|
||||
<uses-library android:name="org.apache.http.legacy" android:required="false"/>
|
||||
|
||||
<uses-library android:name="com.sec.android.app.multiwindow" android:required="false"/>
|
||||
<meta-data android:name="com.sec.android.support.multiwindow" android:value="true" />
|
||||
<meta-data android:name="com.sec.android.multiwindow.DEFAULT_SIZE_W" android:value="632.0dip" />
|
||||
|
||||
|
Before Width: | Height: | Size: 333 KiB |
BIN
assets/emoji/Activity.webp
Normal file
|
After Width: | Height: | Size: 168 KiB |
|
Before Width: | Height: | Size: 812 KiB |
BIN
assets/emoji/Flags.webp
Normal file
|
After Width: | Height: | Size: 444 KiB |
|
Before Width: | Height: | Size: 604 KiB |
BIN
assets/emoji/Foods.webp
Normal file
|
After Width: | Height: | Size: 283 KiB |
|
Before Width: | Height: | Size: 691 KiB |
BIN
assets/emoji/Nature.webp
Normal file
|
After Width: | Height: | Size: 358 KiB |
|
Before Width: | Height: | Size: 866 KiB |
BIN
assets/emoji/Objects.webp
Normal file
|
After Width: | Height: | Size: 442 KiB |
|
Before Width: | Height: | Size: 1.6 MiB |
BIN
assets/emoji/People_0.webp
Normal file
|
After Width: | Height: | Size: 1023 KiB |
|
Before Width: | Height: | Size: 1.6 MiB |
BIN
assets/emoji/People_1.webp
Normal file
|
After Width: | Height: | Size: 956 KiB |
|
Before Width: | Height: | Size: 1.2 MiB |
BIN
assets/emoji/People_2.webp
Normal file
|
After Width: | Height: | Size: 854 KiB |
|
Before Width: | Height: | Size: 692 KiB |
BIN
assets/emoji/People_3.webp
Normal file
|
After Width: | Height: | Size: 342 KiB |
|
Before Width: | Height: | Size: 1.1 MiB |
BIN
assets/emoji/Places.webp
Normal file
|
After Width: | Height: | Size: 584 KiB |
|
Before Width: | Height: | Size: 487 KiB |
BIN
assets/emoji/Symbols.webp
Normal file
|
After Width: | Height: | Size: 375 KiB |
|
Before Width: | Height: | Size: 5.3 KiB |
BIN
assets/stickers/animals/anteater.webp
Normal file
|
After Width: | Height: | Size: 3.6 KiB |
|
Before Width: | Height: | Size: 6.4 KiB |
BIN
assets/stickers/animals/bat.webp
Normal file
|
After Width: | Height: | Size: 3.9 KiB |
|
Before Width: | Height: | Size: 9.8 KiB |
BIN
assets/stickers/animals/beetle.webp
Normal file
|
After Width: | Height: | Size: 6.2 KiB |
|
Before Width: | Height: | Size: 11 KiB |
BIN
assets/stickers/animals/bulldog.webp
Normal file
|
After Width: | Height: | Size: 7.4 KiB |
|
Before Width: | Height: | Size: 6.8 KiB |
BIN
assets/stickers/animals/butterfly.webp
Normal file
|
After Width: | Height: | Size: 5.0 KiB |
|
Before Width: | Height: | Size: 8.2 KiB |
BIN
assets/stickers/animals/camel.webp
Normal file
|
After Width: | Height: | Size: 5.4 KiB |
|
Before Width: | Height: | Size: 11 KiB |
BIN
assets/stickers/animals/cat.webp
Normal file
|
After Width: | Height: | Size: 8.4 KiB |
|
Before Width: | Height: | Size: 9.9 KiB |
BIN
assets/stickers/animals/chameleon.webp
Normal file
|
After Width: | Height: | Size: 7.6 KiB |
|
Before Width: | Height: | Size: 15 KiB |
BIN
assets/stickers/animals/clown-fish.webp
Normal file
|
After Width: | Height: | Size: 11 KiB |
|
Before Width: | Height: | Size: 12 KiB |
BIN
assets/stickers/animals/cobra.webp
Normal file
|
After Width: | Height: | Size: 8.2 KiB |
|
Before Width: | Height: | Size: 16 KiB |
BIN
assets/stickers/animals/cow.webp
Normal file
|
After Width: | Height: | Size: 11 KiB |
|
Before Width: | Height: | Size: 11 KiB |
BIN
assets/stickers/animals/crab.webp
Normal file
|
After Width: | Height: | Size: 7.8 KiB |
|
Before Width: | Height: | Size: 5.9 KiB |
BIN
assets/stickers/animals/crocodile.webp
Normal file
|
After Width: | Height: | Size: 4.5 KiB |
|
Before Width: | Height: | Size: 6.0 KiB |
BIN
assets/stickers/animals/duck.webp
Normal file
|
After Width: | Height: | Size: 4.0 KiB |
|
Before Width: | Height: | Size: 7.6 KiB |
BIN
assets/stickers/animals/elephant.webp
Normal file
|
After Width: | Height: | Size: 5.0 KiB |
|
Before Width: | Height: | Size: 9.6 KiB |
BIN
assets/stickers/animals/frog.webp
Normal file
|
After Width: | Height: | Size: 7.1 KiB |
|
Before Width: | Height: | Size: 12 KiB |
BIN
assets/stickers/animals/giraffe.webp
Normal file
|
After Width: | Height: | Size: 8.8 KiB |
|
Before Width: | Height: | Size: 7.5 KiB |
BIN
assets/stickers/animals/hen.webp
Normal file
|
After Width: | Height: | Size: 5.4 KiB |
|
Before Width: | Height: | Size: 7.2 KiB |
BIN
assets/stickers/animals/hippopotamus.webp
Normal file
|
After Width: | Height: | Size: 4.8 KiB |
|
Before Width: | Height: | Size: 7.0 KiB |
BIN
assets/stickers/animals/kangaroo.webp
Normal file
|
After Width: | Height: | Size: 4.8 KiB |
|
Before Width: | Height: | Size: 11 KiB |
BIN
assets/stickers/animals/lion.webp
Normal file
|
After Width: | Height: | Size: 8.3 KiB |
|
Before Width: | Height: | Size: 5.4 KiB |
BIN
assets/stickers/animals/llama.webp
Normal file
|
After Width: | Height: | Size: 3.1 KiB |
|
Before Width: | Height: | Size: 9.4 KiB |
BIN
assets/stickers/animals/macaw.webp
Normal file
|
After Width: | Height: | Size: 7.5 KiB |
|
Before Width: | Height: | Size: 11 KiB |
BIN
assets/stickers/animals/monkey.webp
Normal file
|
After Width: | Height: | Size: 7.8 KiB |
|
Before Width: | Height: | Size: 7.5 KiB |
BIN
assets/stickers/animals/moose.webp
Normal file
|
After Width: | Height: | Size: 4.6 KiB |
|
Before Width: | Height: | Size: 6.4 KiB |
BIN
assets/stickers/animals/mouse.webp
Normal file
|
After Width: | Height: | Size: 4.5 KiB |
|
Before Width: | Height: | Size: 13 KiB |
BIN
assets/stickers/animals/octopus.webp
Normal file
|
After Width: | Height: | Size: 8.5 KiB |
|
Before Width: | Height: | Size: 7.6 KiB |
BIN
assets/stickers/animals/ostrich.webp
Normal file
|
After Width: | Height: | Size: 5.1 KiB |
|
Before Width: | Height: | Size: 9.0 KiB |
BIN
assets/stickers/animals/owl.webp
Normal file
|
After Width: | Height: | Size: 5.8 KiB |
|
Before Width: | Height: | Size: 8.2 KiB |
BIN
assets/stickers/animals/panda.webp
Normal file
|
After Width: | Height: | Size: 5.4 KiB |
|
Before Width: | Height: | Size: 7.5 KiB |
BIN
assets/stickers/animals/pelican.webp
Normal file
|
After Width: | Height: | Size: 5.1 KiB |
|
Before Width: | Height: | Size: 8.8 KiB |
BIN
assets/stickers/animals/penguin.webp
Normal file
|
After Width: | Height: | Size: 5.6 KiB |
|
Before Width: | Height: | Size: 8.3 KiB |
BIN
assets/stickers/animals/pig.webp
Normal file
|
After Width: | Height: | Size: 5.9 KiB |
|
Before Width: | Height: | Size: 7.4 KiB |
BIN
assets/stickers/animals/rabbit.webp
Normal file
|
After Width: | Height: | Size: 4.8 KiB |
|
Before Width: | Height: | Size: 8.3 KiB |
BIN
assets/stickers/animals/racoon.webp
Normal file
|
After Width: | Height: | Size: 5.9 KiB |
|
Before Width: | Height: | Size: 7.6 KiB |
BIN
assets/stickers/animals/ray.webp
Normal file
|
After Width: | Height: | Size: 4.7 KiB |
|
Before Width: | Height: | Size: 6.5 KiB |
BIN
assets/stickers/animals/rhinoceros.webp
Normal file
|
After Width: | Height: | Size: 4.3 KiB |
|
Before Width: | Height: | Size: 4.4 KiB |
BIN
assets/stickers/animals/sea-cow.webp
Normal file
|
After Width: | Height: | Size: 2.6 KiB |
|
Before Width: | Height: | Size: 5.9 KiB |