Skip to content

Commit

Permalink
Switch arguments to lldb function to fix calling side
Browse files Browse the repository at this point in the history
  • Loading branch information
Athosvk committed Jul 10, 2024
1 parent 268939a commit 7da6f62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xbuild/src/devices/adb.rs
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ impl Adb {
Ok(Path::new(std::str::from_utf8(&output.stdout)?.trim()).to_path_buf())
}*/

pub fn lldb(&self, device: &str, lldb_server: &Path, executable: &Path) -> Result<()> {
pub fn lldb(&self, device: &str, executable: &Path, lldb_server: &Path) -> Result<()> {
/*let package = env.manifest().android().package.as_ref().unwrap();
let app_dir = self.app_dir(device, package)?;
self.shell(device, Some(package))
Expand Down

0 comments on commit 7da6f62

Please sign in to comment.