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

@ -65,4 +65,10 @@ public class AboutActivity extends NavigationBaseActivity {
Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("https://commons-app.github.io/\\"));
startActivity(browserIntent);
}
@OnClick(R.id.about_rate_us)
public void rateApp(View view) {
Utils.rateApp(this);
}
}