Skip to content

Commit

Permalink
v2.8.9
Browse files Browse the repository at this point in the history
  • Loading branch information
rafa0128 committed Mar 6, 2024
1 parent f4eaa81 commit 5d54914
Show file tree
Hide file tree
Showing 10 changed files with 21 additions and 20 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

SoloX - Real-time collection tool for Android/iOS performance data.

We are committed to solving inefficient, cumbersome test execution, and our goal is Simple Test In SoloX!
Quickly locate and analyze performance issues to improve application performance and quality. No need for ROOT/jailbreak, plug and play.

![10 37 192 142_50003__platform=Android lan=en](https://github.com/smart-test-ti/SoloX/assets/24454096/5b33183c-dcf3-48b7-8c91-dfe20bff3d5c)

Expand Down Expand Up @@ -153,6 +153,7 @@ change to
from view.apis import api

```

* run [python ./solox/debug.py]

```python
Expand All @@ -172,4 +173,4 @@ python debug.py
## 💕Thanks

- https://github.com/alibaba/taobao-iphone-device
- https://github.com/Genymobile/scrcpy
- https://github.com/Genymobile/scrcpy
2 changes: 1 addition & 1 deletion solox/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

from __future__ import absolute_import

__version__ = '2.8.8'
__version__ = '2.8.9'
4 changes: 2 additions & 2 deletions solox/public/_iosPerf.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
from collections import defaultdict, namedtuple
from typing import Any, Iterator, Optional, Tuple, Union
import weakref
from public.iosperf._device import BaseDevice
from public.iosperf._proto import *
from solox.public.iosperf._device import BaseDevice
from solox.public.iosperf._proto import *


class DataType(str, enum.Enum):
Expand Down
4 changes: 2 additions & 2 deletions solox/public/android_fps.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
import time
import traceback
from logzero import logger
from public.adb import adb
from public.common import Devices
from solox.public.adb import adb
from solox.public.common import Devices

d = Devices()

Expand Down
10 changes: 5 additions & 5 deletions solox/public/apm.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
from logzero import logger
import tidevice
import multiprocessing
import public._iosPerf as iosP
from public.iosperf._perf import DataType, Performance
from public.adb import adb
from public.common import Devices, File, Method, Platform, Scrcpy
from public.android_fps import FPSMonitor, TimeUtils
import solox.public._iosPerf as iosP
from solox.public.iosperf._perf import DataType, Performance
from solox.public.adb import adb
from solox.public.common import Devices, File, Method, Platform, Scrcpy
from solox.public.android_fps import FPSMonitor, TimeUtils

d = Devices()
f = File()
Expand Down
6 changes: 3 additions & 3 deletions solox/public/apm_pk.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
import re
import os
import time
from public.adb import adb
from public.common import Devices, File
from public.android_fps import FPSMonitor, TimeUtils
from solox.public.adb import adb
from solox.public.common import Devices, File
from solox.public.android_fps import FPSMonitor, TimeUtils

d = Devices()
f = File()
Expand Down
2 changes: 1 addition & 1 deletion solox/public/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
from jinja2 import Environment, FileSystemLoader
from tidevice._device import Device
from tidevice import Usbmux
from public.adb import adb
from solox.public.adb import adb


class Platform:
Expand Down
Binary file removed solox/public/tool/matrix-apk-canary-2.1.0.jar
Binary file not shown.
6 changes: 3 additions & 3 deletions solox/view/apis.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
from logzero import logger
from flask import Blueprint
from solox import __version__
from public.apm import CPU, Memory, Network, FPS, Battery, GPU, Disk, Target
from public.apm_pk import CPU_PK, MEM_PK, Flow_PK, FPS_PK
from public.common import Devices, File, Method, Install, Platform, Scrcpy
from solox.public.apm import CPU, Memory, Network, FPS, Battery, GPU, Disk, Target
from solox.public.apm_pk import CPU_PK, MEM_PK, Flow_PK, FPS_PK
from solox.public.common import Devices, File, Method, Install, Platform, Scrcpy

d = Devices()
f = File()
Expand Down
2 changes: 1 addition & 1 deletion solox/view/pages.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from flask import render_template
from flask import request
from logzero import logger
from public.common import Devices,File,Method
from solox.public.common import Devices,File,Method

page = Blueprint("page", __name__)
d = Devices()
Expand Down

0 comments on commit 5d54914

Please sign in to comment.