WIP: move logic to Core project
This commit is contained in:
parent
54e04da524
commit
7a7cefe7b5
12 changed files with 267 additions and 200 deletions
10
MetaforceInstaller.Core/Intefaces/IAdbService.cs
Normal file
10
MetaforceInstaller.Core/Intefaces/IAdbService.cs
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
using MetaforceInstaller.Core.Models;
|
||||
|
||||
namespace MetaforceInstaller.Core.Intefaces;
|
||||
|
||||
public interface IAdbService
|
||||
{
|
||||
public void InstallApk(string apkPath);
|
||||
public void CopyFile(string localPath, string remotePath);
|
||||
public DeviceInfo GetDeviceInfo();
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue