我正在尝试在我的应用中使用Pcap库。当我尝试编译我的依赖项时,我的build.gradle文件中出现错误:
compile 'io.pkts:pkts-core:2.0.3'
我的build.gradle文件现在看起来像:
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.3"
defaultConfig {
applicationId "com.example.android.packet_sniffer_v2"
minSdkVersion 15
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.3.0'
compile 'io.pkts:pkts-core:2.0.3'
}
创建新项目时,其他所有设置都将设置为默认的“Hello World”设置。错误:
Error converting bytecode to dex:
Cause:java.lang.RuntimeException: Exception parsing classes
似乎这是一个影响人们运行AS 2.0的新问题,但我还没有在网上找到任何解决方案。