can not launch external Service.

I tried a Bunch of Stuff and for some reason I just cant launch MC via an Intent from my app but via adb shell it works just fine. important to note is that I do not get any log info NOR an exception thrown it seems meaning I have no clue why its not working. adb shell that works:
am startservice -n "net.kdt.pojavlaunch.debug/net.kdt.pojavlaunch.api.StartMinecraftService" -a "net.kdt.pojavlaunch.action.START_PROFILE"
am startservice -n "net.kdt.pojavlaunch.debug/net.kdt.pojavlaunch.api.StartMinecraftService" -a "net.kdt.pojavlaunch.action.START_PROFILE"
My code:
public static Intent launchGameBaseIntent(Context context, String profileId, String userDetail) {
Intent launchIntent = new Intent("net.kdt.pojavlaunch.action.START_PROFILE");
launchIntent.putExtra("profile_id", profileId);
launchIntent.putExtra("launch_user", userDetail);
// Specify the package name of the target application.
launchIntent.setComponent(new ComponentName("net.kdt.pojavlaunch.debug", "net.kdt.pojavlaunch.api.StartMinecraftService"));
context.startService(launchIntent);
return launchIntent;
}
public static Intent launchGameBaseIntent(Context context, String profileId, String userDetail) {
Intent launchIntent = new Intent("net.kdt.pojavlaunch.action.START_PROFILE");
launchIntent.putExtra("profile_id", profileId);
launchIntent.putExtra("launch_user", userDetail);
// Specify the package name of the target application.
launchIntent.setComponent(new ComponentName("net.kdt.pojavlaunch.debug", "net.kdt.pojavlaunch.api.StartMinecraftService"));
context.startService(launchIntent);
return launchIntent;
}
Relevant Manifest Definition:
<service android:name=".api.StartMinecraftService" android:exported="true">
</service>
<service android:name=".api.StartMinecraftService" android:exported="true">
</service>
3 Replies
JavaBot
JavaBot2w ago
This post has been reserved for your question.
Hey @Hype_the_Time (PING ON REPLY)! Please use /close or the Close Post button above when your problem is solved. Please remember to follow the help guidelines. This post will be automatically marked as dormant after 300 minutes of inactivity.
TIP: Narrow down your issue to simple and precise questions to maximize the chance that others will reply in here. 💤 Post marked as dormant
This post has been inactive for over 300 minutes, thus, it has been archived. If your question was not answered yet, feel free to re-open this post or create a new one. In case your post is not getting any attention, you can try to use /help ping. Warning: abusing this will result in moderative actions taken against you.
JavaBot
JavaBot7d ago
Post Closed
This post has been closed by <@595201583923331082>.

Did you find this page helpful?