diff --git a/apps/android/app/build.gradle b/apps/android/app/build.gradle index 97c169c956..3c3057d957 100644 --- a/apps/android/app/build.gradle +++ b/apps/android/app/build.gradle @@ -11,7 +11,7 @@ android { applicationId "chat.simplex.app" minSdk 29 targetSdk 32 - versionCode 14 + versionCode 15 versionName "1.3" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" diff --git a/apps/android/app/src/main/java/chat/simplex/app/views/chat/SendMsgView.kt b/apps/android/app/src/main/java/chat/simplex/app/views/chat/SendMsgView.kt index 504d7552e2..90248d8818 100644 --- a/apps/android/app/src/main/java/chat/simplex/app/views/chat/SendMsgView.kt +++ b/apps/android/app/src/main/java/chat/simplex/app/views/chat/SendMsgView.kt @@ -78,6 +78,7 @@ fun SendMsgView(sendMessage: (String) -> Unit) { if (msg.isNotEmpty()) { sendMessage(msg) msg = "" + textStyle = smallFont } } )