stop sending empty message && change version name on about tab

This commit is contained in:
CiufudeanDani 2022-04-14 13:26:57 +03:00
parent 8a9ea703c7
commit aedeb80fbd
2 changed files with 4 additions and 1 deletions

View File

@ -167,6 +167,8 @@ public class MessagesActivity extends Activity {
// button send message
imageButtonSend = findViewById(R.id.imageButtonSend);
imageButtonSend.setOnClickListener(v -> {
if (editTextMsg.getText().toString().isEmpty())
return;
sendSMS(getScId(), editTextMsg.getText().toString());
Toast.makeText(context, "Sending message...", Toast.LENGTH_SHORT).show();
// disable send button and editBox

View File

@ -1225,7 +1225,8 @@ public class TabLayoutActivity extends AbstractSDParentActivity {
image.setImageResource(AppParams.DEMO ? R.drawable.icon_demo : R.mipmap.ic_launcher);
TextView text = dialog.findViewById(R.id.text);
TextView text2 = dialog.findViewById(R.id.text2);
text.setText(String.format("%s1.0.8", getString(R.string.version)));
text.setText(getString(R.string.version) + " " + BuildConfig.VERSION_NAME);
text2.setText(String.format("%s: support@safemobile.com", getString(R.string.email)));
dialog.setCancelable(true);
dialog.setCanceledOnTouchOutside(true);