Refactor UI components in ChatsListScreen, ForwardChatPickerBottomSheet, and SearchScreen for improved readability and maintainability; adjust text color alpha values, streamline imports, and enhance keyboard handling functionality.
This commit is contained in:
164
app/proguard-rules.pro
vendored
Normal file
164
app/proguard-rules.pro
vendored
Normal file
@@ -0,0 +1,164 @@
|
||||
# Add project specific ProGuard rules here.
|
||||
# You can control the set of applied configuration files using the
|
||||
# proguardFiles setting in build.gradle.
|
||||
|
||||
# If your project uses WebView with JS, uncomment the following
|
||||
# and specify the fully qualified class name to the JavaScript interface
|
||||
# class:
|
||||
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
|
||||
# public *;
|
||||
#}
|
||||
|
||||
# Uncomment this to preserve the line number information for
|
||||
# debugging stack traces.
|
||||
#-keepattributes SourceFile,LineNumberTable
|
||||
|
||||
# If you keep the line number information, uncomment this to
|
||||
# hide the original source file name.
|
||||
#-renamesourcefileattribute SourceFile
|
||||
|
||||
# ============================================================
|
||||
# Firebase Cloud Messaging
|
||||
# ============================================================
|
||||
-keep class com.google.firebase.** { *; }
|
||||
-keep class com.google.android.gms.** { *; }
|
||||
-dontwarn com.google.firebase.**
|
||||
-dontwarn com.google.android.gms.**
|
||||
|
||||
# Keep FirebaseMessagingService
|
||||
-keep class * extends com.google.firebase.messaging.FirebaseMessagingService {
|
||||
*;
|
||||
}
|
||||
-keep class com.rosetta.messenger.push.RosettaFirebaseMessagingService { *; }
|
||||
|
||||
# Keep notification data models
|
||||
-keepclassmembers class * {
|
||||
@com.google.firebase.messaging.RemoteMessage$MessageNotificationKeys <fields>;
|
||||
}
|
||||
|
||||
# ============================================================
|
||||
# Kotlin & Coroutines
|
||||
# ============================================================
|
||||
-keep class kotlinx.coroutines.** { *; }
|
||||
-dontwarn kotlinx.coroutines.**
|
||||
|
||||
# Keep Kotlin metadata
|
||||
-keep class kotlin.Metadata { *; }
|
||||
|
||||
# ============================================================
|
||||
# Room Database
|
||||
# ============================================================
|
||||
-keep class * extends androidx.room.RoomDatabase
|
||||
-keep @androidx.room.Entity class *
|
||||
-keepclassmembers class * {
|
||||
@androidx.room.* <methods>;
|
||||
}
|
||||
-keep class com.rosetta.messenger.database.** { *; }
|
||||
|
||||
# ============================================================
|
||||
# Crypto & Security
|
||||
# ============================================================
|
||||
# BouncyCastle
|
||||
-keep class org.bouncycastle.** { *; }
|
||||
-dontwarn org.bouncycastle.**
|
||||
|
||||
# Tink (XChaCha20-Poly1305)
|
||||
-keep class com.google.crypto.tink.** { *; }
|
||||
-dontwarn com.google.crypto.tink.**
|
||||
|
||||
# BitcoinJ
|
||||
-keep class org.bitcoinj.** { *; }
|
||||
-dontwarn org.bitcoinj.**
|
||||
|
||||
# Security Crypto
|
||||
-keep class androidx.security.crypto.** { *; }
|
||||
-dontwarn androidx.security.crypto.**
|
||||
|
||||
# Keep crypto classes
|
||||
-keep class com.rosetta.messenger.crypto.** { *; }
|
||||
|
||||
# ============================================================
|
||||
# Compose
|
||||
# ============================================================
|
||||
-keep class androidx.compose.** { *; }
|
||||
-dontwarn androidx.compose.**
|
||||
|
||||
# Keep @Composable functions
|
||||
-keepclassmembers class * {
|
||||
@androidx.compose.runtime.Composable <methods>;
|
||||
}
|
||||
|
||||
# ============================================================
|
||||
# Data Models
|
||||
# ============================================================
|
||||
# Keep all data classes
|
||||
-keep class com.rosetta.messenger.data.** { *; }
|
||||
-keep class com.rosetta.messenger.network.** { *; }
|
||||
|
||||
# Keep Parcelable
|
||||
-keepclassmembers class * implements android.os.Parcelable {
|
||||
public static final android.os.Parcelable$Creator *;
|
||||
}
|
||||
|
||||
# ============================================================
|
||||
# Serialization
|
||||
# ============================================================
|
||||
# Keep serialization info
|
||||
-keepattributes *Annotation*
|
||||
-keepattributes Signature
|
||||
-keepattributes InnerClasses
|
||||
-keepattributes EnclosingMethod
|
||||
|
||||
# Gson
|
||||
-keep class com.google.gson.** { *; }
|
||||
-keepclassmembers class * {
|
||||
@com.google.gson.annotations.SerializedName <fields>;
|
||||
}
|
||||
|
||||
# ============================================================
|
||||
# AndroidX & Material
|
||||
# ============================================================
|
||||
-keep class com.google.android.material.** { *; }
|
||||
-dontwarn com.google.android.material.**
|
||||
|
||||
-keep class androidx.** { *; }
|
||||
-dontwarn androidx.**
|
||||
|
||||
# ============================================================
|
||||
# Reflection & Native
|
||||
# ============================================================
|
||||
-keepattributes RuntimeVisibleAnnotations
|
||||
-keepattributes RuntimeInvisibleAnnotations
|
||||
-keepattributes RuntimeVisibleParameterAnnotations
|
||||
-keepattributes RuntimeInvisibleParameterAnnotations
|
||||
|
||||
# Keep native methods
|
||||
-keepclasseswithmembernames class * {
|
||||
native <methods>;
|
||||
}
|
||||
|
||||
# ============================================================
|
||||
# Debugging (remove in production)
|
||||
# ============================================================
|
||||
-keepattributes SourceFile,LineNumberTable
|
||||
-renamesourcefileattribute SourceFile
|
||||
|
||||
# ============================================================
|
||||
# WebSocket (if using OkHttp)
|
||||
# ============================================================
|
||||
-dontwarn okhttp3.**
|
||||
-dontwarn okio.**
|
||||
-keep class okhttp3.** { *; }
|
||||
-keep class okio.** { *; }
|
||||
|
||||
# ============================================================
|
||||
# Lottie Animations
|
||||
# ============================================================
|
||||
-keep class com.airbnb.lottie.** { *; }
|
||||
-dontwarn com.airbnb.lottie.**
|
||||
|
||||
# ============================================================
|
||||
# Coil Image Loading
|
||||
# ============================================================
|
||||
-keep class coil.** { *; }
|
||||
-dontwarn coil.**
|
||||
Reference in New Issue
Block a user