Difference Build for device Google Play store and the Samsung appstore?

I’m having a rather strange issue. 

I’ve tested my app on my Samsung galaxy tab3 7 inch. Whenever I build using the Samsung store as setting, the app is just running fine and everything is working as it should. (as is it for IOS all devices and all simulated devices)

However, when I build using the Google Play store setting (from the drop down list) then the app is loading as a black screen, no errors in de ADB log, no errors in the corona build log, no errors what so ever.

So my question to Corona is, what is the difference between these 2 settings, except the obvious “we know what store it is build for and rate the app is easier” difference.

Issue is found, I had some lines in my Build.settings file which where messing up my android build. (largeheap etc.)

When you say no errors in the log are you doing:

adb logcat

or

adb logcat Corona:v *:s

The 2nd for filters out things that are not from the Corona activity.  Frequently errors come from other sources other than the Activity (the black screen means the Activity didn’t get started usually).  You need the first form to look for other influences.

As for the question about differences, the only thing I know for sure is which App store the native.showPopup() functions go to for Android.

Issue is found, I had some lines in my Build.settings file which where messing up my android build. (largeheap etc.)

When you say no errors in the log are you doing:

adb logcat

or

adb logcat Corona:v *:s

The 2nd for filters out things that are not from the Corona activity.  Frequently errors come from other sources other than the Activity (the black screen means the Activity didn’t get started usually).  You need the first form to look for other influences.

As for the question about differences, the only thing I know for sure is which App store the native.showPopup() functions go to for Android.