You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
368 B
9 lines
368 B
alias ls='ls $LS_OPTIONS'
|
|
alias d8c='dalvikvm \
|
|
-cp $EXT_PREFIX/opt/d8/classes.dex:$EXT_PREFIX/opt/d8/classes2.dex:$EXT_PREFIX/opt/d8/classes3.dex:$EXT_PREFIX/opt/d8/classes4.dex \
|
|
com.android.tools.r8.D8 \
|
|
--lib $EXT_PREFIX/opt/d8/android.jar'
|
|
alias edit='emacsclient -c -a ""'
|
|
function cdproj () {
|
|
cd $(dirname $(readlink $(which $1 | head -n 1)))
|
|
}
|