mirror of
https://github.com/kiwix/kiwix-android.git
synced 2025-08-03 10:46:53 -04:00
7 lines
264 B
Bash
Executable File
7 lines
264 B
Bash
Executable File
#!/bin/bash
|
|
if [ -f bin/Kiwix-debug.apk ]
|
|
then
|
|
../src/dependencies/android-sdk/sdk/platform-tools/adb uninstall org.kiwix.kiwixmobile ; ../src/dependencies/android-sdk/sdk/platform-tools/adb install bin/Kiwix-debug.apk
|
|
else
|
|
echo "No APK file available!"
|
|
fi |