Changed: Change ShareUtils.openSystemAppChooser() to public

This commit is contained in:
agnostic-apollo
2022-01-22 18:56:50 +05:00
parent a3cd058fb4
commit 6fea1fbddc

View File

@@ -34,7 +34,7 @@ public class ShareUtils {
* @param intent The intent that describes the choices that should be shown.
* @param title The title for choose menu.
*/
private static void openSystemAppChooser(final Context context, final Intent intent, final String title) {
public static void openSystemAppChooser(final Context context, final Intent intent, final String title) {
if (context == null) return;
final Intent chooserIntent = new Intent(Intent.ACTION_CHOOSER);