Skip to content

Commit c64521d

Browse files
committed
AdbClient build version converted to int
- Version 7.0.4
1 parent 175183a commit c64521d

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

AndroidViewClient/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from setuptools import setup, find_packages
44

55
setup(name='androidviewclient',
6-
version='7.0.3',
6+
version='7.0.4',
77
description='''AndroidViewClient is a 100% pure python tool that
88
simplifies test script creation providing higher level operations and the ability of
99
obtaining the tree of Views present at any given moment on the device or emulator screen.

AndroidViewClient/src/com/dtmilano/android/adb/adbclient.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
@author: Diego Torres Milano
1818
'''
1919

20-
__version__ = '7.0.2'
20+
__version__ = '7.0.4'
2121

2222
import sys
2323
import warnings
@@ -96,7 +96,7 @@ def __init__(self, serialno=None, hostname=HOSTNAME, port=PORT, settransport=Tru
9696
self.isTransportSet = False
9797
if settransport and serialno != None:
9898
self.__setTransport()
99-
self.build[VERSION_SDK_PROPERTY] = self.__getProp(VERSION_SDK_PROPERTY)
99+
self.build[VERSION_SDK_PROPERTY] = int(self.__getProp(VERSION_SDK_PROPERTY))
100100

101101

102102
@staticmethod
@@ -113,7 +113,7 @@ def setSerialno(self, serialno):
113113
raise ValueError("Transport is already set, serialno cannot be set once this is done.")
114114
self.serialno = serialno
115115
self.__setTransport()
116-
self.build[VERSION_SDK_PROPERTY] = self.__getProp(VERSION_SDK_PROPERTY)
116+
self.build[VERSION_SDK_PROPERTY] = int(self.__getProp(VERSION_SDK_PROPERTY))
117117

118118
def setReconnect(self, val):
119119
self.reconnect = val

AndroidViewClient/tools/culebra

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ ___________________/ /__/ /__/ /__/ /________________________________
1919
2020
'''
2121

22-
__version__ = '7.0.3'
22+
__version__ = '7.0.4'
2323

2424
import re
2525
import sys

AndroidViewClient/tools/dump

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Created on Feb 3, 2012
66
@author: diego
77
'''
88

9-
__version__ = '7.0.3'
9+
__version__ = '7.0.4'
1010

1111
import sys
1212
import os

0 commit comments

Comments
 (0)