lamda 5.3__tar.gz → 5.6__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {lamda-5.3 → lamda-5.6}/PKG-INFO +1 -1
- {lamda-5.3 → lamda-5.6}/README.md +1 -0
- {lamda-5.3 → lamda-5.6}/lamda/__init__.py +1 -1
- {lamda-5.3 → lamda-5.6}/lamda/client.py +9 -7
- {lamda-5.3 → lamda-5.6}/lamda.egg-info/PKG-INFO +1 -1
- {lamda-5.3 → lamda-5.6}/lamda/bcast.proto +0 -0
- {lamda-5.3 → lamda-5.6}/lamda/const.py +0 -0
- {lamda-5.3 → lamda-5.6}/lamda/exceptions.py +0 -0
- {lamda-5.3 → lamda-5.6}/lamda/google/protobuf/any.proto +0 -0
- {lamda-5.3 → lamda-5.6}/lamda/google/protobuf/api.proto +0 -0
- {lamda-5.3 → lamda-5.6}/lamda/google/protobuf/compiler/plugin.proto +0 -0
- {lamda-5.3 → lamda-5.6}/lamda/google/protobuf/descriptor.proto +0 -0
- {lamda-5.3 → lamda-5.6}/lamda/google/protobuf/duration.proto +0 -0
- {lamda-5.3 → lamda-5.6}/lamda/google/protobuf/empty.proto +0 -0
- {lamda-5.3 → lamda-5.6}/lamda/google/protobuf/field_mask.proto +0 -0
- {lamda-5.3 → lamda-5.6}/lamda/google/protobuf/source_context.proto +0 -0
- {lamda-5.3 → lamda-5.6}/lamda/google/protobuf/struct.proto +0 -0
- {lamda-5.3 → lamda-5.6}/lamda/google/protobuf/timestamp.proto +0 -0
- {lamda-5.3 → lamda-5.6}/lamda/google/protobuf/type.proto +0 -0
- {lamda-5.3 → lamda-5.6}/lamda/google/protobuf/wrappers.proto +0 -0
- {lamda-5.3 → lamda-5.6}/lamda/rpc/application.proto +0 -0
- {lamda-5.3 → lamda-5.6}/lamda/rpc/debug.proto +0 -0
- {lamda-5.3 → lamda-5.6}/lamda/rpc/file.proto +0 -0
- {lamda-5.3 → lamda-5.6}/lamda/rpc/policy.proto +0 -0
- {lamda-5.3 → lamda-5.6}/lamda/rpc/proxy.proto +0 -0
- {lamda-5.3 → lamda-5.6}/lamda/rpc/services.proto +0 -0
- {lamda-5.3 → lamda-5.6}/lamda/rpc/settings.proto +0 -0
- {lamda-5.3 → lamda-5.6}/lamda/rpc/shell.proto +0 -0
- {lamda-5.3 → lamda-5.6}/lamda/rpc/status.proto +0 -0
- {lamda-5.3 → lamda-5.6}/lamda/rpc/storage.proto +0 -0
- {lamda-5.3 → lamda-5.6}/lamda/rpc/types.proto +0 -0
- {lamda-5.3 → lamda-5.6}/lamda/rpc/uiautomator.proto +0 -0
- {lamda-5.3 → lamda-5.6}/lamda/rpc/util.proto +0 -0
- {lamda-5.3 → lamda-5.6}/lamda/rpc/wifi.proto +0 -0
- {lamda-5.3 → lamda-5.6}/lamda/types.py +0 -0
- {lamda-5.3 → lamda-5.6}/lamda.egg-info/SOURCES.txt +0 -0
- {lamda-5.3 → lamda-5.6}/lamda.egg-info/dependency_links.txt +0 -0
- {lamda-5.3 → lamda-5.6}/lamda.egg-info/not-zip-safe +0 -0
- {lamda-5.3 → lamda-5.6}/lamda.egg-info/requires.txt +0 -0
- {lamda-5.3 → lamda-5.6}/lamda.egg-info/top_level.txt +0 -0
- {lamda-5.3 → lamda-5.6}/setup.cfg +0 -0
- {lamda-5.3 → lamda-5.6}/setup.py +0 -0
{lamda-5.3 → lamda-5.6}/PKG-INFO
RENAMED
@@ -1002,13 +1002,6 @@ class ApplicationOpStub:
|
|
1002
1002
|
req = protos.ApplicationRequest(name=self.applicationId)
|
1003
1003
|
r = self.stub.removeFromDozeModeWhiteList(req)
|
1004
1004
|
return True
|
1005
|
-
def install_from_local_file(self, fpath):
|
1006
|
-
"""
|
1007
|
-
安装设备上的 apk 文件(注意此路径为设备上的 apk 路径)
|
1008
|
-
"""
|
1009
|
-
req = protos.ApplicationRequest(path=fpath)
|
1010
|
-
r = self.stub.installFromLocalFile(req)
|
1011
|
-
return r
|
1012
1005
|
def is_installed(self):
|
1013
1006
|
"""
|
1014
1007
|
检查应用是否已经安装
|
@@ -1056,6 +1049,13 @@ class ApplicationStub(BaseServiceStub):
|
|
1056
1049
|
req.extras.update(extras)
|
1057
1050
|
r = self.stub.startActivity(req)
|
1058
1051
|
return r.value
|
1052
|
+
def install_app_file(self, fpath):
|
1053
|
+
"""
|
1054
|
+
安装设备上的 apk 文件(注意此路径为设备上的 apk 路径)
|
1055
|
+
"""
|
1056
|
+
req = protos.ApplicationRequest(path=fpath)
|
1057
|
+
r = self.stub.installFromLocalFile(req)
|
1058
|
+
return r
|
1059
1059
|
def __call__(self, applicationId):
|
1060
1060
|
return ApplicationOpStub(self.stub, applicationId)
|
1061
1061
|
|
@@ -1844,6 +1844,8 @@ class Device(object):
|
|
1844
1844
|
def file_stat(self, fpath):
|
1845
1845
|
return self.stub("File").file_stat(fpath)
|
1846
1846
|
# 快速调用: Application
|
1847
|
+
def install_app_file(self, rpath):
|
1848
|
+
return self.stub("Application").install_app_file(rpath)
|
1847
1849
|
def current_application(self):
|
1848
1850
|
return self.stub("Application").current_application()
|
1849
1851
|
def enumerate_all_pkg_names(self):
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
{lamda-5.3 → lamda-5.6}/setup.py
RENAMED
File without changes
|