Skip to content

Commit

Permalink
Add url of the git repository
Browse files Browse the repository at this point in the history
  • Loading branch information
xenione committed Apr 18, 2016
1 parent 40b8ec7 commit 82f5165
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,8 @@ private void showFragment(Fragment fragment, String tag) {
private void launchSharer() {
Intent sendIntent = new Intent();
sendIntent.setAction(Intent.ACTION_SEND);
sendIntent.putExtra(Intent.EXTRA_TEXT, "Hi, I found on google play that awesome swipe library. Have a look !!! ");
sendIntent.setType("text/plain");
sendIntent.putExtra(Intent.EXTRA_TEXT, "Hi, I found on google play that awesome swipe library at https://github.com/xenione/SwipeLayout. Have a look !!! ");
sendIntent.setType("text/html");
startActivity(Intent.createChooser(sendIntent, getResources().getText(R.string.send_to)));
}
}

0 comments on commit 82f5165

Please sign in to comment.