Skip to content

Commit

Permalink
Bugs fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
bgdlnchk committed Mar 5, 2021
1 parent 8b1bcee commit e3d831b
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@

public class ShareDialog {

private String title;
private String description;
private String googlePlayLink;
private static String title;
private static String description;
private static String googlePlayLink;

public void setTitle(String title) {
this.title = title;
Expand All @@ -24,7 +24,7 @@ public void setDescription(String description) {
this.description = description;
}

public void showDialog(Context context) {
public static void showDialog(Context context) {
AlertDialog.Builder builder1 = new AlertDialog.Builder(context);
builder1.setMessage(title);
builder1.setCancelable(true);
Expand Down

0 comments on commit e3d831b

Please sign in to comment.