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