shファイルは次のようになります
#!/system/bin/sh
am start -a android.intent.action.MAIN -n com.android.settings/.Settings
echo hello,world
exit 1
しかし、次のようなエラーが報告されます
Starting: Intent { act=android.intent.action.MAIN cmp=com.android.settings/.Sett
}gs
Error type 3
} does not exist.lass {com.android.settings/com.android.settings.Settings
hello,world
exit: Illegal number: 1
しかし、adbシェルプロンプトのようにshシェルに直接入力すると、入力am start -a android.intent.action.MAIN -n com.android.settings/.Settings
すると動作し、アクティビティが実行されます
だから問題は何ですか?