Jump to content

Recommended Posts

Hi @DARK_DEMON_SCRIPTER, there's several way to find MainActivity. First, I wanted to talk about the Roblox itself. It looks like there's multiple component that's likely to be the MainActivity:

  • 1) ActivitySplash: Using some tools, this component is marked as MainActivity.
  • 2) ActivityProtocolLaunch: It is the activity that responsible to launch the Game
  • 3) RobloxApplication: This was found inside the manifest.xml from <application> scope.

Using the second Activity, I was able to launch the game like this:

am start com.roblox.client/.ActivityProtocolLaunch

Now, how there's 3 possible MainActivity? You can find MainActivity for every apps using various ways:

  • 1) You can use: MyAndroidTools Pro (requires Root). Inside the App -> ≡ -> Activity -> Roblox -> House Icon.

image.thumb.png.cc7939d61bd52bed1951bb0b263a5c3e.png

  • 2) You can also inspect it's Manifest.xml -> <Application -> android:name.

image.thumb.png.82cc1af76f9ef96fe0c8174823fe6b96.png

  • 3) If the game can be launched from some Activity, there's a chance it is a MainActivity. It looks like: that's not the case with Roblox:

image.thumb.png.4675b7accd41750d747b89126e00f39a.png

  • 4) If you want it only to launch the Game, you can Launch the game without MainActivity at all. Here we can use MonkeyPatch:
monkey -p com.roblox.client -c android.intent.category.LAUNCHER 1

 

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.