diff --git a/AndroidManifest.xml b/AndroidManifest.xml index be8b6be0f..465b48d58 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -182,6 +182,21 @@ android:configChanges="touchscreen|keyboard|keyboardHidden|orientation|screenLayout|screenSize" android:exported="true" /> + + + + + + + + + @@ -319,9 +334,15 @@ android:windowSoftInputMode="stateUnchanged" android:configChanges="touchscreen|keyboard|keyboardHidden|orientation|screenLayout|screenSize"/> - + + + + + + + diff --git a/build.gradle b/build.gradle index a6675c26d..b86d6122b 100644 --- a/build.gradle +++ b/build.gradle @@ -181,6 +181,16 @@ dependencies { implementation "com.github.lelloman:android-identicons:$identicon_version" } +def canonicalVersionCode = 6 +def canonicalVersionName = "1.0.0" + +def postFixSize = 10 +def abiPostFix = ['armeabi-v7a' : 1, + 'arm64-v8a' : 2, + 'x86' : 3, + 'x86_64' : 4, + 'universal' : 5] + android { flavorDimensions "none" compileSdkVersion 28 @@ -192,8 +202,8 @@ android { } defaultConfig { - versionCode 6 - versionName "1.0.0" + versionCode canonicalVersionCode * postFixSize + versionName canonicalVersionName minSdkVersion 21 targetSdkVersion 28 @@ -214,9 +224,10 @@ android { buildConfigField "String", "MRENCLAVE", "\"cd6cfc342937b23b1bdd3bbf9721aa5615ac9ff50a75c5527d441cd3276826c9\"" buildConfigField "String", "UNIDENTIFIED_SENDER_TRUST_ROOT", "\"BXu6QIKVz5MA8gstzfOgRQGqyLqOwNKHL6INkv3IHWMF\"" buildConfigField "String[]", "LANGUAGES", "new String[]{\"" + autoResConfig().collect { s -> s.replace('-r', '_') }.join('", "') + '"}' + buildConfigField "int", "CANONICAL_VERSION_CODE", "$canonicalVersionCode" ndk { - abiFilters 'armeabi-v7a', 'x86' + abiFilters 'armeabi-v7a', 'arm64-v8a', 'x86', 'x86_64' } resConfigs autoResConfig() @@ -225,7 +236,7 @@ android { abi { enable true reset() - include 'armeabi-v7a', 'x86' + include 'armeabi-v7a', 'arm64-v8a', 'x86', 'x86_64' universalApk true } } @@ -295,8 +306,14 @@ android { } android.applicationVariants.all { variant -> - variant.outputs.all { - outputFileName = outputFileName.replace(".apk", "-${variant.versionName}.apk") + variant.outputs.each { output -> + output.outputFileName = output.outputFileName.replace(".apk", "-${variant.versionName}.apk") + def abiName = output.getFilter("ABI") ?: 'universal' + def postFix = abiPostFix.get(abiName, 0) + + if (postFix >= postFixSize) throw new AssertionError("postFix is too large") + + output.versionCodeOverride = canonicalVersionCode * postFixSize + postFix } } @@ -322,8 +339,9 @@ android { website.manifest.srcFile 'website/AndroidManifest.xml' } - lintOptions { - abortOnError false + lintOptions { + abortOnError true + baseline file("lint-baseline.xml") } testOptions { @@ -345,8 +363,8 @@ def assembleWebsiteDescriptor = { variant, file -> String apkName = file.getName() String descriptor = "{" + - "\"versionCode\" : $project.android.defaultConfig.versionCode," + - "\"versionName\" : \"$project.android.defaultConfig.versionName\"," + + "\"versionCode\" : $canonicalVersionCode," + + "\"versionName\" : \"$canonicalVersionName\"," + "\"sha256sum\" : \"$digest\"," + "\"url\" : \"$url/$apkName\"" + "}" @@ -427,5 +445,5 @@ static def autoResConfig() { task qa { group 'Verification' description 'Quality Assurance. Run before pushing.' - dependsOn ':testPlayReleaseUnitTest', ':assemblePlayDebug' + dependsOn ':testPlayReleaseUnitTest', ':lintPlayRelease', ':assemblePlayDebug' } diff --git a/buildSrc/src/main/groovy/org/whispersystems/witness/WitnessPlugin.groovy b/buildSrc/src/main/groovy/org/whispersystems/witness/WitnessPlugin.groovy new file mode 100644 index 000000000..31dae7e99 --- /dev/null +++ b/buildSrc/src/main/groovy/org/whispersystems/witness/WitnessPlugin.groovy @@ -0,0 +1,92 @@ +package org.whispersystems.witness + +import org.gradle.api.InvalidUserDataException +import org.gradle.api.Plugin +import org.gradle.api.Project +import org.gradle.api.artifacts.Configuration +import org.gradle.api.artifacts.ResolvedArtifact + +import java.security.MessageDigest + +class WitnessPluginExtension { + List verify + String configuration +} + +class WitnessPlugin implements Plugin { + + static String calculateSha256(file) { + MessageDigest md = MessageDigest.getInstance("SHA-256"); + file.eachByte 4096, {bytes, size -> + md.update(bytes, 0, size); + } + return md.digest().collect {String.format "%02x", it}.join(); + } + + void apply(Project project) { + project.extensions.create("dependencyVerification", WitnessPluginExtension) + project.afterEvaluate { + project.dependencyVerification.verify.each { + assertion -> + List parts = assertion.tokenize(":") + String group = parts.get(0) + String name = parts.get(1) + String hash = parts.get(2) + + def artifacts = allArtifacts(project).findAll { + return it.name.equals(name) && it.moduleVersion.id.group.equals(group) + } + + if (artifacts.size() > 1) { + throw new InvalidUserDataException("Multiple artifacts found for $group:$name, ${artifacts.size()} found") + } + + ResolvedArtifact dependency = artifacts.find() + + println "Verifying " + group + ":" + name + + if (dependency == null) { + throw new InvalidUserDataException("No dependency for integrity assertion found: " + group + ":" + name) + } + + if (!hash.equals(calculateSha256(dependency.file))) { + throw new InvalidUserDataException("Checksum failed for " + assertion) + } + } + } + + project.task('calculateChecksums').doLast { + println "dependencyVerification {" + + def configurationName = project.dependencyVerification.configuration + if (configurationName != null) { + println " configuration = '$configurationName'" + } + + println " verify = [" + + allArtifacts(project).each { + dep -> + println " '" + dep.moduleVersion.id.group+ ":" + dep.name + ":" + calculateSha256(dep.file) + "'," + } + + println " ]" + println "}" + } + } + + private static Set allArtifacts(Project project) { + def configurationName = project.dependencyVerification.configuration + project.configurations + .findAll { config -> config.name =~ configurationName } + .collectMany { tryGetArtifacts(it) } + } + + private static Set tryGetArtifacts(Configuration configuration) { + try { + configuration.resolvedConfiguration.resolvedArtifacts + } catch (Exception ignored) { + [] as Set + } + } +} \ No newline at end of file diff --git a/buildSrc/src/main/resources/META-INF/gradle-plugins/witness.properties b/buildSrc/src/main/resources/META-INF/gradle-plugins/witness.properties new file mode 100644 index 000000000..dae767f67 --- /dev/null +++ b/buildSrc/src/main/resources/META-INF/gradle-plugins/witness.properties @@ -0,0 +1 @@ +implementation-class=org.whispersystems.witness.WitnessPlugin diff --git a/libs/gradle-witness.jar b/libs/gradle-witness.jar deleted file mode 100644 index 53abf2bb3..000000000 Binary files a/libs/gradle-witness.jar and /dev/null differ diff --git a/lint-baseline.xml b/lint-baseline.xml new file mode 100644 index 000000000..2e4d821e4 --- /dev/null +++ b/lint-baseline.xml @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/protobuf/Backups.proto b/protobuf/Backups.proto index 054c3526e..c7efc3914 100644 --- a/protobuf/Backups.proto +++ b/protobuf/Backups.proto @@ -34,6 +34,11 @@ message Attachment { optional uint32 length = 3; } +message Sticker { + optional uint64 rowId = 1; + optional uint32 length = 2; +} + message Avatar { optional string name = 1; optional uint32 length = 2; @@ -56,4 +61,5 @@ message BackupFrame { optional DatabaseVersion version = 5; optional bool end = 6; optional Avatar avatar = 7; + optional Sticker sticker = 8; } \ No newline at end of file diff --git a/res/drawable-hdpi/ic_emoji_activity_activated_dark.png b/res/drawable-hdpi/ic_emoji_activity_activated_dark.png deleted file mode 100644 index f6adac4d8..000000000 Binary files a/res/drawable-hdpi/ic_emoji_activity_activated_dark.png and /dev/null differ diff --git a/res/drawable-hdpi/ic_emoji_activity_activated_light.png b/res/drawable-hdpi/ic_emoji_activity_activated_light.png deleted file mode 100644 index cec4c2ba3..000000000 Binary files a/res/drawable-hdpi/ic_emoji_activity_activated_light.png and /dev/null differ diff --git a/res/drawable-hdpi/ic_emoji_activity_normal_dark.png b/res/drawable-hdpi/ic_emoji_activity_normal_dark.png deleted file mode 100644 index a61dcce74..000000000 Binary files a/res/drawable-hdpi/ic_emoji_activity_normal_dark.png and /dev/null differ diff --git a/res/drawable-hdpi/ic_emoji_activity_normal_light.png b/res/drawable-hdpi/ic_emoji_activity_normal_light.png deleted file mode 100644 index f6adac4d8..000000000 Binary files a/res/drawable-hdpi/ic_emoji_activity_normal_light.png and /dev/null differ diff --git a/res/drawable-hdpi/ic_emoji_emoticons_activated_dark.png b/res/drawable-hdpi/ic_emoji_emoticons_activated_dark.png deleted file mode 100644 index 79110bd85..000000000 Binary files a/res/drawable-hdpi/ic_emoji_emoticons_activated_dark.png and /dev/null differ diff --git a/res/drawable-hdpi/ic_emoji_emoticons_activated_light.png b/res/drawable-hdpi/ic_emoji_emoticons_activated_light.png deleted file mode 100644 index 0f40f277a..000000000 Binary files a/res/drawable-hdpi/ic_emoji_emoticons_activated_light.png and /dev/null differ diff --git a/res/drawable-hdpi/ic_emoji_emoticons_normal_dark.png b/res/drawable-hdpi/ic_emoji_emoticons_normal_dark.png deleted file mode 100644 index da3950443..000000000 Binary files a/res/drawable-hdpi/ic_emoji_emoticons_normal_dark.png and /dev/null differ diff --git a/res/drawable-hdpi/ic_emoji_emoticons_normal_light.png b/res/drawable-hdpi/ic_emoji_emoticons_normal_light.png deleted file mode 100644 index 2557bad89..000000000 Binary files a/res/drawable-hdpi/ic_emoji_emoticons_normal_light.png and /dev/null differ diff --git a/res/drawable-hdpi/ic_emoji_flag_activated_dark.png b/res/drawable-hdpi/ic_emoji_flag_activated_dark.png deleted file mode 100644 index cb37eb1f0..000000000 Binary files a/res/drawable-hdpi/ic_emoji_flag_activated_dark.png and /dev/null differ diff --git a/res/drawable-hdpi/ic_emoji_flag_activated_light.png b/res/drawable-hdpi/ic_emoji_flag_activated_light.png deleted file mode 100644 index 97bc953d6..000000000 Binary files a/res/drawable-hdpi/ic_emoji_flag_activated_light.png and /dev/null differ diff --git a/res/drawable-hdpi/ic_emoji_flag_normal_dark.png b/res/drawable-hdpi/ic_emoji_flag_normal_dark.png deleted file mode 100644 index 56583915d..000000000 Binary files a/res/drawable-hdpi/ic_emoji_flag_normal_dark.png and /dev/null differ diff --git a/res/drawable-hdpi/ic_emoji_flag_normal_light.png b/res/drawable-hdpi/ic_emoji_flag_normal_light.png deleted file mode 100644 index cb37eb1f0..000000000 Binary files a/res/drawable-hdpi/ic_emoji_flag_normal_light.png and /dev/null differ diff --git a/res/drawable-hdpi/ic_emoji_foods_activated_dark.png b/res/drawable-hdpi/ic_emoji_foods_activated_dark.png deleted file mode 100644 index 2f07dbb65..000000000 Binary files a/res/drawable-hdpi/ic_emoji_foods_activated_dark.png and /dev/null differ diff --git a/res/drawable-hdpi/ic_emoji_foods_activated_light.png b/res/drawable-hdpi/ic_emoji_foods_activated_light.png deleted file mode 100644 index 365785ada..000000000 Binary files a/res/drawable-hdpi/ic_emoji_foods_activated_light.png and /dev/null differ diff --git a/res/drawable-hdpi/ic_emoji_foods_normal_dark.png b/res/drawable-hdpi/ic_emoji_foods_normal_dark.png deleted file mode 100644 index 5c533050f..000000000 Binary files a/res/drawable-hdpi/ic_emoji_foods_normal_dark.png and /dev/null differ diff --git a/res/drawable-hdpi/ic_emoji_foods_normal_light.png b/res/drawable-hdpi/ic_emoji_foods_normal_light.png deleted file mode 100644 index 2f07dbb65..000000000 Binary files a/res/drawable-hdpi/ic_emoji_foods_normal_light.png and /dev/null differ diff --git a/res/drawable-hdpi/ic_emoji_nature_activated_dark.png b/res/drawable-hdpi/ic_emoji_nature_activated_dark.png deleted file mode 100644 index 8e970200b..000000000 Binary files a/res/drawable-hdpi/ic_emoji_nature_activated_dark.png and /dev/null differ diff --git a/res/drawable-hdpi/ic_emoji_nature_activated_light.png b/res/drawable-hdpi/ic_emoji_nature_activated_light.png deleted file mode 100644 index b6f53b41d..000000000 Binary files a/res/drawable-hdpi/ic_emoji_nature_activated_light.png and /dev/null differ diff --git a/res/drawable-hdpi/ic_emoji_nature_normal_dark.png b/res/drawable-hdpi/ic_emoji_nature_normal_dark.png deleted file mode 100644 index 90ca0acb5..000000000 Binary files a/res/drawable-hdpi/ic_emoji_nature_normal_dark.png and /dev/null differ diff --git a/res/drawable-hdpi/ic_emoji_nature_normal_light.png b/res/drawable-hdpi/ic_emoji_nature_normal_light.png deleted file mode 100644 index 8e970200b..000000000 Binary files a/res/drawable-hdpi/ic_emoji_nature_normal_light.png and /dev/null differ diff --git a/res/drawable-hdpi/ic_emoji_object_activated_dark.png b/res/drawable-hdpi/ic_emoji_object_activated_dark.png deleted file mode 100644 index 823394d6e..000000000 Binary files a/res/drawable-hdpi/ic_emoji_object_activated_dark.png and /dev/null differ diff --git a/res/drawable-hdpi/ic_emoji_object_activated_light.png b/res/drawable-hdpi/ic_emoji_object_activated_light.png deleted file mode 100644 index 2ece8cead..000000000 Binary files a/res/drawable-hdpi/ic_emoji_object_activated_light.png and /dev/null differ diff --git a/res/drawable-hdpi/ic_emoji_object_normal_dark.png b/res/drawable-hdpi/ic_emoji_object_normal_dark.png deleted file mode 100644 index 23f6b43a0..000000000 Binary files a/res/drawable-hdpi/ic_emoji_object_normal_dark.png and /dev/null differ diff --git a/res/drawable-hdpi/ic_emoji_object_normal_light.png b/res/drawable-hdpi/ic_emoji_object_normal_light.png deleted file mode 100644 index 823394d6e..000000000 Binary files a/res/drawable-hdpi/ic_emoji_object_normal_light.png and /dev/null differ diff --git a/res/drawable-hdpi/ic_emoji_people_activated_dark.png b/res/drawable-hdpi/ic_emoji_people_activated_dark.png deleted file mode 100644 index 787d0002c..000000000 Binary files a/res/drawable-hdpi/ic_emoji_people_activated_dark.png and /dev/null differ diff --git a/res/drawable-hdpi/ic_emoji_people_activated_light.png b/res/drawable-hdpi/ic_emoji_people_activated_light.png deleted file mode 100644 index 262ea943a..000000000 Binary files a/res/drawable-hdpi/ic_emoji_people_activated_light.png and /dev/null differ diff --git a/res/drawable-hdpi/ic_emoji_people_normal_dark.png b/res/drawable-hdpi/ic_emoji_people_normal_dark.png deleted file mode 100644 index e581af307..000000000 Binary files a/res/drawable-hdpi/ic_emoji_people_normal_dark.png and /dev/null differ diff --git a/res/drawable-hdpi/ic_emoji_people_normal_light.png b/res/drawable-hdpi/ic_emoji_people_normal_light.png deleted file mode 100644 index 787d0002c..000000000 Binary files a/res/drawable-hdpi/ic_emoji_people_normal_light.png and /dev/null differ diff --git a/res/drawable-hdpi/ic_emoji_places_activated_dark.png b/res/drawable-hdpi/ic_emoji_places_activated_dark.png deleted file mode 100644 index 721281d84..000000000 Binary files a/res/drawable-hdpi/ic_emoji_places_activated_dark.png and /dev/null differ diff --git a/res/drawable-hdpi/ic_emoji_places_activated_light.png b/res/drawable-hdpi/ic_emoji_places_activated_light.png deleted file mode 100644 index 78a4a39e0..000000000 Binary files a/res/drawable-hdpi/ic_emoji_places_activated_light.png and /dev/null differ diff --git a/res/drawable-hdpi/ic_emoji_places_normal_dark.png b/res/drawable-hdpi/ic_emoji_places_normal_dark.png deleted file mode 100644 index 1744eb741..000000000 Binary files a/res/drawable-hdpi/ic_emoji_places_normal_dark.png and /dev/null differ diff --git a/res/drawable-hdpi/ic_emoji_places_normal_light.png b/res/drawable-hdpi/ic_emoji_places_normal_light.png deleted file mode 100644 index 721281d84..000000000 Binary files a/res/drawable-hdpi/ic_emoji_places_normal_light.png and /dev/null differ diff --git a/res/drawable-hdpi/ic_emoji_recents_activated_dark.png b/res/drawable-hdpi/ic_emoji_recents_activated_dark.png deleted file mode 100644 index 9ee13353c..000000000 Binary files a/res/drawable-hdpi/ic_emoji_recents_activated_dark.png and /dev/null differ diff --git a/res/drawable-hdpi/ic_emoji_recents_activated_light.png b/res/drawable-hdpi/ic_emoji_recents_activated_light.png deleted file mode 100644 index 50725d984..000000000 Binary files a/res/drawable-hdpi/ic_emoji_recents_activated_light.png and /dev/null differ diff --git a/res/drawable-hdpi/ic_emoji_recents_normal_dark.png b/res/drawable-hdpi/ic_emoji_recents_normal_dark.png deleted file mode 100644 index f081e4d29..000000000 Binary files a/res/drawable-hdpi/ic_emoji_recents_normal_dark.png and /dev/null differ diff --git a/res/drawable-hdpi/ic_emoji_recents_normal_light.png b/res/drawable-hdpi/ic_emoji_recents_normal_light.png deleted file mode 100644 index 91e8542ff..000000000 Binary files a/res/drawable-hdpi/ic_emoji_recents_normal_light.png and /dev/null differ diff --git a/res/drawable-hdpi/ic_emoji_symbols_activated_dark.png b/res/drawable-hdpi/ic_emoji_symbols_activated_dark.png deleted file mode 100644 index 05fe46c8b..000000000 Binary files a/res/drawable-hdpi/ic_emoji_symbols_activated_dark.png and /dev/null differ diff --git a/res/drawable-hdpi/ic_emoji_symbols_activated_light.png b/res/drawable-hdpi/ic_emoji_symbols_activated_light.png deleted file mode 100644 index 76c8b1ba0..000000000 Binary files a/res/drawable-hdpi/ic_emoji_symbols_activated_light.png and /dev/null differ diff --git a/res/drawable-hdpi/ic_emoji_symbols_normal_dark.png b/res/drawable-hdpi/ic_emoji_symbols_normal_dark.png deleted file mode 100644 index 6f56d2d57..000000000 Binary files a/res/drawable-hdpi/ic_emoji_symbols_normal_dark.png and /dev/null differ diff --git a/res/drawable-hdpi/ic_emoji_symbols_normal_light.png b/res/drawable-hdpi/ic_emoji_symbols_normal_light.png deleted file mode 100644 index 05fe46c8b..000000000 Binary files a/res/drawable-hdpi/ic_emoji_symbols_normal_light.png and /dev/null differ diff --git a/res/drawable-hdpi/transfer_controls_background.9.png b/res/drawable-hdpi/transfer_controls_background.9.png deleted file mode 100644 index c7b7f575f..000000000 Binary files a/res/drawable-hdpi/transfer_controls_background.9.png and /dev/null differ diff --git a/res/drawable-mdpi/ic_emoji_activity_activated_dark.png b/res/drawable-mdpi/ic_emoji_activity_activated_dark.png deleted file mode 100644 index 4a1574abe..000000000 Binary files a/res/drawable-mdpi/ic_emoji_activity_activated_dark.png and /dev/null differ diff --git a/res/drawable-mdpi/ic_emoji_activity_activated_light.png b/res/drawable-mdpi/ic_emoji_activity_activated_light.png deleted file mode 100644 index 677223f79..000000000 Binary files a/res/drawable-mdpi/ic_emoji_activity_activated_light.png and /dev/null differ diff --git a/res/drawable-mdpi/ic_emoji_activity_normal_dark.png b/res/drawable-mdpi/ic_emoji_activity_normal_dark.png deleted file mode 100644 index bfcafda8a..000000000 Binary files a/res/drawable-mdpi/ic_emoji_activity_normal_dark.png and /dev/null differ diff --git a/res/drawable-mdpi/ic_emoji_activity_normal_light.png b/res/drawable-mdpi/ic_emoji_activity_normal_light.png deleted file mode 100644 index 4a1574abe..000000000 Binary files a/res/drawable-mdpi/ic_emoji_activity_normal_light.png and /dev/null differ diff --git a/res/drawable-mdpi/ic_emoji_emoticons_activated_dark.png b/res/drawable-mdpi/ic_emoji_emoticons_activated_dark.png deleted file mode 100644 index 6a94d111b..000000000 Binary files a/res/drawable-mdpi/ic_emoji_emoticons_activated_dark.png and /dev/null differ diff --git a/res/drawable-mdpi/ic_emoji_emoticons_activated_light.png b/res/drawable-mdpi/ic_emoji_emoticons_activated_light.png deleted file mode 100644 index a63d23cc2..000000000 Binary files a/res/drawable-mdpi/ic_emoji_emoticons_activated_light.png and /dev/null differ diff --git a/res/drawable-mdpi/ic_emoji_emoticons_normal_dark.png b/res/drawable-mdpi/ic_emoji_emoticons_normal_dark.png deleted file mode 100644 index 794573017..000000000 Binary files a/res/drawable-mdpi/ic_emoji_emoticons_normal_dark.png and /dev/null differ diff --git a/res/drawable-mdpi/ic_emoji_emoticons_normal_light.png b/res/drawable-mdpi/ic_emoji_emoticons_normal_light.png deleted file mode 100644 index 4cec12ef1..000000000 Binary files a/res/drawable-mdpi/ic_emoji_emoticons_normal_light.png and /dev/null differ diff --git a/res/drawable-mdpi/ic_emoji_flag_activated_dark.png b/res/drawable-mdpi/ic_emoji_flag_activated_dark.png deleted file mode 100644 index ae1ca3f9d..000000000 Binary files a/res/drawable-mdpi/ic_emoji_flag_activated_dark.png and /dev/null differ diff --git a/res/drawable-mdpi/ic_emoji_flag_activated_light.png b/res/drawable-mdpi/ic_emoji_flag_activated_light.png deleted file mode 100644 index 2bc9f8f09..000000000 Binary files a/res/drawable-mdpi/ic_emoji_flag_activated_light.png and /dev/null differ diff --git a/res/drawable-mdpi/ic_emoji_flag_normal_dark.png b/res/drawable-mdpi/ic_emoji_flag_normal_dark.png deleted file mode 100644 index ede66c976..000000000 Binary files a/res/drawable-mdpi/ic_emoji_flag_normal_dark.png and /dev/null differ diff --git a/res/drawable-mdpi/ic_emoji_flag_normal_light.png b/res/drawable-mdpi/ic_emoji_flag_normal_light.png deleted file mode 100644 index ae1ca3f9d..000000000 Binary files a/res/drawable-mdpi/ic_emoji_flag_normal_light.png and /dev/null differ diff --git a/res/drawable-mdpi/ic_emoji_foods_activated_dark.png b/res/drawable-mdpi/ic_emoji_foods_activated_dark.png deleted file mode 100644 index 785deee01..000000000 Binary files a/res/drawable-mdpi/ic_emoji_foods_activated_dark.png and /dev/null differ diff --git a/res/drawable-mdpi/ic_emoji_foods_activated_light.png b/res/drawable-mdpi/ic_emoji_foods_activated_light.png deleted file mode 100644 index 68efa0a50..000000000 Binary files a/res/drawable-mdpi/ic_emoji_foods_activated_light.png and /dev/null differ diff --git a/res/drawable-mdpi/ic_emoji_foods_normal_dark.png b/res/drawable-mdpi/ic_emoji_foods_normal_dark.png deleted file mode 100644 index aed613d5b..000000000 Binary files a/res/drawable-mdpi/ic_emoji_foods_normal_dark.png and /dev/null differ diff --git a/res/drawable-mdpi/ic_emoji_foods_normal_light.png b/res/drawable-mdpi/ic_emoji_foods_normal_light.png deleted file mode 100644 index 785deee01..000000000 Binary files a/res/drawable-mdpi/ic_emoji_foods_normal_light.png and /dev/null differ diff --git a/res/drawable-mdpi/ic_emoji_nature_activated_dark.png b/res/drawable-mdpi/ic_emoji_nature_activated_dark.png deleted file mode 100644 index 7de887a96..000000000 Binary files a/res/drawable-mdpi/ic_emoji_nature_activated_dark.png and /dev/null differ diff --git a/res/drawable-mdpi/ic_emoji_nature_activated_light.png b/res/drawable-mdpi/ic_emoji_nature_activated_light.png deleted file mode 100644 index 234f2d980..000000000 Binary files a/res/drawable-mdpi/ic_emoji_nature_activated_light.png and /dev/null differ diff --git a/res/drawable-mdpi/ic_emoji_nature_normal_dark.png b/res/drawable-mdpi/ic_emoji_nature_normal_dark.png deleted file mode 100644 index d63616d11..000000000 Binary files a/res/drawable-mdpi/ic_emoji_nature_normal_dark.png and /dev/null differ diff --git a/res/drawable-mdpi/ic_emoji_nature_normal_light.png b/res/drawable-mdpi/ic_emoji_nature_normal_light.png deleted file mode 100644 index 7de887a96..000000000 Binary files a/res/drawable-mdpi/ic_emoji_nature_normal_light.png and /dev/null differ diff --git a/res/drawable-mdpi/ic_emoji_object_activated_dark.png b/res/drawable-mdpi/ic_emoji_object_activated_dark.png deleted file mode 100644 index 6206af2b2..000000000 Binary files a/res/drawable-mdpi/ic_emoji_object_activated_dark.png and /dev/null differ diff --git a/res/drawable-mdpi/ic_emoji_object_activated_light.png b/res/drawable-mdpi/ic_emoji_object_activated_light.png deleted file mode 100644 index 11f25dcc6..000000000 Binary files a/res/drawable-mdpi/ic_emoji_object_activated_light.png and /dev/null differ diff --git a/res/drawable-mdpi/ic_emoji_object_normal_dark.png b/res/drawable-mdpi/ic_emoji_object_normal_dark.png deleted file mode 100644 index cdc756575..000000000 Binary files a/res/drawable-mdpi/ic_emoji_object_normal_dark.png and /dev/null differ diff --git a/res/drawable-mdpi/ic_emoji_object_normal_light.png b/res/drawable-mdpi/ic_emoji_object_normal_light.png deleted file mode 100644 index 6206af2b2..000000000 Binary files a/res/drawable-mdpi/ic_emoji_object_normal_light.png and /dev/null differ diff --git a/res/drawable-mdpi/ic_emoji_people_activated_dark.png b/res/drawable-mdpi/ic_emoji_people_activated_dark.png deleted file mode 100644 index 91cae22a7..000000000 Binary files a/res/drawable-mdpi/ic_emoji_people_activated_dark.png and /dev/null differ diff --git a/res/drawable-mdpi/ic_emoji_people_activated_light.png b/res/drawable-mdpi/ic_emoji_people_activated_light.png deleted file mode 100644 index 353a3100a..000000000 Binary files a/res/drawable-mdpi/ic_emoji_people_activated_light.png and /dev/null differ diff --git a/res/drawable-mdpi/ic_emoji_people_normal_dark.png b/res/drawable-mdpi/ic_emoji_people_normal_dark.png deleted file mode 100644 index 851df9e96..000000000 Binary files a/res/drawable-mdpi/ic_emoji_people_normal_dark.png and /dev/null differ diff --git a/res/drawable-mdpi/ic_emoji_people_normal_light.png b/res/drawable-mdpi/ic_emoji_people_normal_light.png deleted file mode 100644 index 91cae22a7..000000000 Binary files a/res/drawable-mdpi/ic_emoji_people_normal_light.png and /dev/null differ diff --git a/res/drawable-mdpi/ic_emoji_places_activated_dark.png b/res/drawable-mdpi/ic_emoji_places_activated_dark.png deleted file mode 100644 index ceab263b3..000000000 Binary files a/res/drawable-mdpi/ic_emoji_places_activated_dark.png and /dev/null differ diff --git a/res/drawable-mdpi/ic_emoji_places_activated_light.png b/res/drawable-mdpi/ic_emoji_places_activated_light.png deleted file mode 100644 index 23ae27f14..000000000 Binary files a/res/drawable-mdpi/ic_emoji_places_activated_light.png and /dev/null differ diff --git a/res/drawable-mdpi/ic_emoji_places_normal_dark.png b/res/drawable-mdpi/ic_emoji_places_normal_dark.png deleted file mode 100644 index 67f90d42f..000000000 Binary files a/res/drawable-mdpi/ic_emoji_places_normal_dark.png and /dev/null differ diff --git a/res/drawable-mdpi/ic_emoji_places_normal_light.png b/res/drawable-mdpi/ic_emoji_places_normal_light.png deleted file mode 100644 index ceab263b3..000000000 Binary files a/res/drawable-mdpi/ic_emoji_places_normal_light.png and /dev/null differ diff --git a/res/drawable-mdpi/ic_emoji_recents_activated_dark.png b/res/drawable-mdpi/ic_emoji_recents_activated_dark.png deleted file mode 100644 index 775f3d750..000000000 Binary files a/res/drawable-mdpi/ic_emoji_recents_activated_dark.png and /dev/null differ diff --git a/res/drawable-mdpi/ic_emoji_recents_activated_light.png b/res/drawable-mdpi/ic_emoji_recents_activated_light.png deleted file mode 100644 index 5fb21b2dd..000000000 Binary files a/res/drawable-mdpi/ic_emoji_recents_activated_light.png and /dev/null differ diff --git a/res/drawable-mdpi/ic_emoji_recents_normal_dark.png b/res/drawable-mdpi/ic_emoji_recents_normal_dark.png deleted file mode 100644 index 6c0b55107..000000000 Binary files a/res/drawable-mdpi/ic_emoji_recents_normal_dark.png and /dev/null differ diff --git a/res/drawable-mdpi/ic_emoji_recents_normal_light.png b/res/drawable-mdpi/ic_emoji_recents_normal_light.png deleted file mode 100644 index da20de7fa..000000000 Binary files a/res/drawable-mdpi/ic_emoji_recents_normal_light.png and /dev/null differ diff --git a/res/drawable-mdpi/ic_emoji_symbols_activated_dark.png b/res/drawable-mdpi/ic_emoji_symbols_activated_dark.png deleted file mode 100644 index 3aca48546..000000000 Binary files a/res/drawable-mdpi/ic_emoji_symbols_activated_dark.png and /dev/null differ diff --git a/res/drawable-mdpi/ic_emoji_symbols_activated_light.png b/res/drawable-mdpi/ic_emoji_symbols_activated_light.png deleted file mode 100644 index 3db7b5a0f..000000000 Binary files a/res/drawable-mdpi/ic_emoji_symbols_activated_light.png and /dev/null differ diff --git a/res/drawable-mdpi/ic_emoji_symbols_normal_dark.png b/res/drawable-mdpi/ic_emoji_symbols_normal_dark.png deleted file mode 100644 index aa56d6b40..000000000 Binary files a/res/drawable-mdpi/ic_emoji_symbols_normal_dark.png and /dev/null differ diff --git a/res/drawable-mdpi/ic_emoji_symbols_normal_light.png b/res/drawable-mdpi/ic_emoji_symbols_normal_light.png deleted file mode 100644 index 3aca48546..000000000 Binary files a/res/drawable-mdpi/ic_emoji_symbols_normal_light.png and /dev/null differ diff --git a/res/drawable-mdpi/transfer_controls_background.9.png b/res/drawable-mdpi/transfer_controls_background.9.png deleted file mode 100644 index 5e8b65b45..000000000 Binary files a/res/drawable-mdpi/transfer_controls_background.9.png and /dev/null differ diff --git a/res/drawable-v21/sticker_button_dark.xml b/res/drawable-v21/sticker_button_dark.xml new file mode 100644 index 000000000..bbd18b7e9 --- /dev/null +++ b/res/drawable-v21/sticker_button_dark.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + diff --git a/res/drawable-v21/sticker_button_light.xml b/res/drawable-v21/sticker_button_light.xml new file mode 100644 index 000000000..f20b4e89d --- /dev/null +++ b/res/drawable-v21/sticker_button_light.xml @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + diff --git a/res/drawable-xhdpi/ic_emoji_activity_activated_dark.png b/res/drawable-xhdpi/ic_emoji_activity_activated_dark.png deleted file mode 100644 index 1d04bc797..000000000 Binary files a/res/drawable-xhdpi/ic_emoji_activity_activated_dark.png and /dev/null differ diff --git a/res/drawable-xhdpi/ic_emoji_activity_activated_light.png b/res/drawable-xhdpi/ic_emoji_activity_activated_light.png deleted file mode 100644 index 7001af641..000000000 Binary files a/res/drawable-xhdpi/ic_emoji_activity_activated_light.png and /dev/null differ diff --git a/res/drawable-xhdpi/ic_emoji_activity_normal_dark.png b/res/drawable-xhdpi/ic_emoji_activity_normal_dark.png deleted file mode 100644 index 68b5d8d2f..000000000 Binary files a/res/drawable-xhdpi/ic_emoji_activity_normal_dark.png and /dev/null differ diff --git a/res/drawable-xhdpi/ic_emoji_activity_normal_light.png b/res/drawable-xhdpi/ic_emoji_activity_normal_light.png deleted file mode 100644 index 1d04bc797..000000000 Binary files a/res/drawable-xhdpi/ic_emoji_activity_normal_light.png and /dev/null differ diff --git a/res/drawable-xhdpi/ic_emoji_emoticons_activated_dark.png b/res/drawable-xhdpi/ic_emoji_emoticons_activated_dark.png deleted file mode 100644 index 4c75aa7cd..000000000 Binary files a/res/drawable-xhdpi/ic_emoji_emoticons_activated_dark.png and /dev/null differ diff --git a/res/drawable-xhdpi/ic_emoji_emoticons_activated_light.png b/res/drawable-xhdpi/ic_emoji_emoticons_activated_light.png deleted file mode 100644 index fa46ef2bf..000000000 Binary files a/res/drawable-xhdpi/ic_emoji_emoticons_activated_light.png and /dev/null differ diff --git a/res/drawable-xhdpi/ic_emoji_emoticons_normal_dark.png b/res/drawable-xhdpi/ic_emoji_emoticons_normal_dark.png deleted file mode 100644 index 3be4ee4aa..000000000 Binary files a/res/drawable-xhdpi/ic_emoji_emoticons_normal_dark.png and /dev/null differ diff --git a/res/drawable-xhdpi/ic_emoji_emoticons_normal_light.png b/res/drawable-xhdpi/ic_emoji_emoticons_normal_light.png deleted file mode 100644 index 21c3f5bdd..000000000 Binary files a/res/drawable-xhdpi/ic_emoji_emoticons_normal_light.png and /dev/null differ diff --git a/res/drawable-xhdpi/ic_emoji_flag_activated_dark.png b/res/drawable-xhdpi/ic_emoji_flag_activated_dark.png deleted file mode 100644 index 471d644f8..000000000 Binary files a/res/drawable-xhdpi/ic_emoji_flag_activated_dark.png and /dev/null differ diff --git a/res/drawable-xhdpi/ic_emoji_flag_activated_light.png b/res/drawable-xhdpi/ic_emoji_flag_activated_light.png deleted file mode 100644 index 58a1b7bf2..000000000 Binary files a/res/drawable-xhdpi/ic_emoji_flag_activated_light.png and /dev/null differ diff --git a/res/drawable-xhdpi/ic_emoji_flag_normal_dark.png b/res/drawable-xhdpi/ic_emoji_flag_normal_dark.png deleted file mode 100644 index 597de87f5..000000000 Binary files a/res/drawable-xhdpi/ic_emoji_flag_normal_dark.png and /dev/null differ diff --git a/res/drawable-xhdpi/ic_emoji_flag_normal_light.png b/res/drawable-xhdpi/ic_emoji_flag_normal_light.png deleted file mode 100644 index 471d644f8..000000000 Binary files a/res/drawable-xhdpi/ic_emoji_flag_normal_light.png and /dev/null differ diff --git a/res/drawable-xhdpi/ic_emoji_foods_activated_dark.png b/res/drawable-xhdpi/ic_emoji_foods_activated_dark.png deleted file mode 100644 index a49d4f55b..000000000 Binary files a/res/drawable-xhdpi/ic_emoji_foods_activated_dark.png and /dev/null differ diff --git a/res/drawable-xhdpi/ic_emoji_foods_activated_light.png b/res/drawable-xhdpi/ic_emoji_foods_activated_light.png deleted file mode 100644 index 8ad2915cc..000000000 Binary files a/res/drawable-xhdpi/ic_emoji_foods_activated_light.png and /dev/null differ diff --git a/res/drawable-xhdpi/ic_emoji_foods_normal_dark.png b/res/drawable-xhdpi/ic_emoji_foods_normal_dark.png deleted file mode 100644 index e1cac3ffc..000000000 Binary files a/res/drawable-xhdpi/ic_emoji_foods_normal_dark.png and /dev/null differ diff --git a/res/drawable-xhdpi/ic_emoji_foods_normal_light.png b/res/drawable-xhdpi/ic_emoji_foods_normal_light.png deleted file mode 100644 index a49d4f55b..000000000 Binary files a/res/drawable-xhdpi/ic_emoji_foods_normal_light.png and /dev/null differ diff --git a/res/drawable-xhdpi/ic_emoji_nature_activated_dark.png b/res/drawable-xhdpi/ic_emoji_nature_activated_dark.png deleted file mode 100644 index 0b409d57c..000000000 Binary files a/res/drawable-xhdpi/ic_emoji_nature_activated_dark.png and /dev/null differ diff --git a/res/drawable-xhdpi/ic_emoji_nature_activated_light.png b/res/drawable-xhdpi/ic_emoji_nature_activated_light.png deleted file mode 100644 index c4e2e9977..000000000 Binary files a/res/drawable-xhdpi/ic_emoji_nature_activated_light.png and /dev/null differ diff --git a/res/drawable-xhdpi/ic_emoji_nature_normal_dark.png b/res/drawable-xhdpi/ic_emoji_nature_normal_dark.png deleted file mode 100644 index 8bce78856..000000000 Binary files a/res/drawable-xhdpi/ic_emoji_nature_normal_dark.png and /dev/null differ diff --git a/res/drawable-xhdpi/ic_emoji_nature_normal_light.png b/res/drawable-xhdpi/ic_emoji_nature_normal_light.png deleted file mode 100644 index 0b409d57c..000000000 Binary files a/res/drawable-xhdpi/ic_emoji_nature_normal_light.png and /dev/null differ diff --git a/res/drawable-xhdpi/ic_emoji_object_activated_dark.png b/res/drawable-xhdpi/ic_emoji_object_activated_dark.png deleted file mode 100644 index e7afca3f6..000000000 Binary files a/res/drawable-xhdpi/ic_emoji_object_activated_dark.png and /dev/null differ diff --git a/res/drawable-xhdpi/ic_emoji_object_activated_light.png b/res/drawable-xhdpi/ic_emoji_object_activated_light.png deleted file mode 100644 index 1b51f9e12..000000000 Binary files a/res/drawable-xhdpi/ic_emoji_object_activated_light.png and /dev/null differ diff --git a/res/drawable-xhdpi/ic_emoji_object_normal_dark.png b/res/drawable-xhdpi/ic_emoji_object_normal_dark.png deleted file mode 100644 index 02e7ea6d4..000000000 Binary files a/res/drawable-xhdpi/ic_emoji_object_normal_dark.png and /dev/null differ diff --git a/res/drawable-xhdpi/ic_emoji_object_normal_light.png b/res/drawable-xhdpi/ic_emoji_object_normal_light.png deleted file mode 100644 index e7afca3f6..000000000 Binary files a/res/drawable-xhdpi/ic_emoji_object_normal_light.png and /dev/null differ diff --git a/res/drawable-xhdpi/ic_emoji_people_activated_dark.png b/res/drawable-xhdpi/ic_emoji_people_activated_dark.png deleted file mode 100644 index 693a1c69f..000000000 Binary files a/res/drawable-xhdpi/ic_emoji_people_activated_dark.png and /dev/null differ diff --git a/res/drawable-xhdpi/ic_emoji_people_activated_light.png b/res/drawable-xhdpi/ic_emoji_people_activated_light.png deleted file mode 100644 index 6ae3d264c..000000000 Binary files a/res/drawable-xhdpi/ic_emoji_people_activated_light.png and /dev/null differ diff --git a/res/drawable-xhdpi/ic_emoji_people_normal_dark.png b/res/drawable-xhdpi/ic_emoji_people_normal_dark.png deleted file mode 100644 index fe91469aa..000000000 Binary files a/res/drawable-xhdpi/ic_emoji_people_normal_dark.png and /dev/null differ diff --git a/res/drawable-xhdpi/ic_emoji_people_normal_light.png b/res/drawable-xhdpi/ic_emoji_people_normal_light.png deleted file mode 100644 index 693a1c69f..000000000 Binary files a/res/drawable-xhdpi/ic_emoji_people_normal_light.png and /dev/null differ diff --git a/res/drawable-xhdpi/ic_emoji_places_activated_dark.png b/res/drawable-xhdpi/ic_emoji_places_activated_dark.png deleted file mode 100644 index 0b368d62f..000000000 Binary files a/res/drawable-xhdpi/ic_emoji_places_activated_dark.png and /dev/null differ diff --git a/res/drawable-xhdpi/ic_emoji_places_activated_light.png b/res/drawable-xhdpi/ic_emoji_places_activated_light.png deleted file mode 100644 index d4c49d78f..000000000 Binary files a/res/drawable-xhdpi/ic_emoji_places_activated_light.png and /dev/null differ diff --git a/res/drawable-xhdpi/ic_emoji_places_normal_dark.png b/res/drawable-xhdpi/ic_emoji_places_normal_dark.png deleted file mode 100644 index fc67497e1..000000000 Binary files a/res/drawable-xhdpi/ic_emoji_places_normal_dark.png and /dev/null differ diff --git a/res/drawable-xhdpi/ic_emoji_places_normal_light.png b/res/drawable-xhdpi/ic_emoji_places_normal_light.png deleted file mode 100644 index 0b368d62f..000000000 Binary files a/res/drawable-xhdpi/ic_emoji_places_normal_light.png and /dev/null differ diff --git a/res/drawable-xhdpi/ic_emoji_recents_activated_dark.png b/res/drawable-xhdpi/ic_emoji_recents_activated_dark.png deleted file mode 100644 index 944a180fe..000000000 Binary files a/res/drawable-xhdpi/ic_emoji_recents_activated_dark.png and /dev/null differ diff --git a/res/drawable-xhdpi/ic_emoji_recents_activated_light.png b/res/drawable-xhdpi/ic_emoji_recents_activated_light.png deleted file mode 100644 index 0b07c84a6..000000000 Binary files a/res/drawable-xhdpi/ic_emoji_recents_activated_light.png and /dev/null differ diff --git a/res/drawable-xhdpi/ic_emoji_recents_normal_dark.png b/res/drawable-xhdpi/ic_emoji_recents_normal_dark.png deleted file mode 100644 index adcc1ace4..000000000 Binary files a/res/drawable-xhdpi/ic_emoji_recents_normal_dark.png and /dev/null differ diff --git a/res/drawable-xhdpi/ic_emoji_recents_normal_light.png b/res/drawable-xhdpi/ic_emoji_recents_normal_light.png deleted file mode 100644 index 4dd87fe53..000000000 Binary files a/res/drawable-xhdpi/ic_emoji_recents_normal_light.png and /dev/null differ diff --git a/res/drawable-xhdpi/ic_emoji_symbols_activated_dark.png b/res/drawable-xhdpi/ic_emoji_symbols_activated_dark.png deleted file mode 100644 index a28e4a84a..000000000 Binary files a/res/drawable-xhdpi/ic_emoji_symbols_activated_dark.png and /dev/null differ diff --git a/res/drawable-xhdpi/ic_emoji_symbols_activated_light.png b/res/drawable-xhdpi/ic_emoji_symbols_activated_light.png deleted file mode 100644 index a6f6ebc4e..000000000 Binary files a/res/drawable-xhdpi/ic_emoji_symbols_activated_light.png and /dev/null differ diff --git a/res/drawable-xhdpi/ic_emoji_symbols_normal_dark.png b/res/drawable-xhdpi/ic_emoji_symbols_normal_dark.png deleted file mode 100644 index 7c016ef66..000000000 Binary files a/res/drawable-xhdpi/ic_emoji_symbols_normal_dark.png and /dev/null differ diff --git a/res/drawable-xhdpi/ic_emoji_symbols_normal_light.png b/res/drawable-xhdpi/ic_emoji_symbols_normal_light.png deleted file mode 100644 index a28e4a84a..000000000 Binary files a/res/drawable-xhdpi/ic_emoji_symbols_normal_light.png and /dev/null differ diff --git a/res/drawable-xhdpi/transfer_controls_background.9.png b/res/drawable-xhdpi/transfer_controls_background.9.png deleted file mode 100644 index 3721dc520..000000000 Binary files a/res/drawable-xhdpi/transfer_controls_background.9.png and /dev/null differ diff --git a/res/drawable-xxhdpi/ic_emoji_activity_activated_dark.png b/res/drawable-xxhdpi/ic_emoji_activity_activated_dark.png deleted file mode 100644 index 5cf9101c0..000000000 Binary files a/res/drawable-xxhdpi/ic_emoji_activity_activated_dark.png and /dev/null differ diff --git a/res/drawable-xxhdpi/ic_emoji_activity_activated_light.png b/res/drawable-xxhdpi/ic_emoji_activity_activated_light.png deleted file mode 100644 index 76a4aebe5..000000000 Binary files a/res/drawable-xxhdpi/ic_emoji_activity_activated_light.png and /dev/null differ diff --git a/res/drawable-xxhdpi/ic_emoji_activity_normal_dark.png b/res/drawable-xxhdpi/ic_emoji_activity_normal_dark.png deleted file mode 100644 index 6d90599b1..000000000 Binary files a/res/drawable-xxhdpi/ic_emoji_activity_normal_dark.png and /dev/null differ diff --git a/res/drawable-xxhdpi/ic_emoji_activity_normal_light.png b/res/drawable-xxhdpi/ic_emoji_activity_normal_light.png deleted file mode 100644 index 5cf9101c0..000000000 Binary files a/res/drawable-xxhdpi/ic_emoji_activity_normal_light.png and /dev/null differ diff --git a/res/drawable-xxhdpi/ic_emoji_emoticons_activated_dark.png b/res/drawable-xxhdpi/ic_emoji_emoticons_activated_dark.png deleted file mode 100644 index e2ec29d53..000000000 Binary files a/res/drawable-xxhdpi/ic_emoji_emoticons_activated_dark.png and /dev/null differ diff --git a/res/drawable-xxhdpi/ic_emoji_emoticons_activated_light.png b/res/drawable-xxhdpi/ic_emoji_emoticons_activated_light.png deleted file mode 100644 index 012700f0b..000000000 Binary files a/res/drawable-xxhdpi/ic_emoji_emoticons_activated_light.png and /dev/null differ diff --git a/res/drawable-xxhdpi/ic_emoji_emoticons_normal_dark.png b/res/drawable-xxhdpi/ic_emoji_emoticons_normal_dark.png deleted file mode 100644 index f4487745b..000000000 Binary files a/res/drawable-xxhdpi/ic_emoji_emoticons_normal_dark.png and /dev/null differ diff --git a/res/drawable-xxhdpi/ic_emoji_emoticons_normal_light.png b/res/drawable-xxhdpi/ic_emoji_emoticons_normal_light.png deleted file mode 100644 index 20c1fcde7..000000000 Binary files a/res/drawable-xxhdpi/ic_emoji_emoticons_normal_light.png and /dev/null differ diff --git a/res/drawable-xxhdpi/ic_emoji_flag_activated_dark.png b/res/drawable-xxhdpi/ic_emoji_flag_activated_dark.png deleted file mode 100644 index 5797242bc..000000000 Binary files a/res/drawable-xxhdpi/ic_emoji_flag_activated_dark.png and /dev/null differ diff --git a/res/drawable-xxhdpi/ic_emoji_flag_activated_light.png b/res/drawable-xxhdpi/ic_emoji_flag_activated_light.png deleted file mode 100644 index adf73cf40..000000000 Binary files a/res/drawable-xxhdpi/ic_emoji_flag_activated_light.png and /dev/null differ diff --git a/res/drawable-xxhdpi/ic_emoji_flag_normal_dark.png b/res/drawable-xxhdpi/ic_emoji_flag_normal_dark.png deleted file mode 100644 index 47f75e2ca..000000000 Binary files a/res/drawable-xxhdpi/ic_emoji_flag_normal_dark.png and /dev/null differ diff --git a/res/drawable-xxhdpi/ic_emoji_flag_normal_light.png b/res/drawable-xxhdpi/ic_emoji_flag_normal_light.png deleted file mode 100644 index 5797242bc..000000000 Binary files a/res/drawable-xxhdpi/ic_emoji_flag_normal_light.png and /dev/null differ diff --git a/res/drawable-xxhdpi/ic_emoji_foods_activated_dark.png b/res/drawable-xxhdpi/ic_emoji_foods_activated_dark.png deleted file mode 100644 index 8a0be6d50..000000000 Binary files a/res/drawable-xxhdpi/ic_emoji_foods_activated_dark.png and /dev/null differ diff --git a/res/drawable-xxhdpi/ic_emoji_foods_activated_light.png b/res/drawable-xxhdpi/ic_emoji_foods_activated_light.png deleted file mode 100644 index 784f603a5..000000000 Binary files a/res/drawable-xxhdpi/ic_emoji_foods_activated_light.png and /dev/null differ diff --git a/res/drawable-xxhdpi/ic_emoji_foods_normal_dark.png b/res/drawable-xxhdpi/ic_emoji_foods_normal_dark.png deleted file mode 100644 index ed5571a88..000000000 Binary files a/res/drawable-xxhdpi/ic_emoji_foods_normal_dark.png and /dev/null differ diff --git a/res/drawable-xxhdpi/ic_emoji_foods_normal_light.png b/res/drawable-xxhdpi/ic_emoji_foods_normal_light.png deleted file mode 100644 index 8a0be6d50..000000000 Binary files a/res/drawable-xxhdpi/ic_emoji_foods_normal_light.png and /dev/null differ diff --git a/res/drawable-xxhdpi/ic_emoji_nature_activated_dark.png b/res/drawable-xxhdpi/ic_emoji_nature_activated_dark.png deleted file mode 100644 index 15214246c..000000000 Binary files a/res/drawable-xxhdpi/ic_emoji_nature_activated_dark.png and /dev/null differ diff --git a/res/drawable-xxhdpi/ic_emoji_nature_activated_light.png b/res/drawable-xxhdpi/ic_emoji_nature_activated_light.png deleted file mode 100644 index 65947ba06..000000000 Binary files a/res/drawable-xxhdpi/ic_emoji_nature_activated_light.png and /dev/null differ diff --git a/res/drawable-xxhdpi/ic_emoji_nature_normal_dark.png b/res/drawable-xxhdpi/ic_emoji_nature_normal_dark.png deleted file mode 100644 index 12a2324fd..000000000 Binary files a/res/drawable-xxhdpi/ic_emoji_nature_normal_dark.png and /dev/null differ diff --git a/res/drawable-xxhdpi/ic_emoji_nature_normal_light.png b/res/drawable-xxhdpi/ic_emoji_nature_normal_light.png deleted file mode 100644 index 15214246c..000000000 Binary files a/res/drawable-xxhdpi/ic_emoji_nature_normal_light.png and /dev/null differ diff --git a/res/drawable-xxhdpi/ic_emoji_object_activated_dark.png b/res/drawable-xxhdpi/ic_emoji_object_activated_dark.png deleted file mode 100644 index 41b8604be..000000000 Binary files a/res/drawable-xxhdpi/ic_emoji_object_activated_dark.png and /dev/null differ diff --git a/res/drawable-xxhdpi/ic_emoji_object_activated_light.png b/res/drawable-xxhdpi/ic_emoji_object_activated_light.png deleted file mode 100644 index 1979f6513..000000000 Binary files a/res/drawable-xxhdpi/ic_emoji_object_activated_light.png and /dev/null differ diff --git a/res/drawable-xxhdpi/ic_emoji_object_normal_dark.png b/res/drawable-xxhdpi/ic_emoji_object_normal_dark.png deleted file mode 100644 index 671eef827..000000000 Binary files a/res/drawable-xxhdpi/ic_emoji_object_normal_dark.png and /dev/null differ diff --git a/res/drawable-xxhdpi/ic_emoji_object_normal_light.png b/res/drawable-xxhdpi/ic_emoji_object_normal_light.png deleted file mode 100644 index 41b8604be..000000000 Binary files a/res/drawable-xxhdpi/ic_emoji_object_normal_light.png and /dev/null differ diff --git a/res/drawable-xxhdpi/ic_emoji_people_activated_dark.png b/res/drawable-xxhdpi/ic_emoji_people_activated_dark.png deleted file mode 100644 index 40753d285..000000000 Binary files a/res/drawable-xxhdpi/ic_emoji_people_activated_dark.png and /dev/null differ diff --git a/res/drawable-xxhdpi/ic_emoji_people_activated_light.png b/res/drawable-xxhdpi/ic_emoji_people_activated_light.png deleted file mode 100644 index 2b6ed0c16..000000000 Binary files a/res/drawable-xxhdpi/ic_emoji_people_activated_light.png and /dev/null differ diff --git a/res/drawable-xxhdpi/ic_emoji_people_normal_dark.png b/res/drawable-xxhdpi/ic_emoji_people_normal_dark.png deleted file mode 100644 index 72df107d8..000000000 Binary files a/res/drawable-xxhdpi/ic_emoji_people_normal_dark.png and /dev/null differ diff --git a/res/drawable-xxhdpi/ic_emoji_people_normal_light.png b/res/drawable-xxhdpi/ic_emoji_people_normal_light.png deleted file mode 100644 index 40753d285..000000000 Binary files a/res/drawable-xxhdpi/ic_emoji_people_normal_light.png and /dev/null differ diff --git a/res/drawable-xxhdpi/ic_emoji_places_activated_dark.png b/res/drawable-xxhdpi/ic_emoji_places_activated_dark.png deleted file mode 100644 index 9ae9fc7b2..000000000 Binary files a/res/drawable-xxhdpi/ic_emoji_places_activated_dark.png and /dev/null differ diff --git a/res/drawable-xxhdpi/ic_emoji_places_activated_light.png b/res/drawable-xxhdpi/ic_emoji_places_activated_light.png deleted file mode 100644 index a7fafaec6..000000000 Binary files a/res/drawable-xxhdpi/ic_emoji_places_activated_light.png and /dev/null differ diff --git a/res/drawable-xxhdpi/ic_emoji_places_normal_dark.png b/res/drawable-xxhdpi/ic_emoji_places_normal_dark.png deleted file mode 100644 index dbdbd9e0c..000000000 Binary files a/res/drawable-xxhdpi/ic_emoji_places_normal_dark.png and /dev/null differ diff --git a/res/drawable-xxhdpi/ic_emoji_places_normal_light.png b/res/drawable-xxhdpi/ic_emoji_places_normal_light.png deleted file mode 100644 index 9ae9fc7b2..000000000 Binary files a/res/drawable-xxhdpi/ic_emoji_places_normal_light.png and /dev/null differ diff --git a/res/drawable-xxhdpi/ic_emoji_recents_activated_dark.png b/res/drawable-xxhdpi/ic_emoji_recents_activated_dark.png deleted file mode 100644 index 8c4a00a7d..000000000 Binary files a/res/drawable-xxhdpi/ic_emoji_recents_activated_dark.png and /dev/null differ diff --git a/res/drawable-xxhdpi/ic_emoji_recents_activated_light.png b/res/drawable-xxhdpi/ic_emoji_recents_activated_light.png deleted file mode 100644 index 94d7cd05c..000000000 Binary files a/res/drawable-xxhdpi/ic_emoji_recents_activated_light.png and /dev/null differ diff --git a/res/drawable-xxhdpi/ic_emoji_recents_normal_dark.png b/res/drawable-xxhdpi/ic_emoji_recents_normal_dark.png deleted file mode 100644 index 651dc5cc0..000000000 Binary files a/res/drawable-xxhdpi/ic_emoji_recents_normal_dark.png and /dev/null differ diff --git a/res/drawable-xxhdpi/ic_emoji_recents_normal_light.png b/res/drawable-xxhdpi/ic_emoji_recents_normal_light.png deleted file mode 100644 index 9988097d2..000000000 Binary files a/res/drawable-xxhdpi/ic_emoji_recents_normal_light.png and /dev/null differ diff --git a/res/drawable-xxhdpi/ic_emoji_symbols_activated_dark.png b/res/drawable-xxhdpi/ic_emoji_symbols_activated_dark.png deleted file mode 100644 index 780b6397d..000000000 Binary files a/res/drawable-xxhdpi/ic_emoji_symbols_activated_dark.png and /dev/null differ diff --git a/res/drawable-xxhdpi/ic_emoji_symbols_activated_light.png b/res/drawable-xxhdpi/ic_emoji_symbols_activated_light.png deleted file mode 100644 index 2cb85bbd8..000000000 Binary files a/res/drawable-xxhdpi/ic_emoji_symbols_activated_light.png and /dev/null differ diff --git a/res/drawable-xxhdpi/ic_emoji_symbols_normal_dark.png b/res/drawable-xxhdpi/ic_emoji_symbols_normal_dark.png deleted file mode 100644 index fc6090071..000000000 Binary files a/res/drawable-xxhdpi/ic_emoji_symbols_normal_dark.png and /dev/null differ diff --git a/res/drawable-xxhdpi/ic_emoji_symbols_normal_light.png b/res/drawable-xxhdpi/ic_emoji_symbols_normal_light.png deleted file mode 100644 index 780b6397d..000000000 Binary files a/res/drawable-xxhdpi/ic_emoji_symbols_normal_light.png and /dev/null differ diff --git a/res/drawable-xxhdpi/transfer_controls_background.9.png b/res/drawable-xxhdpi/transfer_controls_background.9.png deleted file mode 100644 index 0fa81940c..000000000 Binary files a/res/drawable-xxhdpi/transfer_controls_background.9.png and /dev/null differ diff --git a/res/drawable-xxxhdpi/ic_emoji_activity_activated_dark.png b/res/drawable-xxxhdpi/ic_emoji_activity_activated_dark.png deleted file mode 100644 index b2c61c6bd..000000000 Binary files a/res/drawable-xxxhdpi/ic_emoji_activity_activated_dark.png and /dev/null differ diff --git a/res/drawable-xxxhdpi/ic_emoji_activity_activated_light.png b/res/drawable-xxxhdpi/ic_emoji_activity_activated_light.png deleted file mode 100644 index 3196e256a..000000000 Binary files a/res/drawable-xxxhdpi/ic_emoji_activity_activated_light.png and /dev/null differ diff --git a/res/drawable-xxxhdpi/ic_emoji_activity_normal_dark.png b/res/drawable-xxxhdpi/ic_emoji_activity_normal_dark.png deleted file mode 100644 index 6745d84e5..000000000 Binary files a/res/drawable-xxxhdpi/ic_emoji_activity_normal_dark.png and /dev/null differ diff --git a/res/drawable-xxxhdpi/ic_emoji_activity_normal_light.png b/res/drawable-xxxhdpi/ic_emoji_activity_normal_light.png deleted file mode 100644 index b2c61c6bd..000000000 Binary files a/res/drawable-xxxhdpi/ic_emoji_activity_normal_light.png and /dev/null differ diff --git a/res/drawable-xxxhdpi/ic_emoji_flag_activated_dark.png b/res/drawable-xxxhdpi/ic_emoji_flag_activated_dark.png deleted file mode 100644 index dced7d638..000000000 Binary files a/res/drawable-xxxhdpi/ic_emoji_flag_activated_dark.png and /dev/null differ diff --git a/res/drawable-xxxhdpi/ic_emoji_flag_activated_light.png b/res/drawable-xxxhdpi/ic_emoji_flag_activated_light.png deleted file mode 100644 index 678adf4d2..000000000 Binary files a/res/drawable-xxxhdpi/ic_emoji_flag_activated_light.png and /dev/null differ diff --git a/res/drawable-xxxhdpi/ic_emoji_flag_normal_dark.png b/res/drawable-xxxhdpi/ic_emoji_flag_normal_dark.png deleted file mode 100644 index c69c5c3e8..000000000 Binary files a/res/drawable-xxxhdpi/ic_emoji_flag_normal_dark.png and /dev/null differ diff --git a/res/drawable-xxxhdpi/ic_emoji_flag_normal_light.png b/res/drawable-xxxhdpi/ic_emoji_flag_normal_light.png deleted file mode 100644 index dced7d638..000000000 Binary files a/res/drawable-xxxhdpi/ic_emoji_flag_normal_light.png and /dev/null differ diff --git a/res/drawable-xxxhdpi/ic_emoji_foods_activated_dark.png b/res/drawable-xxxhdpi/ic_emoji_foods_activated_dark.png deleted file mode 100644 index 39455b4fc..000000000 Binary files a/res/drawable-xxxhdpi/ic_emoji_foods_activated_dark.png and /dev/null differ diff --git a/res/drawable-xxxhdpi/ic_emoji_foods_activated_light.png b/res/drawable-xxxhdpi/ic_emoji_foods_activated_light.png deleted file mode 100644 index 662dbac2b..000000000 Binary files a/res/drawable-xxxhdpi/ic_emoji_foods_activated_light.png and /dev/null differ diff --git a/res/drawable-xxxhdpi/ic_emoji_foods_normal_dark.png b/res/drawable-xxxhdpi/ic_emoji_foods_normal_dark.png deleted file mode 100644 index c2b243232..000000000 Binary files a/res/drawable-xxxhdpi/ic_emoji_foods_normal_dark.png and /dev/null differ diff --git a/res/drawable-xxxhdpi/ic_emoji_foods_normal_light.png b/res/drawable-xxxhdpi/ic_emoji_foods_normal_light.png deleted file mode 100644 index 39455b4fc..000000000 Binary files a/res/drawable-xxxhdpi/ic_emoji_foods_normal_light.png and /dev/null differ diff --git a/res/drawable-xxxhdpi/ic_emoji_nature_activated_dark.png b/res/drawable-xxxhdpi/ic_emoji_nature_activated_dark.png deleted file mode 100644 index e9106a7c4..000000000 Binary files a/res/drawable-xxxhdpi/ic_emoji_nature_activated_dark.png and /dev/null differ diff --git a/res/drawable-xxxhdpi/ic_emoji_nature_activated_light.png b/res/drawable-xxxhdpi/ic_emoji_nature_activated_light.png deleted file mode 100644 index 9d3e7d4de..000000000 Binary files a/res/drawable-xxxhdpi/ic_emoji_nature_activated_light.png and /dev/null differ diff --git a/res/drawable-xxxhdpi/ic_emoji_nature_normal_dark.png b/res/drawable-xxxhdpi/ic_emoji_nature_normal_dark.png deleted file mode 100644 index 2e8d68435..000000000 Binary files a/res/drawable-xxxhdpi/ic_emoji_nature_normal_dark.png and /dev/null differ diff --git a/res/drawable-xxxhdpi/ic_emoji_nature_normal_light.png b/res/drawable-xxxhdpi/ic_emoji_nature_normal_light.png deleted file mode 100644 index e9106a7c4..000000000 Binary files a/res/drawable-xxxhdpi/ic_emoji_nature_normal_light.png and /dev/null differ diff --git a/res/drawable-xxxhdpi/ic_emoji_object_activated_dark.png b/res/drawable-xxxhdpi/ic_emoji_object_activated_dark.png deleted file mode 100644 index 841e9f12e..000000000 Binary files a/res/drawable-xxxhdpi/ic_emoji_object_activated_dark.png and /dev/null differ diff --git a/res/drawable-xxxhdpi/ic_emoji_object_activated_light.png b/res/drawable-xxxhdpi/ic_emoji_object_activated_light.png deleted file mode 100644 index 21bcb25ad..000000000 Binary files a/res/drawable-xxxhdpi/ic_emoji_object_activated_light.png and /dev/null differ diff --git a/res/drawable-xxxhdpi/ic_emoji_object_normal_dark.png b/res/drawable-xxxhdpi/ic_emoji_object_normal_dark.png deleted file mode 100644 index 5541e5b84..000000000 Binary files a/res/drawable-xxxhdpi/ic_emoji_object_normal_dark.png and /dev/null differ diff --git a/res/drawable-xxxhdpi/ic_emoji_object_normal_light.png b/res/drawable-xxxhdpi/ic_emoji_object_normal_light.png deleted file mode 100644 index 841e9f12e..000000000 Binary files a/res/drawable-xxxhdpi/ic_emoji_object_normal_light.png and /dev/null differ diff --git a/res/drawable-xxxhdpi/ic_emoji_people_activated_dark.png b/res/drawable-xxxhdpi/ic_emoji_people_activated_dark.png deleted file mode 100644 index daa4020ce..000000000 Binary files a/res/drawable-xxxhdpi/ic_emoji_people_activated_dark.png and /dev/null differ diff --git a/res/drawable-xxxhdpi/ic_emoji_people_activated_light.png b/res/drawable-xxxhdpi/ic_emoji_people_activated_light.png deleted file mode 100644 index eac554f53..000000000 Binary files a/res/drawable-xxxhdpi/ic_emoji_people_activated_light.png and /dev/null differ diff --git a/res/drawable-xxxhdpi/ic_emoji_people_normal_dark.png b/res/drawable-xxxhdpi/ic_emoji_people_normal_dark.png deleted file mode 100644 index e093154a7..000000000 Binary files a/res/drawable-xxxhdpi/ic_emoji_people_normal_dark.png and /dev/null differ diff --git a/res/drawable-xxxhdpi/ic_emoji_people_normal_light.png b/res/drawable-xxxhdpi/ic_emoji_people_normal_light.png deleted file mode 100644 index daa4020ce..000000000 Binary files a/res/drawable-xxxhdpi/ic_emoji_people_normal_light.png and /dev/null differ diff --git a/res/drawable-xxxhdpi/ic_emoji_places_activated_dark.png b/res/drawable-xxxhdpi/ic_emoji_places_activated_dark.png deleted file mode 100644 index 1953371c4..000000000 Binary files a/res/drawable-xxxhdpi/ic_emoji_places_activated_dark.png and /dev/null differ diff --git a/res/drawable-xxxhdpi/ic_emoji_places_activated_light.png b/res/drawable-xxxhdpi/ic_emoji_places_activated_light.png deleted file mode 100644 index 27f4935a3..000000000 Binary files a/res/drawable-xxxhdpi/ic_emoji_places_activated_light.png and /dev/null differ diff --git a/res/drawable-xxxhdpi/ic_emoji_places_normal_dark.png b/res/drawable-xxxhdpi/ic_emoji_places_normal_dark.png deleted file mode 100644 index 4088e5000..000000000 Binary files a/res/drawable-xxxhdpi/ic_emoji_places_normal_dark.png and /dev/null differ diff --git a/res/drawable-xxxhdpi/ic_emoji_places_normal_light.png b/res/drawable-xxxhdpi/ic_emoji_places_normal_light.png deleted file mode 100644 index 1953371c4..000000000 Binary files a/res/drawable-xxxhdpi/ic_emoji_places_normal_light.png and /dev/null differ diff --git a/res/drawable-xxxhdpi/ic_emoji_symbols_activated_dark.png b/res/drawable-xxxhdpi/ic_emoji_symbols_activated_dark.png deleted file mode 100644 index 062f03133..000000000 Binary files a/res/drawable-xxxhdpi/ic_emoji_symbols_activated_dark.png and /dev/null differ diff --git a/res/drawable-xxxhdpi/ic_emoji_symbols_activated_light.png b/res/drawable-xxxhdpi/ic_emoji_symbols_activated_light.png deleted file mode 100644 index eecad2793..000000000 Binary files a/res/drawable-xxxhdpi/ic_emoji_symbols_activated_light.png and /dev/null differ diff --git a/res/drawable-xxxhdpi/ic_emoji_symbols_normal_dark.png b/res/drawable-xxxhdpi/ic_emoji_symbols_normal_dark.png deleted file mode 100644 index 86152fa22..000000000 Binary files a/res/drawable-xxxhdpi/ic_emoji_symbols_normal_dark.png and /dev/null differ diff --git a/res/drawable-xxxhdpi/ic_emoji_symbols_normal_light.png b/res/drawable-xxxhdpi/ic_emoji_symbols_normal_light.png deleted file mode 100644 index 062f03133..000000000 Binary files a/res/drawable-xxxhdpi/ic_emoji_symbols_normal_light.png and /dev/null differ diff --git a/res/drawable-xxxhdpi/transfer_controls_background.9.png b/res/drawable-xxxhdpi/transfer_controls_background.9.png deleted file mode 100644 index e349e7405..000000000 Binary files a/res/drawable-xxxhdpi/transfer_controls_background.9.png and /dev/null differ diff --git a/res/drawable/emoji_category_activity_dark.xml b/res/drawable/emoji_category_activity_dark.xml deleted file mode 100644 index 84269ce56..000000000 --- a/res/drawable/emoji_category_activity_dark.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - diff --git a/res/drawable/emoji_category_activity_light.xml b/res/drawable/emoji_category_activity_light.xml deleted file mode 100644 index befeb3138..000000000 --- a/res/drawable/emoji_category_activity_light.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - diff --git a/res/drawable/emoji_category_emoticons_dark.xml b/res/drawable/emoji_category_emoticons_dark.xml deleted file mode 100644 index 3209fe544..000000000 --- a/res/drawable/emoji_category_emoticons_dark.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - diff --git a/res/drawable/emoji_category_emoticons_light.xml b/res/drawable/emoji_category_emoticons_light.xml deleted file mode 100644 index 8777fb389..000000000 --- a/res/drawable/emoji_category_emoticons_light.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - diff --git a/res/drawable/emoji_category_flags_dark.xml b/res/drawable/emoji_category_flags_dark.xml deleted file mode 100644 index 41416774f..000000000 --- a/res/drawable/emoji_category_flags_dark.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - diff --git a/res/drawable/emoji_category_flags_light.xml b/res/drawable/emoji_category_flags_light.xml deleted file mode 100644 index 2f61d042d..000000000 --- a/res/drawable/emoji_category_flags_light.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - diff --git a/res/drawable/emoji_category_foods_dark.xml b/res/drawable/emoji_category_foods_dark.xml deleted file mode 100644 index 650de4343..000000000 --- a/res/drawable/emoji_category_foods_dark.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - diff --git a/res/drawable/emoji_category_foods_light.xml b/res/drawable/emoji_category_foods_light.xml deleted file mode 100644 index 475bd2135..000000000 --- a/res/drawable/emoji_category_foods_light.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - diff --git a/res/drawable/emoji_category_nature_dark.xml b/res/drawable/emoji_category_nature_dark.xml deleted file mode 100644 index e54e35885..000000000 --- a/res/drawable/emoji_category_nature_dark.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - diff --git a/res/drawable/emoji_category_nature_light.xml b/res/drawable/emoji_category_nature_light.xml deleted file mode 100644 index f21883347..000000000 --- a/res/drawable/emoji_category_nature_light.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - diff --git a/res/drawable/emoji_category_objects_dark.xml b/res/drawable/emoji_category_objects_dark.xml deleted file mode 100644 index 3eb67ce51..000000000 --- a/res/drawable/emoji_category_objects_dark.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - diff --git a/res/drawable/emoji_category_objects_light.xml b/res/drawable/emoji_category_objects_light.xml deleted file mode 100644 index 83421c32c..000000000 --- a/res/drawable/emoji_category_objects_light.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - diff --git a/res/drawable/emoji_category_people_dark.xml b/res/drawable/emoji_category_people_dark.xml deleted file mode 100644 index 8ffc79c28..000000000 --- a/res/drawable/emoji_category_people_dark.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - diff --git a/res/drawable/emoji_category_people_light.xml b/res/drawable/emoji_category_people_light.xml deleted file mode 100644 index 639af154c..000000000 --- a/res/drawable/emoji_category_people_light.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - diff --git a/res/drawable/emoji_category_places_dark.xml b/res/drawable/emoji_category_places_dark.xml deleted file mode 100644 index fa6249258..000000000 --- a/res/drawable/emoji_category_places_dark.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - diff --git a/res/drawable/emoji_category_places_light.xml b/res/drawable/emoji_category_places_light.xml deleted file mode 100644 index 51d7a8a87..000000000 --- a/res/drawable/emoji_category_places_light.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - - diff --git a/res/drawable/emoji_category_recent_dark.xml b/res/drawable/emoji_category_recent_dark.xml deleted file mode 100644 index 5d8581dba..000000000 --- a/res/drawable/emoji_category_recent_dark.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - diff --git a/res/drawable/emoji_category_recent_light.xml b/res/drawable/emoji_category_recent_light.xml deleted file mode 100644 index ea5c1cc77..000000000 --- a/res/drawable/emoji_category_recent_light.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - diff --git a/res/drawable/emoji_category_symbol_dark.xml b/res/drawable/emoji_category_symbol_dark.xml deleted file mode 100644 index e98cbee84..000000000 --- a/res/drawable/emoji_category_symbol_dark.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - diff --git a/res/drawable/emoji_category_symbol_light.xml b/res/drawable/emoji_category_symbol_light.xml deleted file mode 100644 index d3cc7c8fb..000000000 --- a/res/drawable/emoji_category_symbol_light.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - diff --git a/res/drawable/ic_arrow_down.xml b/res/drawable/ic_arrow_down.xml new file mode 100644 index 000000000..2afc61365 --- /dev/null +++ b/res/drawable/ic_arrow_down.xml @@ -0,0 +1,9 @@ + + + diff --git a/res/drawable/ic_arrow_down_circle_filled.xml b/res/drawable/ic_arrow_down_circle_filled.xml new file mode 100644 index 000000000..be0bc5b4a --- /dev/null +++ b/res/drawable/ic_arrow_down_circle_filled.xml @@ -0,0 +1,9 @@ + + + diff --git a/res/drawable/ic_emoji_activity_dark_20.xml b/res/drawable/ic_emoji_activity_dark_20.xml new file mode 100644 index 000000000..7772677cd --- /dev/null +++ b/res/drawable/ic_emoji_activity_dark_20.xml @@ -0,0 +1,9 @@ + + + diff --git a/res/drawable/ic_emoji_activity_light_20.xml b/res/drawable/ic_emoji_activity_light_20.xml new file mode 100644 index 000000000..809d801ee --- /dev/null +++ b/res/drawable/ic_emoji_activity_light_20.xml @@ -0,0 +1,9 @@ + + + diff --git a/res/drawable/ic_emoji_animal_dark_20.xml b/res/drawable/ic_emoji_animal_dark_20.xml new file mode 100644 index 000000000..8ddbc2e12 --- /dev/null +++ b/res/drawable/ic_emoji_animal_dark_20.xml @@ -0,0 +1,9 @@ + + + diff --git a/res/drawable/ic_emoji_animal_light_20.xml b/res/drawable/ic_emoji_animal_light_20.xml new file mode 100644 index 000000000..63f2f9e10 --- /dev/null +++ b/res/drawable/ic_emoji_animal_light_20.xml @@ -0,0 +1,9 @@ + + + diff --git a/res/drawable/ic_emoji_emoticon_dark_20.xml b/res/drawable/ic_emoji_emoticon_dark_20.xml new file mode 100644 index 000000000..6a1b096cc --- /dev/null +++ b/res/drawable/ic_emoji_emoticon_dark_20.xml @@ -0,0 +1,9 @@ + + + diff --git a/res/drawable/ic_emoji_emoticon_light_20.xml b/res/drawable/ic_emoji_emoticon_light_20.xml new file mode 100644 index 000000000..8b5df632c --- /dev/null +++ b/res/drawable/ic_emoji_emoticon_light_20.xml @@ -0,0 +1,9 @@ + + + diff --git a/res/drawable/ic_emoji_filled.xml b/res/drawable/ic_emoji_filled.xml new file mode 100644 index 000000000..ed160bb6d --- /dev/null +++ b/res/drawable/ic_emoji_filled.xml @@ -0,0 +1,4 @@ + + + diff --git a/res/drawable/ic_emoji_filled_keyboard_dark.xml b/res/drawable/ic_emoji_filled_keyboard_dark.xml new file mode 100644 index 000000000..e0429d88f --- /dev/null +++ b/res/drawable/ic_emoji_filled_keyboard_dark.xml @@ -0,0 +1,4 @@ + + + diff --git a/res/drawable/ic_emoji_filled_keyboard_light.xml b/res/drawable/ic_emoji_filled_keyboard_light.xml new file mode 100644 index 000000000..ed8a86b40 --- /dev/null +++ b/res/drawable/ic_emoji_filled_keyboard_light.xml @@ -0,0 +1,4 @@ + + + diff --git a/res/drawable/ic_emoji_flag_dark_20.xml b/res/drawable/ic_emoji_flag_dark_20.xml new file mode 100644 index 000000000..1b1d730ed --- /dev/null +++ b/res/drawable/ic_emoji_flag_dark_20.xml @@ -0,0 +1,9 @@ + + + diff --git a/res/drawable/ic_emoji_flag_light_20.xml b/res/drawable/ic_emoji_flag_light_20.xml new file mode 100644 index 000000000..f5b87e490 --- /dev/null +++ b/res/drawable/ic_emoji_flag_light_20.xml @@ -0,0 +1,9 @@ + + + diff --git a/res/drawable/ic_emoji_food_dark_20.xml b/res/drawable/ic_emoji_food_dark_20.xml new file mode 100644 index 000000000..36b786fce --- /dev/null +++ b/res/drawable/ic_emoji_food_dark_20.xml @@ -0,0 +1,9 @@ + + + diff --git a/res/drawable/ic_emoji_food_light_20.xml b/res/drawable/ic_emoji_food_light_20.xml new file mode 100644 index 000000000..49898b5a2 --- /dev/null +++ b/res/drawable/ic_emoji_food_light_20.xml @@ -0,0 +1,9 @@ + + + diff --git a/res/drawable/ic_emoji_object_dark_20.xml b/res/drawable/ic_emoji_object_dark_20.xml new file mode 100644 index 000000000..44934dd47 --- /dev/null +++ b/res/drawable/ic_emoji_object_dark_20.xml @@ -0,0 +1,9 @@ + + + diff --git a/res/drawable/ic_emoji_object_light_20.xml b/res/drawable/ic_emoji_object_light_20.xml new file mode 100644 index 000000000..6aa4c053e --- /dev/null +++ b/res/drawable/ic_emoji_object_light_20.xml @@ -0,0 +1,9 @@ + + + diff --git a/res/drawable/ic_emoji_outline.xml b/res/drawable/ic_emoji_outline.xml new file mode 100644 index 000000000..943277e7a --- /dev/null +++ b/res/drawable/ic_emoji_outline.xml @@ -0,0 +1,9 @@ + + + diff --git a/res/drawable/ic_emoji_outline_keyboard.xml b/res/drawable/ic_emoji_outline_keyboard.xml new file mode 100644 index 000000000..943277e7a --- /dev/null +++ b/res/drawable/ic_emoji_outline_keyboard.xml @@ -0,0 +1,9 @@ + + + diff --git a/res/drawable/ic_emoji_people_dark_20.xml b/res/drawable/ic_emoji_people_dark_20.xml new file mode 100644 index 000000000..c28e8c86c --- /dev/null +++ b/res/drawable/ic_emoji_people_dark_20.xml @@ -0,0 +1,9 @@ + + + diff --git a/res/drawable/ic_emoji_people_light_20.xml b/res/drawable/ic_emoji_people_light_20.xml new file mode 100644 index 000000000..26867afd8 --- /dev/null +++ b/res/drawable/ic_emoji_people_light_20.xml @@ -0,0 +1,9 @@ + + + diff --git a/res/drawable/ic_emoji_symbol_dark_20.xml b/res/drawable/ic_emoji_symbol_dark_20.xml new file mode 100644 index 000000000..c2049dc47 --- /dev/null +++ b/res/drawable/ic_emoji_symbol_dark_20.xml @@ -0,0 +1,9 @@ + + + diff --git a/res/drawable/ic_emoji_symbol_light_20.xml b/res/drawable/ic_emoji_symbol_light_20.xml new file mode 100644 index 000000000..5a5b27697 --- /dev/null +++ b/res/drawable/ic_emoji_symbol_light_20.xml @@ -0,0 +1,9 @@ + + + diff --git a/res/drawable/ic_emoji_travel_dark_20.xml b/res/drawable/ic_emoji_travel_dark_20.xml new file mode 100644 index 000000000..c22c93c47 --- /dev/null +++ b/res/drawable/ic_emoji_travel_dark_20.xml @@ -0,0 +1,9 @@ + + + diff --git a/res/drawable/ic_emoji_travel_light_20.xml b/res/drawable/ic_emoji_travel_light_20.xml new file mode 100644 index 000000000..6a0448e21 --- /dev/null +++ b/res/drawable/ic_emoji_travel_light_20.xml @@ -0,0 +1,9 @@ + + + diff --git a/res/drawable/ic_forward_outline.xml b/res/drawable/ic_forward_outline.xml new file mode 100644 index 000000000..d1463dda1 --- /dev/null +++ b/res/drawable/ic_forward_outline.xml @@ -0,0 +1,9 @@ + + + diff --git a/res/drawable/ic_mic_filled_24.xml b/res/drawable/ic_mic_filled_24.xml new file mode 100644 index 000000000..acffc548c --- /dev/null +++ b/res/drawable/ic_mic_filled_24.xml @@ -0,0 +1,9 @@ + + + diff --git a/res/drawable/ic_plus_24.xml b/res/drawable/ic_plus_24.xml new file mode 100644 index 000000000..d287574e1 --- /dev/null +++ b/res/drawable/ic_plus_24.xml @@ -0,0 +1,9 @@ + + + diff --git a/res/drawable/ic_recent_dark_20.xml b/res/drawable/ic_recent_dark_20.xml new file mode 100644 index 000000000..7cb39ce59 --- /dev/null +++ b/res/drawable/ic_recent_dark_20.xml @@ -0,0 +1,9 @@ + + + diff --git a/res/drawable/ic_recent_light_20.xml b/res/drawable/ic_recent_light_20.xml new file mode 100644 index 000000000..1e888e4f6 --- /dev/null +++ b/res/drawable/ic_recent_light_20.xml @@ -0,0 +1,9 @@ + + + diff --git a/res/drawable/ic_sticker_filled.xml b/res/drawable/ic_sticker_filled.xml new file mode 100644 index 000000000..9b4b5c566 --- /dev/null +++ b/res/drawable/ic_sticker_filled.xml @@ -0,0 +1,9 @@ + + + diff --git a/res/drawable/ic_sticker_filled_keyboard_dark.xml b/res/drawable/ic_sticker_filled_keyboard_dark.xml new file mode 100644 index 000000000..b8a968b03 --- /dev/null +++ b/res/drawable/ic_sticker_filled_keyboard_dark.xml @@ -0,0 +1,9 @@ + + + diff --git a/res/drawable/ic_sticker_filled_keyboard_light.xml b/res/drawable/ic_sticker_filled_keyboard_light.xml new file mode 100644 index 000000000..d4db977f5 --- /dev/null +++ b/res/drawable/ic_sticker_filled_keyboard_light.xml @@ -0,0 +1,9 @@ + + + diff --git a/res/drawable/ic_sticker_outline.xml b/res/drawable/ic_sticker_outline.xml new file mode 100644 index 000000000..d2f6e5bb0 --- /dev/null +++ b/res/drawable/ic_sticker_outline.xml @@ -0,0 +1,9 @@ + + + diff --git a/res/drawable/ic_sticker_outline_keyboard.xml b/res/drawable/ic_sticker_outline_keyboard.xml new file mode 100644 index 000000000..d2f6e5bb0 --- /dev/null +++ b/res/drawable/ic_sticker_outline_keyboard.xml @@ -0,0 +1,9 @@ + + + diff --git a/res/drawable/ic_triangle_down.xml b/res/drawable/ic_triangle_down.xml new file mode 100644 index 000000000..9ff7fc1c8 --- /dev/null +++ b/res/drawable/ic_triangle_down.xml @@ -0,0 +1,7 @@ + + + + diff --git a/res/drawable/ic_triangle_left.xml b/res/drawable/ic_triangle_left.xml new file mode 100644 index 000000000..571c2b3ca --- /dev/null +++ b/res/drawable/ic_triangle_left.xml @@ -0,0 +1,7 @@ + + + + diff --git a/res/drawable/ic_triangle_right.xml b/res/drawable/ic_triangle_right.xml new file mode 100644 index 000000000..f14e6941d --- /dev/null +++ b/res/drawable/ic_triangle_right.xml @@ -0,0 +1,7 @@ + + + + diff --git a/res/drawable/ic_triangle_up.xml b/res/drawable/ic_triangle_up.xml new file mode 100644 index 000000000..b8736e342 --- /dev/null +++ b/res/drawable/ic_triangle_up.xml @@ -0,0 +1,7 @@ + + + + diff --git a/res/drawable/ic_x.xml b/res/drawable/ic_x.xml new file mode 100644 index 000000000..4fa8aa41a --- /dev/null +++ b/res/drawable/ic_x.xml @@ -0,0 +1,9 @@ + + + diff --git a/res/drawable/media_keyboard_selected_background_dark.xml b/res/drawable/media_keyboard_selected_background_dark.xml new file mode 100644 index 000000000..b41f2cf6d --- /dev/null +++ b/res/drawable/media_keyboard_selected_background_dark.xml @@ -0,0 +1,9 @@ + + + + + + + \ No newline at end of file diff --git a/res/drawable/media_keyboard_selected_background_light.xml b/res/drawable/media_keyboard_selected_background_light.xml new file mode 100644 index 000000000..e0afb0fc4 --- /dev/null +++ b/res/drawable/media_keyboard_selected_background_light.xml @@ -0,0 +1,9 @@ + + + + + + + \ No newline at end of file diff --git a/res/drawable/remove_button_state.xml b/res/drawable/remove_button_state.xml new file mode 100644 index 000000000..89c87b25c --- /dev/null +++ b/res/drawable/remove_button_state.xml @@ -0,0 +1,11 @@ + + + + + + + \ No newline at end of file diff --git a/res/drawable/sticker_button_dark.xml b/res/drawable/sticker_button_dark.xml new file mode 100644 index 000000000..646748d34 --- /dev/null +++ b/res/drawable/sticker_button_dark.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/res/drawable/sticker_button_light.xml b/res/drawable/sticker_button_light.xml new file mode 100644 index 000000000..97fcffe0f --- /dev/null +++ b/res/drawable/sticker_button_light.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/res/drawable/sticker_management_empty_background.xml b/res/drawable/sticker_management_empty_background.xml new file mode 100644 index 000000000..63855710d --- /dev/null +++ b/res/drawable/sticker_management_empty_background.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/res/drawable/sticker_missing_background_dark.xml b/res/drawable/sticker_missing_background_dark.xml new file mode 100644 index 000000000..b41f2cf6d --- /dev/null +++ b/res/drawable/sticker_missing_background_dark.xml @@ -0,0 +1,9 @@ + + + + + + + \ No newline at end of file diff --git a/res/drawable/sticker_missing_background_light.xml b/res/drawable/sticker_missing_background_light.xml new file mode 100644 index 000000000..fdc4810c9 --- /dev/null +++ b/res/drawable/sticker_missing_background_light.xml @@ -0,0 +1,9 @@ + + + + + + + \ No newline at end of file diff --git a/res/drawable/tooltip_background.xml b/res/drawable/tooltip_background.xml new file mode 100644 index 000000000..900668e09 --- /dev/null +++ b/res/drawable/tooltip_background.xml @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/res/drawable/transfer_controls_background.xml b/res/drawable/transfer_controls_background.xml new file mode 100644 index 000000000..1ba1aa2ec --- /dev/null +++ b/res/drawable/transfer_controls_background.xml @@ -0,0 +1,9 @@ + + + + + + + \ No newline at end of file diff --git a/res/layout/album_thumbnail_view.xml b/res/layout/album_thumbnail_view.xml index 3bac5cb0e..11af8b53f 100644 --- a/res/layout/album_thumbnail_view.xml +++ b/res/layout/album_thumbnail_view.xml @@ -13,8 +13,8 @@ diff --git a/res/layout/conversation_activity.xml b/res/layout/conversation_activity.xml index 4672c4663..fc87bafa8 100644 --- a/res/layout/conversation_activity.xml +++ b/res/layout/conversation_activity.xml @@ -1,108 +1,131 @@ - - - + android:layout_height="?attr/actionBarSize" + android:background="?attr/conversation_list_toolbar_background" + android:theme="?attr/actionBarStyle" + app:contentInsetStartWithNavigation="0dp" + app:layout_constraintEnd_toEndOf="parent" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintTop_toTopOf="parent" + app:navigationIcon="?homeAsUpIndicator" + tools:background="#ff007f00"> - + - + - + - - - - - + android:clipToPadding="false" + android:gravity="bottom" + android:orientation="vertical" + android:paddingTop="?attr/actionBarSize"> - + - + - + -