We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 137662c commit e50232cCopy full SHA for e50232c
README.md
@@ -21,3 +21,20 @@
21

22
23
Đến đây chỉ cần mở monitor lên và dùng thôi (nếu mở thông thường không được thì hãy thử mở bằng Administrator)
24
+
25
+- Hoặc ném method này vào static class nào đó rồi gọi nó ra cũng có thể mở được Monitor lên nhé
26
27
+```csharp
28
+ public static void OpenMonitor()
29
+ {
30
+ string path = $"{AndroidExternalToolsSettings.sdkRootPath}/tools/monitor.bat";
31
+ if (File.Exists(path))
32
33
+ Process process = new Process();
34
+ process.StartInfo.FileName = path;
35
+ process.StartInfo.Verb = "runas";
36
+ process.StartInfo.WindowStyle = ProcessWindowStyle.Hidden;
37
+ process.Start();
38
+ }
39
40
+```
0 commit comments