Skip to content

Commit

Permalink
Merge pull request openMF#1085 from theabhishekavi/cd
Browse files Browse the repository at this point in the history
fix: add a message when the user unlocks the app with a passcode
  • Loading branch information
AbhilashG97 committed Aug 17, 2020
2 parents c1b9779 + 13d9e02 commit c59191c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import android.content.Intent;
import android.view.View;
import android.widget.Toast;

import com.mifos.mifosxdroid.R;
import com.mifos.mifosxdroid.SplashScreenActivity;
Expand All @@ -19,6 +20,7 @@ public int getLogo() {

@Override
public void startNextActivity() {
Toast.makeText(this, R.string.Log_in_success, Toast.LENGTH_SHORT).show();
startActivity(new Intent(this, DashboardActivity.class));
}

Expand Down
1 change: 1 addition & 0 deletions mifosng-android/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,7 @@
<string name="add_payment_detail">Add Payment Detail</string>
<string name="generate_new">Generate New</string>
<string name="currency">Currency</string>
<string name="Log_in_success">Logged in successfully</string>
<!-- General Terms End Here -->


Expand Down

0 comments on commit c59191c

Please sign in to comment.