Home | History | Annotate | Download | only in Android
      1 def getRoot(config):
      2   if not config.parent:
      3     return config
      4   return getRoot(config.parent)
      5 
      6 root = getRoot(config)
      7 
      8 if root.android != "1":
      9   config.unsupported = True
     10 
     11 config.substitutions.append( ("%device", "/data/local/tmp/Output") )
     12