android-apk-installer

This commit is contained in:
simono41 2017-10-11 02:28:44 +02:00
parent 4f40a42c29
commit ea86cbd4de
3 changed files with 23 additions and 0 deletions

2
.gitignore vendored
View file

@ -1,2 +1,4 @@
packages packages
test test
test.apk
test2.apk

21
android-app-installer.sh Executable file
View file

@ -0,0 +1,21 @@
#!/system/xbin/bash
finds=$(find $1*.apk)
set -x
i=0
for wort in $finds
do
echo "Installiere $wort"
pm install $wort
shift
done
sync
echo "Fertig!!!"

0
test1.apk Normal file
View file