使用库

时间:2016-05-17 08:15:05

标签: android bluetooth runtime-error shared-libraries

我在Android Studio上使用蓝牙库。这个图书馆的网址与其他图书馆没有什么不同。

me.aflak.libraries:bluetooth:1.2.4

我在那个依赖项中添加该库

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.3.0'
compile 'me.aflak.libraries:bluetooth:1.2.4'}

我没有错误地同步了这个库但是当我运行那个项目时,每个R代码变成红色。

此lib的其他用户没有出错。我错在哪里?

EDIT GRADLE

android {
compileSdkVersion 23
buildToolsVersion "23.0.1"

defaultConfig {
    applicationId "goksu.in.kartalproje"
    minSdkVersion 17
    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 'me.aflak.libraries:bluetooth:1.2.4'
 } 

0 个答案:

没有答案