我想要用Android Beacon Library來讀取beacon
我參考Android Beacon Library網站
用來implements BeaconConsumer
在build.gradle裡面我是這樣寫
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.1'
implementation 'org.altbeacon:android-beacon-library:2+'//這一行
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
}
}
但是這樣會出現錯誤
Could not find method implementation() for arguments [org.altbeacon:android-beacon-library:2+] on object of type org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler.
我試了很多方法也換用其他的依賴方法
也到MVNrepository裡面找過了
請問有人可以告訴我該怎麼解決嗎?
謝謝
不太熟,會是放錯 build.gradle ? 試試另一個 build.gradle(Module: app)
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
以下是我測試結果,可以正常使用