Last active
February 6, 2023 09:18
-
-
Save tonybenoy/f73984b2c4ec8fca16efc400c7409e36 to your computer and use it in GitHub Desktop.
Install apps from Android device to chromebook
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Figure out your own way of syncing apps from | |
| # an android device. I use google files and syncthings. | |
| # Share the folder with linux. I've named it msapps | |
| # I started it as a way to sync Microsoft apps | |
| for apk in /mnt/chromeos/MyFiles/Downloads/msapps/*.apk | |
| do | |
| adb install $apk | |
| done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment