can not launch external service.

It seems like I accidentally came on the close button??? so this is a repost 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>
64 Replies
JavaBot
JavaBot7d 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.
ayylmao123xdd
ayylmao123xdd7d ago
does the process just stop or something
Hype_the_Time (PING ON REPLY)
i dont get a breakpoint hit when setting it at the intent receiver. so doubt it. (adb command does activate the breakpoint)
ayylmao123xdd
ayylmao123xdd7d ago
maybe add some logging so you can see at which point the app fails
Hype_the_Time (PING ON REPLY)
i mean the app doesnt close either
ayylmao123xdd
ayylmao123xdd7d ago
lol thats interesting
Hype_the_Time (PING ON REPLY)
its just silenetly not doing anything
ayylmao123xdd
ayylmao123xdd7d ago
what does that -a argument do in adb shell
Hype_the_Time (PING ON REPLY)
(currently rechecking that what i said is correct. from memory) yeah i just rechecked. even while pojav is in the front and i have debug of my app to launch manually nothing happens. i just get null returned from context.startService(launchIntent) i asked gpt so honetly no clue.
ayylmao123xdd
ayylmao123xdd7d ago
@Override
public void executeWithApplication(Context context) {
try {
Intent gameStartIntent = createGameStartIntent(context);
gameStartIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(gameStartIntent);
android.os.Process.killProcess(android.os.Process.myPid());
} catch (Throwable e) {
Tools.showError(context, e);
}
}
@Override
public void executeWithApplication(Context context) {
try {
Intent gameStartIntent = createGameStartIntent(context);
gameStartIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(gameStartIntent);
android.os.Process.killProcess(android.os.Process.myPid());
} catch (Throwable e) {
Tools.showError(context, e);
}
}
maybe try to throw the error for now so you can at least see it in console instead of that tools show error im not sure how that works tho but it might be the reason why you get no logging
Hype_the_Time (PING ON REPLY)
cant be it. my application neiver recieves my apps intent tried breakpoint @Override protected void onHandleIntent(Intent intent) { if (intent != null && ACTION_START_MINECRAFT.equals(intent.getAction())) { never get a breakpoint hit from my app trying it. am shell does hit
ayylmao123xdd
ayylmao123xdd7d ago
so intent is null if im reading it right
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;
}
this gets the intent right
Hype_the_Time (PING ON REPLY)
no the return value of context.startService(launchIntent) is null. not the intent
ayylmao123xdd
ayylmao123xdd7d ago
can you show that method i cant find it im blind l0l
Hype_the_Time (PING ON REPLY)
in debug and method exit basically at the return breakpoint execution
ayylmao123xdd
ayylmao123xdd7d ago
so maybe it doesnt find the intent
Hype_the_Time (PING ON REPLY)
i mean as i said pojav launcher does not seem to receive the intent. also the intent is not null when trying to view it.
No description
ayylmao123xdd
ayylmao123xdd7d ago
hmmm wheres the method that calls launch game base intent
ayylmao123xdd
ayylmao123xdd7d ago
like you said launcher doesnt receive the intent so can you show where the launcher calls the method
Hype_the_Time (PING ON REPLY)
from my knowledge it should be myapp: create the intent myapp: context.startService(intent) pojav: recieve intent pojav: handle intent it goes missing between my app and pojav seemingly. a breakpoint in the on intent in the place where i should receive it directley never gets hit from my code only if i do it manually via the adb command
ayylmao123xdd
ayylmao123xdd7d ago
maybe that pojav thing doesnt know from which method to grab the intent im just guessing
Hype_the_Time (PING ON REPLY)
question then tho: where should i look? cus it does not appear in logcat
ayylmao123xdd
ayylmao123xdd7d ago
is there some config for it the pojav i think the problem if it works with adb is that adb launches that parameter that changes some stuff and while you launch it the other way it doesnt have that config/parameter
Hype_the_Time (PING ON REPLY)
obiously me guessing with gpt but i would assume they need a way to know what exactly you gave it. (who should it know the deiff between action and class if yk what i mean)
ayylmao123xdd
ayylmao123xdd7d ago
ok i think we need to call the java special forces here @dan1st can you take a look no clue what the problem is
dan1st
dan1st7d ago
What happens when the code is run?
Hype_the_Time (PING ON REPLY)
what is the code
dan1st
dan1st7d ago
Does anything different happen without the profile_id and launch_user? Your code using context.startService(launchIntent); which doesn't work if I read it correctly
Hype_the_Time (PING ON REPLY)
uh i think i know what you mean. let me try removing them
dan1st
dan1st7d ago
and it would be useful to know what exactly happens
Shruti
Shruti7d ago
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;
}
This message has been formatted automatically. You can disable this using /preferences.
Hype_the_Time (PING ON REPLY)
nothing happens
dan1st
dan1st7d ago
Can you execute that code directly from an activity? not from within a service
Hype_the_Time (PING ON REPLY)
isnt this enough?
No description
dan1st
dan1st7d ago
try it directly with the activity
Hype_the_Time (PING ON REPLY)
(normal context is that main activity)
dan1st
dan1st7d ago
Android is weird and I want to exclude other possibilities
Hype_the_Time (PING ON REPLY)
as i sued previously
dan1st
dan1st7d ago
I don't trust Android on these things Some things don't work the same in certain services sometimes
Hype_the_Time (PING ON REPLY)
nothing happens actually i do have an idea
dan1st
dan1st7d ago
used directly within the activity with startService(...) instead of context.startService(...)?
Hype_the_Time (PING ON REPLY)
i dont know the stack basically that its being ran on do i have to run it in the main thread or sth perhaps no
dan1st
dan1st7d ago
yeah try using the UI thread as well and when you say nothing happens, I assume the app just continues executing? and removing profile_id/launch_user didn't change anything, right? It was the same result before and after Can you check the logs of the started service? What should happen when starting the service?
Hype_the_Time (PING ON REPLY)
me getting a breakpoint hit
dan1st
dan1st7d ago
Did you set a breakpoint there?
Hype_the_Time (PING ON REPLY)
yes. also i do have code there so its like evcen just being breakpoint hit is all thats needed
dan1st
dan1st7d ago
I assume you resumed execution?
Hype_the_Time (PING ON REPLY)
ye Package [net.kdt.pojavlaunch.debug] reported as REPLACED, but missing application info. Assuming REMOVED. i just found this in my log. i dont know where it came from i tried it before previously but it never appeared ah thats from me updating the app i mean the bash is able to find it still tho
dan1st
dan1st7d ago
Is the service you are starting actually exported?
Hype_the_Time (PING ON REPLY)
<service android:name=".api.StartMinecraftService" android:exported="true"> </service>
dan1st
dan1st7d ago
Where is the action declared?
Hype_the_Time (PING ON REPLY)
and i setr a breakpoint in the if statement so any would work too
dan1st
dan1st7d ago
Can you check whether the onHandleIntent is executed?
Hype_the_Time (PING ON REPLY)
2025-03-27 21:32:26.766 27077-27077 VRI[LauncherActivity] net.kdt.pojavlaunch.debug D visibilityChanged oldVisibility=true newVisibility=false 2025-03-27 21:32:48.857 27077-27086 .debug:launcher net.kdt.pojavlaunch.debug I Background concurrent mark compact GC freed 7086KB AllocSpace bytes, 7(140KB) LOS objects, 84% free, 4503KB/28MB, paused 434us,34.433ms total 204.091ms 2025-03-27 21:32:48.887 27077-27088 System net.kdt.pojavlaunch.debug W A resource failed to call close. all logs between my calling various versions of the intent. @Override protected void onHandleIntent(Intent intent) { System.out.println("MC Service reieved intent: " + intent.getAction()+" | "+intent); if (intent != null && ACTION_START_MINECRAFT.equals(intent.getAction())) { System.out.println("StartMinecraftService started"); 2025-03-27 21:34:32.056 27077-27257 System.out net.kdt.pojavlaunch.debug I MC Service reieved intent: net.kdt.pojavlaunch.action.START_PROFILE | Intent { act=net.kdt.pojavlaunch.action.START_PROFILE cmp=net.kdt.pojavlaunch.debug/net.kdt.pojavlaunch.api.StartMinecraftService } (from bash call) so does work
dan1st
dan1st7d ago
ohhhh I think your app doesn't have the necessary permissions
dan1st
dan1st7d ago
Stack Overflow
How to start android service from another Android app
I'm having a problem starting a service from another Android app (API 17). However, if I do run 'am' from the shell, the service starts fine. am startservice com.xxx.yyy/.SyncService Starting se...
JavaBot
JavaBot7d ago
💤 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.
Hype_the_Time (PING ON REPLY)
Time to reopen this Only saw now will check its not fully working yet but I am confident that this was the problem. (I get an exception now because app is in background nen stuff)
dan1st
dan1st6d ago
ig work on the exception and if you need help with it, post the stack trace here ;)
JavaBot
JavaBot6d ago
💤 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.

Did you find this page helpful?