mirror of
https://github.com/recloudstream/gradle.git
synced 2024-08-14 23:56:59 +00:00
fix deployWithAdb only working for the debug app
This commit is contained in:
parent
77686b33fd
commit
8d84a80740
1 changed files with 1 additions and 1 deletions
|
@ -43,7 +43,7 @@ abstract class DeployWithAdbTask : DefaultTask() {
|
|||
|
||||
device.push(file, RemoteFile(path + file.name))
|
||||
|
||||
val args = arrayListOf("start", "-S", "-n", "com.lagradost.cloudstream3.debug/com.lagradost.cloudstream3.MainActivity")
|
||||
val args = arrayListOf("start", "-a", "android.intent.action.VIEW", "-d", "cloudstreamapp:")
|
||||
|
||||
if (waitForDebugger) {
|
||||
args.add("-D")
|
||||
|
|
Loading…
Reference in a new issue