Remove "Android App:" when sharing an application

Reasons to do so:
* Redundant
* Often noisy
* Not properly translated
This commit is contained in:
Daniel Martí 2014-03-18 08:15:04 +01:00
parent 7f652f8620
commit 5e30d0d218

@ -927,7 +927,7 @@ public class AppDetails extends ListActivity {
Intent shareIntent = new Intent(Intent.ACTION_SEND);
shareIntent.setType("text/plain");
shareIntent.putExtra(Intent.EXTRA_SUBJECT, "Android App: "+app.name);
shareIntent.putExtra(Intent.EXTRA_SUBJECT, app.name);
shareIntent.putExtra(Intent.EXTRA_TEXT, app.name+" ("+app.summary+") - https://f-droid.org/app/"+app.id);
startActivity(Intent.createChooser(shareIntent, getString(R.string.menu_share)));