経由でアプリケーションを起動しようとしていますgradle
task
。
task runDebug(dependsOn: ['installDebug', 'run']) {
}
task run(type: Exec) {
commandLine 'adb', 'shell', 'am', 'start', '-n', 'com.example.myexample/.ui.SplashScreenActivity'
}
しかし、このコードは機能せず、エラーが発生します。
a problem occurred starting process 'command 'adb''
ただし、adb へのパスを明示的に指定すると、アプリケーションが開始されます。
task run(type: Exec) {
commandLine 'D:\\android\\android-studio\\sdk\\platform-tools\\adb', 'shell', 'am', 'start', '-n', 'com.example.myexample/.ui.SplashScreenActivity'
}
では、パスを含む変数を取得して転送するにはどうすればよいcommandLine
ですか?