The following attachment (renaming zip to apk) can also be used to start Android Settings and is 52 times smaller.
It only contains the following words in Kotlin:
Code:
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
startActivity(Intent(Settings.ACTION_SETTINGS))
exitProcess(0)
}