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
#include <iostream> | |
#include <iomanip> | |
#include <typeinfo> | |
#include <cxxabi.h> | |
static char *getDemangledName(const char *mangledName) { | |
int status; | |
return abi::__cxa_demangle(mangledName, 0, 0, &status); | |
} |
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
// copy to the build.gradle file of your project's application module | |
project.afterEvaluate { | |
final Set<File> possibleOutputFiles = new HashSet<>() | |
android.applicationVariants.each { | |
it.outputs.each { BaseVariantOutput output -> | |
possibleOutputFiles.add(output.outputFile) | |
} | |
} |
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
// | |
// _oo0oo_ | |
// o8888888o | |
// 88" . "88 | |
// (| -_- |) | |
// 0\ = /0 | |
// ___/`---'\___ | |
// .' \\| |// '. | |
// / \\||| : |||// \ | |
// / _||||| -:- |||||- \ |
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
for i in `adb shell find /system/vendor/app -name '*.apk'`; | |
do | |
adb pull $i | |
done |