mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-09-16 07:52:35 +03:00
init: --android-home for forcing the path to the Android SDK
This allows the user to set the path to their Android SDK from the command line. This option is named after the standard env var ANDROID_HOME, as used in the build.xml generated by `android update project`. --android-home takes precendence over the ANDROID_HOME env var if it is set.
This commit is contained in:
parent
cc089b49b1
commit
66df02d5f8
4 changed files with 131 additions and 33 deletions
|
@ -123,8 +123,8 @@ def read_config(opts, config_file='config.py'):
|
|||
def test_sdk_exists(c):
|
||||
if c['sdk_path'] == None:
|
||||
# c['sdk_path'] is set to the value of ANDROID_HOME by default
|
||||
logging.critical("Neither ANDROID_HOME nor sdk_path is set, no Android SDK found!")
|
||||
logging.info('Set ANDROID_HOME to the path to your SDK, i.e.:')
|
||||
logging.critical('No Android SDK found! ANDROID_HOME is not set and sdk_path is not in config.py!')
|
||||
logging.info('You can use ANDROID_HOME to set the path to your SDK, i.e.:')
|
||||
logging.info('\texport ANDROID_HOME=/opt/android-sdk')
|
||||
return False
|
||||
if not os.path.exists(c['sdk_path']):
|
||||
|
@ -133,6 +133,9 @@ def test_sdk_exists(c):
|
|||
if not os.path.isdir(c['sdk_path']):
|
||||
logging.critical('Android SDK path "' + c['sdk_path'] + '" is not a directory!')
|
||||
return False
|
||||
if not os.path.isdir(os.path.join(c['sdk_path'], 'build-tools')):
|
||||
logging.critical('Android SDK path "' + c['sdk_path'] + '" does not contain "build-tools/"!')
|
||||
return False
|
||||
return True
|
||||
|
||||
def write_password_file(pwtype, password=None):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue