2

无法在 android 中安装 ByteBuddyAgent

build.gradle 中的代码

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.android.support:appcompat-v7:23.1.1'
    compile 'net.bytebuddy:byte-buddy:1.4.18'
    compile 'net.bytebuddy:byte-buddy-android:1.4.18'
    compile 'net.bytebuddy:byte-buddy-agent:1.4.18'

安装 ByteBuddyAgent 的代码

ByteBuddyAgent.install();

这是编译错误,因为java.lang没有仪器和管理包。

Error:(31, 35) error: cannot access Instrumentation
class file for java.lang.instrument.Instrumentation not found
4

1 回答 1

2

Android 仅支持官方 Java API 的子集。Android 不支持检测 API,这导致无法安装代理。有关此限制,请参阅文档。

于 2016-08-14T07:29:57.963 回答