mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
7 lines
269 B
Bash
Executable file
7 lines
269 B
Bash
Executable file
#!/bin/sh
|
|
# produces a fake avdmanager from buildozer settings
|
|
# may be useful with fdroid build scripts (outputs a fake avdmanager script)
|
|
echo "#!/bin/bash"
|
|
cat buildozer.spec | \
|
|
grep -e "^android[.]api" | \
|
|
sed -e "s/android.api\(.*\)/echo 'API level:\1'/"
|