feat: Implement smart logging for keyboard and emoji height transitions

This commit is contained in:
k1ngsterr1
2026-01-15 15:49:05 +05:00
parent 959e56461a
commit 64acf515d2
4 changed files with 77 additions and 26 deletions

View File

@@ -38,6 +38,10 @@ android {
)
signingConfig = signingConfigs.getByName("release")
}
debug {
// Enable baseline profiles in debug builds too for testing
// Remove this in production
}
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_1_8
@@ -100,6 +104,9 @@ dependencies {
// Biometric authentication
implementation("androidx.biometric:biometric:1.1.0")
// Baseline Profiles for startup performance
implementation("androidx.profileinstaller:profileinstaller:1.3.1")
// Testing dependencies
testImplementation("junit:junit:4.13.2")
testImplementation("io.mockk:mockk:1.13.8")