diff --git a/src/main/kotlin/com/lagradost/cloudstream3/gradle/tasks/DeployWithAdbTask.kt b/src/main/kotlin/com/lagradost/cloudstream3/gradle/tasks/DeployWithAdbTask.kt index daae4d3..64adba4 100644 --- a/src/main/kotlin/com/lagradost/cloudstream3/gradle/tasks/DeployWithAdbTask.kt +++ b/src/main/kotlin/com/lagradost/cloudstream3/gradle/tasks/DeployWithAdbTask.kt @@ -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")