mirror of https://github.com/auygun/kaliber.git
7 lines
167 B
Plaintext
7 lines
167 B
Plaintext
|
#!/bin/bash
|
||
|
BUILD="$1"
|
||
|
if [[ -z "$1" ]]; then
|
||
|
BUILD="debug"
|
||
|
fi
|
||
|
adb logcat | ndk-stack -sym ./app/build/intermediates/merged_native_libs/"$BUILD"/out/lib/arm64-v8a
|