Skip to content

Commit

Permalink
Merge pull request #1 from 6G-SANDBOX/update
Browse files Browse the repository at this point in the history
Update
  • Loading branch information
NaniteBased authored Jun 26, 2023
2 parents a399f22 + 7441221 commit b6a879b
Show file tree
Hide file tree
Showing 41 changed files with 58 additions and 37 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.28307.645
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tap.Plugins.UMA.Android", "Tap.Plugins.UMA.Android\Tap.Plugins.UMA.Android.csproj", "{3EFF847F-EEFC-4A7A-B4E8-5DB9B7C2DACF}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OpenTAP.Android", "OpenTAP.Android\OpenTAP.Android.csproj", "{3EFF847F-EEFC-4A7A-B4E8-5DB9B7C2DACF}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Author: Bruno Garcia Garcia <bgarcia@lcc.uma.es>
// Author: Bruno Garcia Garcia <bgg@uma.es>
// Copyright: Copyright 2016-2021 Universidad de Málaga (University of Málaga), Spain
//
// This file is part of the TRIANGLE project. The TRIANGLE project is funded by the European Union’s
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Author: Bruno Garcia Garcia <bgarcia@lcc.uma.es>
// Author: Bruno Garcia Garcia <bgg@uma.es>
// Copyright: Copyright 2016-2021 Universidad de Málaga (University of Málaga), Spain
//
// This file is part of the TRIANGLE project. The TRIANGLE project is funded by the European Union’s
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Author: Bruno Garcia Garcia <bgarcia@lcc.uma.es>
// Author: Bruno Garcia Garcia <bgg@uma.es>
// Copyright: Copyright 2016-2021 Universidad de Málaga (University of Málaga), Spain
//
// This file is part of the TRIANGLE project. The TRIANGLE project is funded by the European Union’s
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Author: Bruno Garcia Garcia <bgarcia@lcc.uma.es>
// Author: Bruno Garcia Garcia <bgg@uma.es>
// Copyright: Copyright 2016-2021 Universidad de Málaga (University of Málaga), Spain
//
// This file is part of the TRIANGLE project. The TRIANGLE project is funded by the European Union’s
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Author: Bruno Garcia Garcia <bgarcia@lcc.uma.es>
// Author: Bruno Garcia Garcia <bgg@uma.es>
// Copyright: Copyright 2016-2021 Universidad de Málaga (University of Málaga), Spain
//
// This file is part of the TRIANGLE project. The TRIANGLE project is funded by the European Union’s
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Author: Bruno Garcia Garcia <bgarcia@lcc.uma.es>
// Author: Bruno Garcia Garcia <bgg@uma.es>
// Copyright: Copyright 2016-2021 Universidad de Málaga (University of Málaga), Spain
//
// This file is part of the TRIANGLE project. The TRIANGLE project is funded by the European Union’s
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Author: Bruno Garcia Garcia <bgarcia@lcc.uma.es>
// Author: Bruno Garcia Garcia <bgg@uma.es>
// Copyright: Copyright 2016-2021 Universidad de Málaga (University of Málaga), Spain
//
// This file is part of the TRIANGLE project. The TRIANGLE project is funded by the European Union’s
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Author: Bruno Garcia Garcia <bgarcia@lcc.uma.es>
// Author: Bruno Garcia Garcia <bgg@uma.es>
// Copyright: Copyright 2016-2021 Universidad de Málaga (University of Málaga), Spain
//
// This file is part of the TRIANGLE project. The TRIANGLE project is funded by the European Union’s
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Author: Bruno Garcia Garcia <bgarcia@lcc.uma.es>
// Author: Bruno Garcia Garcia <bgg@uma.es>
// Copyright: Copyright 2016-2021 Universidad de Málaga (University of Málaga), Spain
//
// This file is part of the TRIANGLE project. The TRIANGLE project is funded by the European Union’s
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
namespace Tap.Plugins.UMA.Android.Instruments
{
[Display("adb Instrument",
Group: "UMA",
Group: "Android",
Description: "Instrument for executing commands through Android's adb tool")]
public class AdbInstrument : Instrument
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,14 @@
<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFramework>netstandard2.0</TargetFramework>
<UseWindowsForms>true</UseWindowsForms>
<UseWindowsForms>false</UseWindowsForms>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
</PropertyGroup>

<ItemGroup Condition="'$(IsWindows)'=='True'">
<AdditionalOpenTapPackage Include="Developer's System CE" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="OpenTAP" Version="9.*" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"profiles": {
"Editor": {
"commandName": "Executable",
"executablePath": "./editor.exe"
}
}
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Author: Bruno Garcia Garcia <bgarcia@lcc.uma.es>
// Author: Bruno Garcia Garcia <bgg@uma.es>
// Copyright: Copyright 2016-2021 Universidad de Málaga (University of Málaga), Spain
//
// This file is part of the TRIANGLE project. The TRIANGLE project is funded by the European Union’s
Expand All @@ -16,7 +16,7 @@
namespace Tap.Plugins.UMA.Android.Steps
{
[Display("Activity Manager",
Groups: new string[] { "UMA", "Android" },
Groups: new string[] { "Android" },
Description: "Sends commands to the device's Activity Manager.")]
public class ActivityManagerStep : AdbCommandStepBase
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
namespace Tap.Plugins.UMA.Android.Steps
{
[Display("adb Command",
Groups: new string[] { "UMA", "Android" },
Groups: new string[] { "Android" },
Description: "Send a command using Android's adb tool")]
public class AdbCommandStep : AdbCommandStepBase
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Author: Bruno Garcia Garcia <bgarcia@lcc.uma.es>
// Author: Bruno Garcia Garcia <bgg@uma.es>
// Copyright: Copyright 2016-2021 Universidad de Málaga (University of Málaga), Spain
//
// This file is part of the TRIANGLE project. The TRIANGLE project is funded by the European Union’s
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
namespace Tap.Plugins.UMA.Android.Steps
{
[Display("Clear logcat",
Groups: new string[] { "UMA", "Android" },
Groups: new string[] { "Android" },
Description: "Clears the logcat from an Android device.")]
public class ClearLogcatStep : AdbStepBase
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
namespace Tap.Plugins.UMA.Android.Steps
{
[Display("Logcat",
Groups: new string[] { "UMA", "Android" },
Groups: new string[] { "Android" },
Description: "Gets the logcat from an Android device.")]
public class LogcatStep : AdbStepBase
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
namespace Tap.Plugins.UMA.Android.Steps
{
[Display("Retrieve Background Logcat",
Groups: new string[] { "UMA", "Android" },
Groups: new string[] { "Android" },
Description: "Gets the logcat from background process running in an Android device, and stops it.")]
public class RetrieveBackgroundLogcatStep : AdbStepBase
{
Expand Down
26 changes: 26 additions & 0 deletions OpenTAP.Android/OpenTAP.Android/package.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
InfoLink: Specifies a location where additional information about the package can be found.
Version: The version of the package. This can be automatically updated from GIT.
Configuration: Can be any kind of information, such as bit version or git branch name.
For Version and Configuration the following macros are available (Only works if the project directory is under Git source control):
$(GitVersion) - Gets the version from Git.
-->
<Package Name="Android Debug Bridge" xmlns="http://opentap.io/schemas/package" InfoLink="https://morse.uma.es/"
OS="Windows,Linux,OSX" Version="1.0.7">
<Description>
Base plugin for controlling Android devices and applications through Adb.
<Organisation>University of Malaga</Organisation>
</Description>

<Owner>ITIS UMA</Owner>
<SourceUrl>https://github.com/6G-SANDBOX/OpenTAP.Android</SourceUrl>
<SourceLicense>Apache-2.0</SourceLicense>

<Files>
<File Path="OpenTAP.Android.dll">
<SetAssemblyInfo Attributes="Version"/>
</File>
</Files>
</Package>
18 changes: 0 additions & 18 deletions Tap.Plugins.UMA.Android/Tap.Plugins.UMA.Android/package.xml

This file was deleted.

0 comments on commit b6a879b

Please sign in to comment.