elsnosrap / adb-shell-scripts

Shell scripts to make Android development a bit easier
Apache License 2.0
11 stars 1 forks source link

In developing device specific shell scripts. #1

Open jayvialv opened 3 years ago

jayvialv commented 3 years ago

Must I extract the binaries in the $PATH and use those OEM specific binaries or is it safe to assume they don't vary drastically?

elsnosrap commented 3 years ago

Hi @jayvialv , Not sure I understand your question. If you're trying to get these helper scripts working, the instructions in the README should be accurate. For example, here are some snippets of what my ~/.bash_profile file looks like (I'm on a mac):

export ANDROID_HOME=$HOME/Library/Android/sdk

# The following is where I've cloned this repo
export SHELL_SCRIPTS_HOME=$HOME/dev/adb-shell-scripts
export PATH=$ANDROID_HOME/tools:$ANDROID_HOME/platform-tools:$ANDROID_HOME/tools/proguard/bin:$ANDROID_HOME/tools/bin:$SHELL_SCRIPTS_HOME:$ANDROID_HOME/build-tools/latest