Rate Us method added to Utils.java and called on AboutActivity.java

This commit is contained in:
Ujjwal Agrawal 2018-02-27 12:04:04 +05:30
parent 4432f2ca1a
commit fc8b522ac4
11 changed files with 30 additions and 18 deletions

View file

@ -23,6 +23,7 @@ import fr.free.nrw.commons.AboutActivity;
import fr.free.nrw.commons.BuildConfig;
import fr.free.nrw.commons.CommonsApplication;
import fr.free.nrw.commons.R;
import fr.free.nrw.commons.Utils;
import fr.free.nrw.commons.WelcomeActivity;
import fr.free.nrw.commons.auth.AccountUtil;
import fr.free.nrw.commons.auth.LoginActivity;
@ -133,17 +134,6 @@ public abstract class NavigationBaseActivity extends BaseActivity
Toast.makeText(this, R.string.no_email_client, Toast.LENGTH_SHORT).show();
}
return true;
case R.id.action_rate:
drawerLayout.closeDrawer(navigationView);
final String appPackageName = getPackageName();
Toast.makeText(this, appPackageName, Toast.LENGTH_SHORT).show();
try {
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id=" + appPackageName)));
}
catch (android.content.ActivityNotFoundException anfe) {
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("https://play.google.com/store/apps/details?id=" + appPackageName)));
}
return true;
case R.id.action_logout:
new AlertDialog.Builder(this)
.setMessage(R.string.logout_verification)