blob: de033e14c0f6683f86c2c4475dd41b59d1cd25e9 [file] [log] [blame]
#!/bin/sh
#
# Returns 0 (true) if this device has libandroid.so, which we
# are using to detect if we are running on Android. Returns 1
# (false) otherwise.
#
if [ -e "/system/lib/libandroid.so" ]; then
exit 0
fi
exit 1