Hello,
Can anyone show what this intent should be written like in B4A? I need the same action as this intent but written in B4A:
Thanks,
Margret
Can anyone show what this intent should be written like in B4A? I need the same action as this intent but written in B4A:
B4X:
import android.content.Intent;
Intent i = new Intent();
i.setAction( "com.bn.sdk.shop.details" );
i.putExtra( "product_details_ean" , "2940043350251" );
startActivity( i );
Thanks,
Margret