Created
May 20, 2021 20:39
-
-
Save eirenik0/d272ebf4450086ae79a140a99cd7d622 to your computer and use it in GitHub Desktop.
Install apps for Android Auto without Root from Mac Os and Linux
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
#!/bin/bash | |
adb push $1 /data/local/tmp/app.apk | |
adb shell pm install -i "com.android.vendoring" -r /data/local/tmp/app.apk | |
adb shell rm /data/local/tmp/app.apk |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment