我只是尝试从本地 bitcoinj jar 切换到从 maven Central 提取的版本,并面临一个奇怪的问题。生成的 apk 的设备兼容性标记已损坏。
本节显示了我尝试的更改:
// compile "com.google:bitcoinj:0.11.1"
// the above looks like a really good idea, but unfortunately the apk resulting from this
// is broken in the way that it is marked as available only for x86_64 - which are 0 devices
// in google play at the moment - something strange gets pulled in there
compile files('libs/bitcoinj-0.8.jar')
在调查这里有什么不想要的东西之前,我只是想在这里问一下是否有人面临同样的事情。奇怪的是,这似乎是一个 jar 依赖项,我不希望这样的事情被拉出来 - 不应该有本机代码..