Gomobile库使用隐藏的API方法

Gomobile library uses hidden API method

我有一个 Android 应用程序,它使用 Golang 库 (.aar) 使用 Gomobile 创建。每当应用程序尝试从库中创建 class 的实例或调用库方法时,它都会崩溃并显示下一条日志消息:

W/om.example.cal: Accessing hidden method Landroid/app/AppGlobals;->getInitialApplication()Landroid/app/Application; (greylist, reflection, allowed)
A/libc: Fatal signal 6 (SIGABRT), code -1 (SI_QUEUE) in tid 11110 (om.example.calc), pid 11075 (om.example.calc)
Application terminated.

getInitialApplication 方法位于 Google's light greylist (line 349)。 我知道在 SDK 版本 28 及更高版本上无法访问任何隐藏方法,这就是为什么我在 build.gradle 中编写了下一个(26 是 Play Market 的最低版本):

compileSdkVersion 26
minSdkVersion 15
targetSdkVersion 26
implementation fileTree(dir: 'libs', include: ['*.jar', '*.aar'])
implementation 'com.android.support:appcompat-v7:26.1.0'

但这并没有帮助。如何让它发挥作用? 备注:测试设备是在 Ubuntu 18.04.

上模拟的 Nexus S

问题是我在模拟器上调试了我的应用程序。显然,它与本机库不兼容。在 phone 上调试没问题。