In the dialog "Would you like to post...." it crashes when sure is pressed. I see that it tries to launch an activity with intent to app store.
final Intent intentToAppstore = settings.getStoreType() == Settings.StoreType.GOOGLEPLAY ?
IntentHelper.createIntentForGooglePlay(context) : IntentHelper.createIntentForAmazonAppstore(context);
context.startActivity(intentToAppstore);d
How can I handle this?
In the dialog "Would you like to post...." it crashes when sure is pressed. I see that it tries to launch an activity with intent to app store.
final Intent intentToAppstore = settings.getStoreType() == Settings.StoreType.GOOGLEPLAY ?
IntentHelper.createIntentForGooglePlay(context) : IntentHelper.createIntentForAmazonAppstore(context);
context.startActivity(intentToAppstore);d
How can I handle this?