Page 1 of 1

Move2SD with Appmgr ?

Posted: 14 Jul 2020 19:59
by DIZA
Hallo und danke für die Aufnahme hier im Forum,

ihr kennt sicherlich die APP "Appmgr III" gibt es eine Möglichkeit das verschieben von APPS auf die SD Karte
mit einem Flow zu automatisieren ? z.B. 1x täglich
Vielen Dank schon mal im Voraus für alle die sich Gedanken dazu machen und eine Idee haben.

Googletranslate:
Hello and thanks for inclusion in the forum,
you probably know the APP "Appmgr III" is there a way to automate the moving of APPS to the SD card with a
flow? e.g. 1x a day

Thank you in advance for everyone who thinks about it and has an idea.

Re: Move2SD with Appmgr ?

Posted: 18 Jul 2020 15:49
by Desmanto
You can do it using execute root command, which of course need root. You don't need the Appmgr III.
https://stackoverflow.com/questions/232 ... -using-adb
From the example in the link above, is using VLC

Code: Select all

pm install -s -r /data/app/org.videolan.vlc.betav7neon-1.apk
To move back to internal

Code: Select all

pm install -f -r /mnt/asec/org.videolan.vlc.betav7neon-1/pkg.apk
But I always against move2sd. It breaks app functionality and can't move everything, which waste the space more. If you have limited storage, and have android 6.0 above, you better use adoptable storage method (which I also against it actually, but less evil than move2sd).

Re: Move2SD with Appmgr ?

Posted: 20 Jul 2020 13:31
by DIZA
OK, thanks for the feedback. But that's not the way I've been looking for. I am aware of the advantages and disadvantages of moving to SD. Therefore I had the hope to be able to do this with the Appmgr. I have already defined which apps will be moved.

Re: Move2SD with Appmgr ?

Posted: 22 Jul 2020 15:50
by Desmanto
If you still want to use Appmgr, you can automate it using Control UI. viewtopic.php?f=6&t=7320
But you got to define some kind of loop here, so it is quite advanced usage already. I don't use Appmgr nor move2sd, so can't test it.

Re: Move2SD with Appmgr ?

Posted: 03 Aug 2020 20:54
by DIZA
Super interesting function.
I've tried a lot with it now. But I didn't make it.
I think I will have to continue doing it manually.
I'll try a little more with it. Thanks for the hint.

Update:
After many attempts, it worked and it works very well.
Thank you again for the solution.