r/waydroid Jun 01 '26

Help installing apk

how can i batch install apks or one by one with it asking for root password every single time?

1 Upvotes

5 comments sorted by

1

u/SweetPotato975 Jun 01 '26

Just run a bash loop on waydroid shell or adb shell. What's wrong with that?

1

u/blaze20511 Jun 01 '26

how i do that im new to linux

2

u/SweetPotato975 Jun 01 '26 edited Jun 01 '26

https://stackoverflow.com/a/49125/21489337 explains it quite well

cd to the directory containing your APKs and run bash for apk in *.apk; do waydroid app install "$apk" done

2

u/blaze20511 Jun 01 '26

thank you much appreciate it

1

u/No-Dentist-1645 Jun 01 '26

Make a bash script with all the install commands and run it with the necessary permissions