mirror of
https://github.com/oasisfeng/deagle.git
synced 2025-01-09 04:10:03 +08:00
ADD: Overload of Apps.showInMarket() with UTM parameters.
This commit is contained in:
parent
a15e1c9814
commit
4a7a39fd2f
@ -10,6 +10,7 @@ import android.net.Uri;
|
||||
import android.os.Build;
|
||||
import android.os.Process;
|
||||
import android.support.annotation.CheckResult;
|
||||
import android.support.annotation.Nullable;
|
||||
import android.util.Log;
|
||||
|
||||
import com.oasisfeng.android.google.GooglePlayStore;
|
||||
@ -42,7 +43,14 @@ public class Apps {
|
||||
}
|
||||
|
||||
public void showInMarket(final String pkg) {
|
||||
final Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id=" + pkg));
|
||||
showInMarket(pkg, null, null);
|
||||
}
|
||||
|
||||
public void showInMarket(final String pkg, final @Nullable String utm_source, final @Nullable String utm_campaign) {
|
||||
final StringBuilder uri = new StringBuilder("market://details?id=").append(pkg);
|
||||
if (utm_source != null) uri.append("&utm_source=").append(utm_source);
|
||||
if (utm_campaign != null) uri.append("&utm_campaign=").append(utm_campaign);
|
||||
final Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(uri.toString()));
|
||||
try {
|
||||
mContext.startActivity(intent);
|
||||
} catch(final ActivityNotFoundException e) {
|
||||
|
Loading…
Reference in New Issue
Block a user