UniApp Android高德地图黑屏

如何在uniapp中引入高德地图可以参考这篇文章,http://www.xiongdalin.com/2019/11/27/unaipp-amap/。不过引入之后如果离线打包那么很可能在安卓系统上会黑屏,因为没有引入对应的sdk。

如果要解决这个问题需要引入:

implementation files('libs/map-amap-release.aar')
implementation files('libs/amap-libs-release.aar')
# 不要同时引入amap-gp-libs-release

官方文档中没有说明如何引入高德的sdk,如果通过高德下载sdk导入会导致各种冲突,同样引入上面的amap-gp-libs-release也会导致各种冲突。

Continue Reading

RetDec IDA plugin

idaplugin

RetDec plugin for IDA (Interactive Disassembler).

The plugin is compatible with the IDA 7.5+ versions. The plugin does NOT work with IDA 6.x, IDA 7.0-7.4, or freeware version of IDA 7.0. The plugin comes at both 32-bit and 64-bit address space variants (both are 64-bit binaries). I.e. it works in both ida and ida64. At the moment, it can decompile the following architectures:

  • 32-bit: x86, arm, mips, and powerpc.
  • 64-bit: x86-64, arm64.
Continue Reading