第一次尝试实现InstaBug,但是,当我初始化它时,
new Instabug.Builder(this, "XXXXXXXXXXXXXXXXXXXX")
.setInvocationEvent(Instabug.IBGInvocationEvent.IBGInvocationEventShake)
.build();
Android Studio表示无法解析符号Builder
虽然Builder从 java.lang.Object 扩展,但无助于解释为什么会发生这种情况。任何修复?
编辑:
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.1.1'
compile 'com.google.code.gson:gson:2.5'
compile 'com.android.support:recyclerview-v7:23.1.1'
compile "com.google.android.gms:play-services:8.4.0"
compile 'com.android.support:cardview-v7:+'
compile 'com.android.support:design:+'
compile 'com.squareup.picasso:picasso:2.5.2'
compile 'com.commit451:PhotoView:1.2.4'
compile 'net.danlew:android.joda:2.9.1'
compile project(":volley")
compile files('libs/YouTubeAndroidPlayerApi.jar')
compile ("com.instabug.library:instabugsupport:+") { exclude group: 'com.mcxiaoke.volley', module: 'library' }
答案 0 :(得分:1)
Instabug.Builder
是在Instabug SDK的v2 +中引入的。
您可以尝试在gradle中指定最新版本的Instabug,如下所示:
compile('com.instabug.library:instabugcompat:2.2.1')
P.S:v2.2.1
在撰写本文时是最新的
P.S2:instabugcompat
相当于v2 +中的instabugsupport
P.S3:Instabug不再包括Volley,所以你不再需要排除它
有关详情,请随时提出。您可以查看this out以及@ m-d提到的