无法将库正确导入Android Studio

时间:2018-05-09 16:05:16

标签: android

我正在研究obd2扫描仪应用程序。我需要从Github导入obd-java-api库。在自述文件中,它说要包括

dependencies {
    compile 'com.github.pires:obd-java-api:1.0'
}

在项目的build.gradle中。在我从库中编写命令后,我得到一个“无法解析符号”错误。难道我做错了什么?我从来没有在Android Studio中使用过额外的库,所以这对我来说是新的。 这是我的代码中的错误

new EchoOffObdCommand().run(socket.getInputStream(), 
    socket.getOutputStream());
new LineFeedOffObdCommand().run(socket.getInputStream(), 
    socket.getOutputStream());
new TimeoutObdCommand().run(socket.getInputStream(), 
    socket.getOutputStream());
new SelectProtocolObdCommand(ObdProtocols.AUTO).run(socket.getInputStream(), 
    socket.getOutputStream());

这是gradle文件

apply plugin: 'com.android.application'

android {
    compileSdkVersion 27
    defaultConfig {
        applicationId "com.example.aro.diagfix"
        minSdkVersion 19
        targetSdkVersion 27
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'com.android.support:design:27.1.1'
    implementation 'com.android.support.constraint:constraint-layout:1.1.0'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.2'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
    compile 'com.github.pires:obd-java-api:1.0'
}

1 个答案:

答案 0 :(得分:0)

问题得到解决。我需要在try catch中编写命令。之后我可以从github库导入!

([^_]*)_(.*)_(^_)*