Error: ByteBuddyAgent for ByteBuddy
Error: ByteBuddyAgent for ByteBuddy
无法在 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
Android只支持官方JavaAPI的一个子集。 Android 不支持工具 API,这使得无法安装代理。有关此限制,请参阅文档。
无法在 android
中安装 ByteBuddyAgentbuild.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
Android只支持官方JavaAPI的一个子集。 Android 不支持工具 API,这使得无法安装代理。有关此限制,请参阅文档。