Added Android platform detection
This commit is contained in:
parent
165e620043
commit
ea3716f48e
|
@ -0,0 +1,7 @@
|
||||||
|
def get_platform():
|
||||||
|
from os import environ
|
||||||
|
if 'ANDROID_ARGUMENT' in environ:
|
||||||
|
return 'android'
|
||||||
|
else:
|
||||||
|
import sys
|
||||||
|
return sys.platform
|
Loading…
Reference in New Issue