Skip to content

Commit

Permalink
Fix 1079 Message is displayed when user is successfully signed in
Browse files Browse the repository at this point in the history
  • Loading branch information
theabhishekavi committed Mar 7, 2019
1 parent d9af6b5 commit 13d9e02
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 @@ -198,6 +198,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 13d9e02

Please sign in to comment.