Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Android 8, ACRA 4.10.0. No Notification when ReportingInteractionMode is NOTIFICATION #597

Closed
NLLAPPS opened this issue Sep 14, 2017 · 27 comments

Comments

@NLLAPPS
Copy link

NLLAPPS commented Sep 14, 2017

As per title. Looks like only happens when projects build and target sdk is 26 (i think)
Does it need notification channels https://developer.android.com/about/versions/oreo/android-8.0.html#notifications ?

@NLLAPPS NLLAPPS changed the title Android 8, ACR 4.10.0. No Notification when ReportingInteractionMode is NOTIFICATION Android 8, ACRA 4.10.0. No Notification when ReportingInteractionMode is NOTIFICATION Sep 14, 2017
@F43nd1r
Copy link
Member

F43nd1r commented Sep 14, 2017

Yes, it requires channels. To use channels, we'd have to use support libraries with version 26.0.0+
Those libraries have a minSdk of 14, ACRA is currently at 8. So, to fix this we'd have to drop support for Android 8-13.

@william-ferguson-au
Copy link
Member

I think a base of API 15 (Ice Cream Sandwich) is reasonable nowadays.
As of 1-SEP-2017 that caters for 99.4% of phones.

@NLLAPPS
Copy link
Author

NLLAPPS commented Sep 15, 2017

Can't it also be achieved without the support lib? You would obviously need to set compile SDK to 26 and do API level check and use 26 API for channels

@F43nd1r
Copy link
Member

F43nd1r commented Sep 15, 2017

I was working on a modularized version of acra anyways, and that structure allows for different minSdk versions for different modules. So, I created a notification module, which you can test using the following:

build.gradle:

dependencies {
    compile 'com.faendir.acra:acra-http:5.0.0-alpha4'
    compile 'com.faendir.acra:acra-notification:5.0.0-alpha4'
}

MyApplication.java:

@AcraCore(buildConfigClass = BuildConfig.class)
@AcraHttpSender(
        uri = "https://192.168.0.200/acra",
        basicAuthLogin = "***",
        basicAuthPassword = "***",
        httpMethod = HttpSender.Method.POST,
        reportType = HttpSender.Type.JSON)
@AcraNotification(
        resTitle = R.string.title,
        resText = R.string.text,
        resChannelName = R.string.app_name,
        resCommentPrompt = R.string.comment)

And the ACRA.init call as usual

@NLLAPPS
Copy link
Author

NLLAPPS commented Sep 15, 2017

Cool, it seems to have min skd 16. I have 15. I am going to use tools:overrideLibrary="org.acra.notification" to force usage. Do you think you have any API usage that isn't on 15?

@F43nd1r
Copy link
Member

F43nd1r commented Sep 15, 2017

MinSdk is on 16 because notification buttons aren't shown on 15 and below, and there is no fallback (yet).
So, users on 15 will see a notification but won't be able to interact with it.

(In case you haven't noticed, instead of bringing up a dialog as the old notification did, this just lets the user interact with the notification directly)

I think a reasonable fallback would be to just let users on old devices click the notification to send the report, still thinking about other possibilites.

@F43nd1r
Copy link
Member

F43nd1r commented Sep 16, 2017

I've pushed alpha5 with minSdk 14, fallback is as written above

@NLLAPPS
Copy link
Author

NLLAPPS commented Sep 18, 2017

I get below on Android 7. Related to https://stackoverflow.com/questions/36428868/proguard-with-autovalue??

Proguard log [editors note: hidden block because of length]

Warning:com.google.auto.common.MoreElements$1: can't find superclass or interface javax.lang.model.util.SimpleElementVisitor6
Warning:com.google.auto.common.MoreElements$2: can't find superclass or interface javax.lang.model.util.SimpleElementVisitor6
Warning:com.google.auto.common.MoreElements$3: can't find superclass or interface javax.lang.model.util.SimpleElementVisitor6
Warning:com.google.auto.common.MoreElements$4: can't find superclass or interface javax.lang.model.util.SimpleElementVisitor6
Warning:com.google.auto.common.MoreTypes$15: can't find superclass or interface javax.lang.model.util.SimpleTypeVisitor6
Warning:com.google.auto.common.MoreTypes$2: can't find superclass or interface javax.lang.model.util.SimpleTypeVisitor6
Warning:com.google.auto.common.MoreTypes$3: can't find superclass or interface javax.lang.model.util.SimpleTypeVisitor6
Warning:com.google.auto.common.MoreTypes$4: can't find superclass or interface javax.lang.model.util.SimpleTypeVisitor6
Warning:com.google.auto.common.MoreTypes$5: can't find superclass or interface javax.lang.model.util.SimpleElementVisitor6
Warning:com.google.auto.common.MoreTypes$CastingTypeVisitor: can't find superclass or interface javax.lang.model.util.SimpleTypeVisitor6
Warning:com.google.auto.common.SuperficialValidation$1: can't find superclass or interface javax.lang.model.util.AbstractElementVisitor6
Warning:com.google.auto.common.SuperficialValidation$2: can't find superclass or interface javax.lang.model.util.SimpleTypeVisitor6
Warning:com.google.auto.common.SuperficialValidation$3: can't find superclass or interface javax.lang.model.util.SimpleAnnotationValueVisitor6
Warning:com.google.auto.service.processor.AutoServiceProcessor: can't find superclass or interface javax.annotation.processing.AbstractProcessor
Warning:com.google.auto.common.MoreElements: can't find referenced class javax.lang.model.element.Element
Warning:com.google.auto.common.MoreElements: can't find referenced class javax.lang.model.element.ElementKind
Warning:com.google.auto.common.MoreElements: can't find referenced class javax.lang.model.element.Element
Warning:com.google.auto.common.MoreElements: can't find referenced class javax.lang.model.element.PackageElement
Warning:com.google.auto.common.MoreElements: can't find referenced class javax.lang.model.element.Element
Warning:com.google.auto.common.MoreElements: can't find referenced class javax.lang.model.element.TypeElement
Warning:com.google.auto.common.MoreElements: can't find referenced class javax.lang.model.element.VariableElement
Warning:com.google.auto.common.MoreElements: can't find referenced class javax.lang.model.element.ExecutableElement
Warning:com.google.auto.common.MoreElements: can't find referenced class javax.lang.model.element.Element
Warning:com.google.auto.common.MoreElements: can't find referenced class javax.lang.model.element.AnnotationMirror
Warning:com.google.auto.common.MoreElements: can't find referenced class javax.lang.model.type.DeclaredType
Warning:com.google.auto.common.MoreElements: can't find referenced class javax.lang.model.element.TypeElement
Warning:com.google.auto.common.MoreElements: can't find referenced class javax.lang.model.element.Name
Warning:com.google.auto.common.MoreElements: can't find referenced class javax.lang.model.element.ElementVisitor
Warning:com.google.auto.common.MoreElements: can't find referenced class javax.lang.model.element.PackageElement
Warning:com.google.auto.common.MoreElements: can't find referenced class javax.lang.model.element.ElementVisitor
Warning:com.google.auto.common.MoreElements: can't find referenced class javax.lang.model.element.TypeElement
Warning:com.google.auto.common.MoreElements: can't find referenced class javax.lang.model.element.ElementVisitor
Warning:com.google.auto.common.MoreElements: can't find referenced class javax.lang.model.element.VariableElement
Warning:com.google.auto.common.MoreElements: can't find referenced class javax.lang.model.element.ElementVisitor
Warning:com.google.auto.common.MoreElements: can't find referenced class javax.lang.model.element.ExecutableElement
Warning:com.google.auto.common.MoreElements: can't find referenced class javax.lang.model.element.Element
Warning:com.google.auto.common.MoreElements: can't find referenced class javax.lang.model.element.PackageElement
Warning:com.google.auto.common.MoreElements: can't find referenced class javax.lang.model.element.Element
Warning:com.google.auto.common.MoreElements: can't find referenced class javax.lang.model.element.PackageElement
Warning:com.google.auto.common.MoreElements: can't find referenced class javax.lang.model.element.Element
Warning:com.google.auto.common.MoreElements: can't find referenced class javax.lang.model.element.TypeElement
Warning:com.google.auto.common.MoreElements: can't find referenced class javax.lang.model.element.Element
Warning:com.google.auto.common.MoreElements: can't find referenced class javax.lang.model.element.VariableElement
Warning:com.google.auto.common.MoreElements: can't find referenced class javax.lang.model.element.Element
Warning:com.google.auto.common.MoreElements: can't find referenced class javax.lang.model.element.ExecutableElement
Warning:com.google.auto.common.MoreElements: can't find referenced class javax.lang.model.element.Element
Warning:com.google.auto.common.MoreElements: can't find referenced class javax.lang.model.element.TypeElement
Warning:com.google.auto.common.MoreElements: can't find referenced class javax.lang.model.element.AnnotationMirror
Warning:com.google.auto.common.MoreElements: can't find referenced class javax.lang.model.element.Element
Warning:com.google.auto.common.MoreElements: can't find referenced class javax.lang.model.element.AnnotationMirror
Warning:com.google.auto.common.MoreElements$1: can't find referenced class javax.lang.model.util.SimpleElementVisitor6
Warning:com.google.auto.common.MoreElements$1: can't find referenced class javax.lang.model.element.Element
Warning:com.google.auto.common.MoreElements$1: can't find referenced class javax.lang.model.element.PackageElement
Warning:com.google.auto.common.MoreElements$1: can't find referenced class javax.lang.model.element.Element
Warning:com.google.auto.common.MoreElements$1: can't find referenced class javax.lang.model.element.PackageElement
Warning:com.google.auto.common.MoreElements$1: can't find referenced class javax.lang.model.element.Element
Warning:com.google.auto.common.MoreElements$1: can't find referenced class javax.lang.model.util.SimpleElementVisitor6
Warning:com.google.auto.common.MoreElements$1: can't find referenced class javax.lang.model.element.PackageElement
Warning:com.google.auto.common.MoreElements$2: can't find referenced class javax.lang.model.util.SimpleElementVisitor6
Warning:com.google.auto.common.MoreElements$2: can't find referenced class javax.lang.model.element.Element
Warning:com.google.auto.common.MoreElements$2: can't find referenced class javax.lang.model.element.TypeElement
Warning:com.google.auto.common.MoreElements$2: can't find referenced class javax.lang.model.element.Element
Warning:com.google.auto.common.MoreElements$2: can't find referenced class javax.lang.model.element.TypeElement
Warning:com.google.auto.common.MoreElements$2: can't find referenced class javax.lang.model.element.Element
Warning:com.google.auto.common.MoreElements$2: can't find referenced class javax.lang.model.util.SimpleElementVisitor6
Warning:com.google.auto.common.MoreElements$2: can't find referenced class javax.lang.model.element.TypeElement
Warning:com.google.auto.common.MoreElements$3: can't find referenced class javax.lang.model.util.SimpleElementVisitor6
Warning:com.google.auto.common.MoreElements$3: can't find referenced class javax.lang.model.element.Element
Warning:com.google.auto.common.MoreElements$3: can't find referenced class javax.lang.model.element.VariableElement
Warning:com.google.auto.common.MoreElements$3: can't find referenced class javax.lang.model.element.Element
Warning:com.google.auto.common.MoreElements$3: can't find referenced class javax.lang.model.element.VariableElement
Warning:com.google.auto.common.MoreElements$3: can't find referenced class javax.lang.model.element.Element
Warning:com.google.auto.common.MoreElements$3: can't find referenced class javax.lang.model.util.SimpleElementVisitor6
Warning:com.google.auto.common.MoreElements$3: can't find referenced class javax.lang.model.element.VariableElement
Warning:com.google.auto.common.MoreElements$4: can't find referenced class javax.lang.model.util.SimpleElementVisitor6
Warning:com.google.auto.common.MoreElements$4: can't find referenced class javax.lang.model.element.Element
Warning:com.google.auto.common.MoreElements$4: can't find referenced class javax.lang.model.element.ExecutableElement
Warning:com.google.auto.common.MoreElements$4: can't find referenced class javax.lang.model.element.Element
Warning:com.google.auto.common.MoreElements$4: can't find referenced class javax.lang.model.element.ExecutableElement
Warning:com.google.auto.common.MoreElements$4: can't find referenced class javax.lang.model.element.Element
Warning:com.google.auto.common.MoreElements$4: can't find referenced class javax.lang.model.util.SimpleElementVisitor6
Warning:com.google.auto.common.MoreElements$4: can't find referenced class javax.lang.model.element.ExecutableElement
Warning:com.google.auto.common.MoreTypes: can't find referenced class javax.lang.model.type.ExecutableType
Warning:com.google.auto.common.MoreTypes: can't find referenced class javax.lang.model.type.TypeMirror
Warning:com.google.auto.common.MoreTypes: can't find referenced class javax.lang.model.util.Types
Warning:com.google.auto.common.MoreTypes: can't find referenced class javax.lang.model.element.Element
Warning:com.google.auto.common.MoreTypes: can't find referenced class javax.lang.model.element.TypeElement
Warning:com.google.auto.common.MoreTypes: can't find referenced class javax.lang.model.type.ArrayType
Warning:com.google.auto.common.MoreTypes: can't find referenced class javax.lang.model.type.DeclaredType
Warning:com.google.auto.common.MoreTypes: can't find referenced class javax.lang.model.type.ErrorType
Warning:com.google.auto.common.MoreTypes: can't find referenced class javax.lang.model.type.NoType
Warning:com.google.auto.common.MoreTypes: can't find referenced class javax.lang.model.type.NullType
Warning:com.google.auto.common.MoreTypes: can't find referenced class javax.lang.model.type.PrimitiveType
Warning:com.google.auto.common.MoreTypes: can't find referenced class javax.lang.model.type.TypeVariable
Warning:com.google.auto.common.MoreTypes: can't find referenced class javax.lang.model.type.WildcardType
Warning:com.google.auto.common.MoreTypes: can't find referenced class javax.lang.model.type.TypeMirror
Warning:com.google.auto.common.MoreTypes: can't find referenced class javax.lang.model.type.TypeVisitor
Warning:com.google.auto.common.MoreTypes: can't find referenced class javax.lang.model.element.Element
Warning:com.google.auto.common.MoreTypes: can't find referenced class javax.lang.model.type.TypeMirror
Warning:com.google.auto.common.MoreTypes: can't find referenced class javax.lang.model.element.Element
Warning:com.google.auto.common.MoreTypes: can't find referenced class javax.lang.model.type.TypeMirror
Warning:com.google.auto.common.MoreTypes: can't find referenced class javax.lang.model.element.Element
Warning:com.google.auto.common.MoreTypes: can't find referenced class javax.lang.model.type.TypeMirror
Warning:com.google.auto.common.MoreTypes: can't find referenced class javax.lang.model.element.Element
Warning:com.google.auto.common.MoreTypes: can't find referenced class javax.lang.model.type.TypeMirror
Warning:com.google.auto.common.MoreTypes: can't find referenced class javax.lang.model.element.Element
Warning:com.google.auto.common.MoreTypes: can't find referenced class javax.lang.model.type.TypeMirror
Warning:com.google.auto.common.MoreTypes: can't find referenced class javax.lang.model.element.TypeElement
Warning:com.google.auto.common.MoreTypes: can't find referenced class javax.lang.model.type.TypeMirror
Warning:com.google.auto.common.MoreTypes: can't find referenced class javax.lang.model.element.TypeElement
Warning:com.google.auto.common.MoreTypes: can't find referenced class javax.lang.model.util.Types
Warning:com.google.auto.common.MoreTypes: can't find referenced class javax.lang.model.type.TypeMirror
Warning:com.google.auto.common.MoreTypes: can't find referenced class javax.lang.model.element.TypeElement
Warning:com.google.auto.common.MoreTypes: can't find referenced class javax.lang.model.util.Types
Warning:com.google.auto.common.MoreTypes: can't find referenced class javax.lang.model.type.TypeMirror
Warning:com.google.auto.common.MoreTypes: can't find referenced class javax.lang.model.element.Element
Warning:com.google.auto.common.MoreTypes: can't find referenced class javax.lang.model.util.Types
Warning:com.google.auto.common.MoreTypes: can't find referenced class javax.lang.model.type.TypeMirror
Warning:com.google.auto.common.MoreTypes: can't find referenced class javax.lang.model.util.Types
Warning:com.google.auto.common.MoreTypes: can't find referenced class javax.lang.model.type.TypeMirror
Warning:com.google.auto.common.MoreTypes: can't find referenced class javax.lang.model.element.TypeElement
Warning:com.google.auto.common.MoreTypes: can't find referenced class javax.lang.model.util.Types
Warning:com.google.auto.common.MoreTypes: can't find referenced class javax.lang.model.type.TypeMirror
Warning:com.google.auto.common.MoreTypes: can't find referenced class javax.lang.model.element.TypeElement
Warning:com.google.auto.common.MoreTypes: can't find referenced class javax.lang.model.type.TypeMirror
Warning:com.google.auto.common.MoreTypes: can't find referenced class javax.lang.model.type.ArrayType
Warning:com.google.auto.common.MoreTypes: can't find referenced class javax.lang.model.type.TypeMirror
Warning:com.google.auto.common.MoreTypes: can't find referenced class javax.lang.model.type.DeclaredType
Warning:com.google.auto.common.MoreTypes: can't find referenced class javax.lang.model.type.TypeMirror
Warning:com.google.auto.common.MoreTypes: can't find referenced class javax.lang.model.type.ErrorType
Warning:com.google.auto.common.MoreTypes: can't find referenced class javax.lang.model.type.TypeMirror
Warning:com.google.auto.common.MoreTypes: can't find referenced class javax.lang.model.type.ExecutableType
Warning:com.google.auto.common.MoreTypes: can't find referenced class javax.lang.model.type.TypeMirror
Warning:com.google.auto.common.MoreTypes: can't find referenced class javax.lang.model.type.NoType
Warning:com.google.auto.common.MoreTypes: can't find referenced class javax.lang.model.type.TypeMirror
Warning:com.google.auto.common.MoreTypes: can't find referenced class javax.lang.model.type.NullType
Warning:com.google.auto.common.MoreTypes: can't find referenced class javax.lang.model.type.TypeMirror
Warning:com.google.auto.common.MoreTypes: can't find referenced class javax.lang.model.type.PrimitiveType
Warning:com.google.auto.common.MoreTypes: can't find referenced class javax.lang.model.type.TypeMirror
Warning:com.google.auto.common.MoreTypes: can't find referenced class javax.lang.model.type.TypeVariable
Warning:com.google.auto.common.MoreTypes: can't find referenced class javax.lang.model.type.TypeMirror
Warning:com.google.auto.common.MoreTypes: can't find referenced class javax.lang.model.type.WildcardType
Warning:com.google.auto.common.MoreTypes: can't find referenced class javax.lang.model.type.TypeMirror
Warning:com.google.auto.common.MoreTypes$1: can't find referenced class javax.lang.model.type.TypeMirror
Warning:com.google.auto.common.MoreTypes$10: can't find referenced class javax.lang.model.type.NoType
Warning:com.google.auto.common.MoreTypes$11: can't find referenced class javax.lang.model.type.NullType
Warning:com.google.auto.common.MoreTypes$12: can't find referenced class javax.lang.model.type.PrimitiveType
Warning:com.google.auto.common.MoreTypes$13: can't find referenced class javax.lang.model.type.TypeVariable
Warning:com.google.auto.common.MoreTypes$14: can't find referenced class javax.lang.model.type.WildcardType
Warning:com.google.auto.common.MoreTypes$15: can't find referenced class javax.lang.model.util.SimpleTypeVisitor6
Warning:com.google.auto.common.MoreTypes$15: can't find referenced class javax.lang.model.type.NoType
Warning:com.google.auto.common.MoreTypes$15: can't find referenced class javax.lang.model.type.TypeKind
Warning:com.google.auto.common.MoreTypes$15: can't find referenced class javax.lang.model.type.PrimitiveType
Warning:com.google.auto.common.MoreTypes$15: can't find referenced class javax.lang.model.type.TypeKind
Warning:com.google.auto.common.MoreTypes$15: can't find referenced class javax.lang.model.type.ArrayType
Warning:com.google.auto.common.MoreTypes$15: can't find referenced class javax.lang.model.type.DeclaredType
Warning:com.google.auto.common.MoreTypes$15: can't find referenced class javax.lang.model.element.TypeElement
Warning:com.google.auto.common.MoreTypes$15: can't find referenced class javax.lang.model.element.Name
Warning:com.google.auto.common.MoreTypes$15: can't find referenced class javax.lang.model.type.TypeMirror
Warning:com.google.auto.common.MoreTypes$15: can't find referenced class javax.lang.model.type.NoType
Warning:com.google.auto.common.MoreTypes$15: can't find referenced class javax.lang.model.type.PrimitiveType
Warning:com.google.auto.common.MoreTypes$15: can't find referenced class javax.lang.model.type.ArrayType
Warning:com.google.auto.common.MoreTypes$15: can't find referenced class javax.lang.model.type.DeclaredType
Warning:com.google.auto.common.MoreTypes$15: can't find referenced class javax.lang.model.element.TypeElement
Warning:com.google.auto.common.MoreTypes$15: can't find referenced class javax.lang.model.type.NoType
Warning:com.google.auto.common.MoreTypes$15: can't find referenced class javax.lang.model.type.DeclaredType
Warning:com.google.auto.common.MoreTypes$15: can't find referenced class javax.lang.model.type.ArrayType
Warning:com.google.auto.common.MoreTypes$15: can't find referenced class javax.lang.model.type.PrimitiveType
Warning:com.google.auto.common.MoreTypes$15: can't find referenced class javax.lang.model.type.TypeMirror
Warning:com.google.auto.common.MoreTypes$15: can't find referenced class javax.lang.model.util.SimpleTypeVisitor6
Warning:com.google.auto.common.MoreTypes$16: can't find referenced class javax.lang.model.type.TypeKind
Warning:com.google.auto.common.MoreTypes$2: can't find referenced class javax.lang.model.util.SimpleTypeVisitor6
Warning:com.google.auto.common.MoreTypes$2: can't find referenced class javax.lang.model.type.TypeMirror
Warning:com.google.auto.common.MoreTypes$2: can't find referenced class javax.lang.model.type.TypeKind
Warning:com.google.auto.common.MoreTypes$2: can't find referenced class javax.lang.model.type.ArrayType
Warning:com.google.auto.common.MoreTypes$2: can't find referenced class javax.lang.model.type.TypeKind
Warning:com.google.auto.common.MoreTypes$2: can't find referenced class javax.lang.model.type.DeclaredType
Warning:com.google.auto.common.MoreTypes$2: can't find referenced class javax.lang.model.element.Element
Warning:com.google.auto.common.MoreTypes$2: can't find referenced class javax.lang.model.type.DeclaredType
Warning:com.google.auto.common.MoreTypes$2: can't find referenced class javax.lang.model.type.TypeKind
Warning:com.google.auto.common.MoreTypes$2: can't find referenced class javax.lang.model.type.ExecutableType
Warning:com.google.auto.common.MoreTypes$2: can't find referenced class javax.lang.model.type.TypeKind
Warning:com.google.auto.common.MoreTypes$2: can't find referenced class javax.lang.model.type.TypeVariable
Warning:com.google.auto.common.MoreTypes$2: can't find referenced class javax.lang.model.type.TypeKind
Warning:com.google.auto.common.MoreTypes$2: can't find referenced class javax.lang.model.type.WildcardType
Warning:com.google.auto.common.MoreTypes$2: can't find referenced class javax.lang.model.type.TypeMirror
Warning:com.google.auto.common.MoreTypes$2: can't find referenced class javax.lang.model.type.ArrayType
Warning:com.google.auto.common.MoreTypes$2: can't find referenced class javax.lang.model.type.DeclaredType
Warning:com.google.auto.common.MoreTypes$2: can't find referenced class javax.lang.model.element.Element
Warning:com.google.auto.common.MoreTypes$2: can't find referenced class javax.lang.model.type.DeclaredType
Warning:com.google.auto.common.MoreTypes$2: can't find referenced class javax.lang.model.type.ErrorType
Warning:com.google.auto.common.MoreTypes$2: can't find referenced class javax.lang.model.type.ExecutableType
Warning:com.google.auto.common.MoreTypes$2: can't find referenced class javax.lang.model.type.TypeVariable
Warning:com.google.auto.common.MoreTypes$2: can't find referenced class javax.lang.model.type.WildcardType
Warning:com.google.auto.common.MoreTypes$2: can't find referenced class javax.lang.model.type.TypeMirror
Warning:com.google.auto.common.MoreTypes$2: can't find referenced class javax.lang.model.type.ExecutableType
Warning:com.google.auto.common.MoreTypes$2: can't find referenced class javax.lang.model.type.WildcardType
Warning:com.google.auto.common.MoreTypes$2: can't find referenced class javax.lang.model.type.TypeVariable
Warning:com.google.auto.common.MoreTypes$2: can't find referenced class javax.lang.model.type.ErrorType
Warning:com.google.auto.common.MoreTypes$2: can't find referenced class javax.lang.model.type.DeclaredType
Warning:com.google.auto.common.MoreTypes$2: can't find referenced class javax.lang.model.type.ArrayType
Warning:com.google.auto.common.MoreTypes$2: can't find referenced class javax.lang.model.type.TypeMirror
Warning:com.google.auto.common.MoreTypes$2: can't find referenced class javax.lang.model.util.SimpleTypeVisitor6
Warning:com.google.auto.common.MoreTypes$3: can't find referenced class javax.lang.model.util.SimpleTypeVisitor6
Warning:com.google.auto.common.MoreTypes$3: can't find referenced class javax.lang.model.type.TypeMirror
Warning:com.google.auto.common.MoreTypes$3: can't find referenced class javax.lang.model.type.TypeKind
Warning:com.google.auto.common.MoreTypes$3: can't find referenced class javax.lang.model.type.ArrayType
Warning:com.google.auto.common.MoreTypes$3: can't find referenced class javax.lang.model.type.TypeMirror
Warning:com.google.auto.common.MoreTypes$3: can't find referenced class javax.lang.model.type.DeclaredType
Warning:com.google.auto.common.MoreTypes$3: can't find referenced class javax.lang.model.element.Element
Warning:com.google.auto.common.MoreTypes$3: can't find referenced class javax.lang.model.type.DeclaredType
Warning:com.google.auto.common.MoreTypes$3: can't find referenced class javax.lang.model.type.ExecutableType
Warning:com.google.auto.common.MoreTypes$3: can't find referenced class javax.lang.model.type.TypeVariable
Warning:com.google.auto.common.MoreTypes$3: can't find referenced class javax.lang.model.element.TypeParameterElement
Warning:com.google.auto.common.MoreTypes$3: can't find referenced class javax.lang.model.type.WildcardType
Warning:com.google.auto.common.MoreTypes$3: can't find referenced class javax.lang.model.type.TypeMirror
Warning:com.google.auto.common.MoreTypes$3: can't find referenced class javax.lang.model.element.Element
Warning:com.google.auto.common.MoreTypes$3: can't find referenced class javax.lang.model.type.TypeMirror
Warning:com.google.auto.common.MoreTypes$3: can't find referenced class javax.lang.model.element.Element
Warning:com.google.auto.common.MoreTypes$3: can't find referenced class javax.lang.model.type.ArrayType
Warning:com.google.auto.common.MoreTypes$3: can't find referenced class javax.lang.model.element.Element
Warning:com.google.auto.common.MoreTypes$3: can't find referenced class javax.lang.model.type.ArrayType
Warning:com.google.auto.common.MoreTypes$3: can't find referenced class javax.lang.model.element.Element
Warning:com.google.auto.common.MoreTypes$3: can't find referenced class javax.lang.model.type.DeclaredType
Warning:com.google.auto.common.MoreTypes$3: can't find referenced class javax.lang.model.element.Element
Warning:com.google.auto.common.MoreTypes$3: can't find referenced class javax.lang.model.type.DeclaredType
Warning:com.google.auto.common.MoreTypes$3: can't find referenced class javax.lang.model.element.Element
Warning:com.google.auto.common.MoreTypes$3: can't find referenced class javax.lang.model.type.ExecutableType
Warning:com.google.auto.common.MoreTypes$3: can't find referenced class javax.lang.model.element.Element
Warning:com.google.auto.common.MoreTypes$3: can't find referenced class javax.lang.model.type.ExecutableType
Warning:com.google.auto.common.MoreTypes$3: can't find referenced class javax.lang.model.element.Element
Warning:com.google.auto.common.MoreTypes$3: can't find referenced class javax.lang.model.type.TypeVariable
Warning:com.google.auto.common.MoreTypes$3: can't find referenced class javax.lang.model.type.TypeMirror
Warning:com.google.auto.common.MoreTypes$3: can't find referenced class javax.lang.model.type.TypeVariable
Warning:com.google.auto.common.MoreTypes$3: can't find referenced class javax.lang.model.element.TypeParameterElement
Warning:com.google.auto.common.MoreTypes$3: can't find referenced class javax.lang.model.element.Element
Warning:com.google.auto.common.MoreTypes$3: can't find referenced class javax.lang.model.type.TypeVariable
Warning:com.google.auto.common.MoreTypes$3: can't find referenced class javax.lang.model.element.Element
Warning:com.google.auto.common.MoreTypes$3: can't find referenced class javax.lang.model.type.WildcardType
Warning:com.google.auto.common.MoreTypes$3: can't find referenced class javax.lang.model.element.Element
Warning:com.google.auto.common.MoreTypes$3: can't find referenced class javax.lang.model.type.WildcardType
Warning:com.google.auto.common.MoreTypes$3: can't find referenced class javax.lang.model.element.Element
Warning:com.google.auto.common.MoreTypes$3: can't find referenced class javax.lang.model.type.TypeMirror
Warning:com.google.auto.common.MoreTypes$3: can't find referenced class javax.lang.model.element.Element
Warning:com.google.auto.common.MoreTypes$3: can't find referenced class javax.lang.model.type.TypeMirror
Warning:com.google.auto.common.MoreTypes$3: can't find referenced class javax.lang.model.element.Element
Warning:com.google.auto.common.MoreTypes$3: can't find referenced class javax.lang.model.type.ExecutableType
Warning:com.google.auto.common.MoreTypes$3: can't find referenced class javax.lang.model.type.WildcardType
Warning:com.google.auto.common.MoreTypes$3: can't find referenced class javax.lang.model.type.TypeVariable
Warning:com.google.auto.common.MoreTypes$3: can't find referenced class javax.lang.model.type.DeclaredType
Warning:com.google.auto.common.MoreTypes$3: can't find referenced class javax.lang.model.type.ArrayType
Warning:com.google.auto.common.MoreTypes$3: can't find referenced class javax.lang.model.type.TypeMirror
Warning:com.google.auto.common.MoreTypes$3: can't find referenced class javax.lang.model.util.SimpleTypeVisitor6
Warning:com.google.auto.common.MoreTypes$3: can't find referenced class javax.lang.model.element.Element
Warning:com.google.auto.common.MoreTypes$4: can't find referenced class javax.lang.model.util.SimpleTypeVisitor6
Warning:com.google.auto.common.MoreTypes$4: can't find referenced class javax.lang.model.type.ArrayType
Warning:com.google.auto.common.MoreTypes$4: can't find referenced class javax.lang.model.type.TypeMirror
Warning:com.google.auto.common.MoreTypes$4: can't find referenced class javax.lang.model.type.DeclaredType
Warning:com.google.auto.common.MoreTypes$4: can't find referenced class javax.lang.model.type.TypeVariable
Warning:com.google.auto.common.MoreTypes$4: can't find referenced class javax.lang.model.type.WildcardType
Warning:com.google.auto.common.MoreTypes$4: can't find referenced class javax.lang.model.type.ArrayType
Warning:com.google.auto.common.MoreTypes$4: can't find referenced class javax.lang.model.element.TypeElement
Warning:com.google.auto.common.MoreTypes$4: can't find referenced class javax.lang.model.type.ArrayType
Warning:com.google.auto.common.MoreTypes$4: can't find referenced class javax.lang.model.element.TypeElement
Warning:com.google.auto.common.MoreTypes$4: can't find referenced class javax.lang.model.type.DeclaredType
Warning:com.google.auto.common.MoreTypes$4: can't find referenced class javax.lang.model.type.TypeMirror
Warning:com.google.auto.common.MoreTypes$4: can't find referenced class javax.lang.model.type.DeclaredType
Warning:com.google.auto.common.MoreTypes$4: can't find referenced class javax.lang.model.element.TypeElement
Warning:com.google.auto.common.MoreTypes$4: can't find referenced class javax.lang.model.type.DeclaredType
Warning:com.google.auto.common.MoreTypes$4: can't find referenced class javax.lang.model.element.TypeElement
Warning:com.google.auto.common.MoreTypes$4: can't find referenced class javax.lang.model.type.TypeVariable
Warning:com.google.auto.common.MoreTypes$4: can't find referenced class javax.lang.model.element.TypeElement
Warning:com.google.auto.common.MoreTypes$4: can't find referenced class javax.lang.model.type.TypeVariable
Warning:com.google.auto.common.MoreTypes$4: can't find referenced class javax.lang.model.element.TypeElement
Warning:com.google.auto.common.MoreTypes$4: can't find referenced class javax.lang.model.type.WildcardType
Warning:com.google.auto.common.MoreTypes$4: can't find referenced class javax.lang.model.type.TypeMirror
Warning:com.google.auto.common.MoreTypes$4: can't find referenced class javax.lang.model.element.TypeElement
Warning:com.google.auto.common.MoreTypes$4: can't find referenced class javax.lang.model.type.WildcardType
Warning:com.google.auto.common.MoreTypes$4: can't find referenced class javax.lang.model.element.TypeElement
Warning:com.google.auto.common.MoreTypes$4: can't find referenced class javax.lang.model.type.WildcardType
Warning:com.google.auto.common.MoreTypes$4: can't find referenced class javax.lang.model.type.TypeVariable
Warning:com.google.auto.common.MoreTypes$4: can't find referenced class javax.lang.model.type.DeclaredType
Warning:com.google.auto.common.MoreTypes$4: can't find referenced class javax.lang.model.type.ArrayType
Warning:com.google.auto.common.MoreTypes$4: can't find referenced class javax.lang.model.util.SimpleTypeVisitor6
Warning:com.google.auto.common.MoreTypes$4: can't find referenced class javax.lang.model.element.TypeElement
Warning:com.google.auto.common.MoreTypes$5: can't find referenced class javax.lang.model.util.SimpleElementVisitor6
Warning:com.google.auto.common.MoreTypes$5: can't find referenced class javax.lang.model.element.Element
Warning:com.google.auto.common.MoreTypes$5: can't find referenced class javax.lang.model.element.TypeElement
Warning:com.google.auto.common.MoreTypes$5: can't find referenced class javax.lang.model.element.Element
Warning:com.google.auto.common.MoreTypes$5: can't find referenced class javax.lang.model.element.TypeElement
Warning:com.google.auto.common.MoreTypes$5: can't find referenced class javax.lang.model.element.Element
Warning:com.google.auto.common.MoreTypes$5: can't find referenced class javax.lang.model.util.SimpleElementVisitor6
Warning:com.google.auto.common.MoreTypes$5: can't find referenced class javax.lang.model.element.TypeElement
Warning:com.google.auto.common.MoreTypes$6: can't find referenced class javax.lang.model.type.ArrayType
Warning:com.google.auto.common.MoreTypes$7: can't find referenced class javax.lang.model.type.DeclaredType
Warning:com.google.auto.common.MoreTypes$8: can't find referenced class javax.lang.model.type.ErrorType
Warning:com.google.auto.common.MoreTypes$9: can't find referenced class javax.lang.model.type.ExecutableType
Warning:com.google.auto.common.MoreTypes$CastingTypeVisitor: can't find referenced class javax.lang.model.util.SimpleTypeVisitor6
Warning:com.google.auto.common.MoreTypes$CastingTypeVisitor: can't find referenced class javax.lang.model.type.TypeMirror
Warning:com.google.auto.common.MoreTypes$CastingTypeVisitor: can't find referenced class javax.lang.model.util.SimpleTypeVisitor6
Warning:com.google.auto.common.MoreTypes$ComparedElements: can't find referenced class javax.lang.model.element.Element
Warning:com.google.auto.common.MoreTypes$EqualVisitorParam: can't find referenced class javax.lang.model.type.TypeMirror
Warning:com.google.auto.common.SuperficialValidation: can't find referenced class javax.lang.model.element.Element
Warning:com.google.auto.common.SuperficialValidation: can't find referenced class javax.lang.model.type.TypeMirror
Warning:com.google.auto.common.SuperficialValidation: can't find referenced class javax.lang.model.element.AnnotationMirror
Warning:com.google.auto.common.SuperficialValidation: can't find referenced class javax.lang.model.element.AnnotationValue
Warning:com.google.auto.common.SuperficialValidation: can't find referenced class javax.lang.model.element.ElementVisitor
Warning:com.google.auto.common.SuperficialValidation: can't find referenced class javax.lang.model.type.TypeVisitor
Warning:com.google.auto.common.SuperficialValidation: can't find referenced class javax.lang.model.element.AnnotationValueVisitor
Warning:com.google.auto.common.SuperficialValidation: can't find referenced class javax.lang.model.type.TypeMirror
Warning:com.google.auto.common.SuperficialValidation: can't find referenced class javax.lang.model.element.Element
Warning:com.google.auto.common.SuperficialValidation: can't find referenced class javax.lang.model.type.TypeMirror
Warning:com.google.auto.common.SuperficialValidation: can't find referenced class javax.lang.model.element.AnnotationMirror
Warning:com.google.auto.common.SuperficialValidation: can't find referenced class javax.lang.model.element.ExecutableElement
Warning:com.google.auto.common.SuperficialValidation: can't find referenced class javax.lang.model.element.AnnotationValue
Warning:com.google.auto.common.SuperficialValidation: can't find referenced class javax.lang.model.element.ExecutableElement
Warning:com.google.auto.common.SuperficialValidation: can't find referenced class javax.lang.model.element.AnnotationValue
Warning:com.google.auto.common.SuperficialValidation: can't find referenced class javax.lang.model.type.TypeMirror
Warning:com.google.auto.common.SuperficialValidation: can't find referenced class javax.lang.model.element.AnnotationValue
Warning:com.google.auto.common.SuperficialValidation: can't find referenced class javax.lang.model.type.TypeMirror
Warning:com.google.auto.common.SuperficialValidation: can't find referenced class javax.lang.model.element.Element
Warning:com.google.auto.common.SuperficialValidation: can't find referenced class javax.lang.model.type.TypeMirror
Warning:com.google.auto.common.SuperficialValidation: can't find referenced class javax.lang.model.element.AnnotationValue
Warning:com.google.auto.common.SuperficialValidation: can't find referenced class javax.lang.model.type.TypeMirror
Warning:com.google.auto.common.SuperficialValidation: can't find referenced class javax.lang.model.element.AnnotationValue
Warning:com.google.auto.common.SuperficialValidation: can't find referenced class javax.lang.model.type.TypeMirror
Warning:com.google.auto.common.SuperficialValidation: can't find referenced class javax.lang.model.element.AnnotationMirror
Warning:com.google.auto.common.SuperficialValidation$1: can't find referenced class javax.lang.model.util.AbstractElementVisitor6
Warning:com.google.auto.common.SuperficialValidation$1: can't find referenced class javax.lang.model.element.PackageElement
Warning:com.google.auto.common.SuperficialValidation$1: can't find referenced class javax.lang.model.element.TypeElement
Warning:com.google.auto.common.SuperficialValidation$1: can't find referenced class javax.lang.model.element.ExecutableElement
Warning:com.google.auto.common.SuperficialValidation$1: can't find referenced class javax.lang.model.element.AnnotationValue
Warning:com.google.auto.common.SuperficialValidation$1: can't find referenced class javax.lang.model.element.ExecutableElement
Warning:com.google.auto.common.SuperficialValidation$1: can't find referenced class javax.lang.model.element.TypeParameterElement
Warning:com.google.auto.common.SuperficialValidation$1: can't find referenced class javax.lang.model.element.PackageElement
Warning:com.google.auto.common.SuperficialValidation$1: can't find referenced class javax.lang.model.element.TypeElement
Warning:com.google.auto.common.SuperficialValidation$1: can't find referenced class javax.lang.model.element.VariableElement
Warning:com.google.auto.common.SuperficialValidation$1: can't find referenced class javax.lang.model.element.ExecutableElement
Warning:com.google.auto.common.SuperficialValidation$1: can't find referenced class javax.lang.model.element.AnnotationValue
Warning:com.google.auto.common.SuperficialValidation$1: can't find referenced class javax.lang.model.element.TypeParameterElement
Warning:com.google.auto.common.SuperficialValidation$1: can't find referenced class javax.lang.model.element.Element
Warning:com.google.auto.common.SuperficialValidation$1: can't find referenced class javax.lang.model.element.TypeParameterElement
Warning:com.google.auto.common.SuperficialValidation$1: can't find referenced class javax.lang.model.element.ExecutableElement
Warning:com.google.auto.common.SuperficialValidation$1: can't find referenced class javax.lang.model.element.VariableElement
Warning:com.google.auto.common.SuperficialValidation$1: can't find referenced class javax.lang.model.element.TypeElement
Warning:com.google.auto.common.SuperficialValidation$1: can't find referenced class javax.lang.model.element.PackageElement
Warning:com.google.auto.common.SuperficialValidation$1: can't find referenced class javax.lang.model.util.AbstractElementVisitor6
Warning:com.google.auto.common.SuperficialValidation$2: can't find referenced class javax.lang.model.util.SimpleTypeVisitor6
Warning:com.google.auto.common.SuperficialValidation$2: can't find referenced class javax.lang.model.type.ArrayType
Warning:com.google.auto.common.SuperficialValidation$2: can't find referenced class javax.lang.model.type.DeclaredType
Warning:com.google.auto.common.SuperficialValidation$2: can't find referenced class javax.lang.model.type.WildcardType
Warning:com.google.auto.common.SuperficialValidation$2: can't find referenced class javax.lang.model.type.TypeMirror
Warning:com.google.auto.common.SuperficialValidation$2: can't find referenced class javax.lang.model.type.ExecutableType
Warning:com.google.auto.common.SuperficialValidation$2: can't find referenced class javax.lang.model.type.TypeMirror
Warning:com.google.auto.common.SuperficialValidation$2: can't find referenced class javax.lang.model.type.ArrayType
Warning:com.google.auto.common.SuperficialValidation$2: can't find referenced class javax.lang.model.type.DeclaredType
Warning:com.google.auto.common.SuperficialValidation$2: can't find referenced class javax.lang.model.type.ErrorType
Warning:com.google.auto.common.SuperficialValidation$2: can't find referenced class javax.lang.model.type.TypeMirror
Warning:com.google.auto.common.SuperficialValidation$2: can't find referenced class javax.lang.model.type.WildcardType
Warning:com.google.auto.common.SuperficialValidation$2: can't find referenced class javax.lang.model.type.TypeMirror
Warning:com.google.auto.common.SuperficialValidation$2: can't find referenced class javax.lang.model.type.ExecutableType
Warning:com.google.auto.common.SuperficialValidation$2: can't find referenced class javax.lang.model.type.WildcardType
Warning:com.google.auto.common.SuperficialValidation$2: can't find referenced class javax.lang.model.type.ErrorType
Warning:com.google.auto.common.SuperficialValidation$2: can't find referenced class javax.lang.model.type.DeclaredType
Warning:com.google.auto.common.SuperficialValidation$2: can't find referenced class javax.lang.model.type.ArrayType
Warning:com.google.auto.common.SuperficialValidation$2: can't find referenced class javax.lang.model.type.TypeMirror
Warning:com.google.auto.common.SuperficialValidation$2: can't find referenced class javax.lang.model.util.SimpleTypeVisitor6
Warning:com.google.auto.common.SuperficialValidation$3: can't find referenced class javax.lang.model.util.SimpleAnnotationValueVisitor6
Warning:com.google.auto.common.SuperficialValidation$3: can't find referenced class javax.lang.model.element.AnnotationMirror
Warning:com.google.auto.common.SuperficialValidation$3: can't find referenced class javax.lang.model.type.TypeMirror
Warning:com.google.auto.common.SuperficialValidation$3: can't find referenced class javax.lang.model.type.TypeKind
Warning:com.google.auto.common.SuperficialValidation$3: can't find referenced class javax.lang.model.type.ArrayType
Warning:com.google.auto.common.SuperficialValidation$3: can't find referenced class javax.lang.model.element.AnnotationValue
Warning:com.google.auto.common.SuperficialValidation$3: can't find referenced class javax.lang.model.element.VariableElement
Warning:com.google.auto.common.SuperficialValidation$3: can't find referenced class javax.lang.model.type.TypeMirror
Warning:com.google.auto.common.SuperficialValidation$3: can't find referenced class javax.lang.model.element.AnnotationValue
Warning:com.google.auto.common.SuperficialValidation$3: can't find referenced class javax.lang.model.type.TypeMirror
Warning:com.google.auto.common.SuperficialValidation$3: can't find referenced class javax.lang.model.element.AnnotationValue
Warning:com.google.auto.common.SuperficialValidation$3: can't find referenced class javax.lang.model.type.TypeMirror
Warning:com.google.auto.common.SuperficialValidation$3: can't find referenced class javax.lang.model.element.AnnotationMirror
Warning:com.google.auto.common.SuperficialValidation$3: can't find referenced class javax.lang.model.type.TypeMirror
Warning:com.google.auto.common.SuperficialValidation$3: can't find referenced class javax.lang.model.element.AnnotationMirror
Warning:com.google.auto.common.SuperficialValidation$3: can't find referenced class javax.lang.model.type.TypeMirror
Warning:com.google.auto.common.SuperficialValidation$3: can't find referenced class javax.lang.model.element.AnnotationValue
Warning:com.google.auto.common.SuperficialValidation$3: can't find referenced class javax.lang.model.type.TypeMirror
Warning:com.google.auto.common.SuperficialValidation$3: can't find referenced class javax.lang.model.element.AnnotationValue
Warning:com.google.auto.common.SuperficialValidation$3: can't find referenced class javax.lang.model.type.TypeMirror
Warning:com.google.auto.common.SuperficialValidation$3: can't find referenced class javax.lang.model.element.VariableElement
Warning:com.google.auto.common.SuperficialValidation$3: can't find referenced class javax.lang.model.type.TypeMirror
Warning:com.google.auto.common.SuperficialValidation$3: can't find referenced class javax.lang.model.element.VariableElement
Warning:com.google.auto.common.SuperficialValidation$3: can't find referenced class javax.lang.model.type.TypeMirror
Warning:com.google.auto.common.SuperficialValidation$3: can't find referenced class javax.lang.model.element.AnnotationMirror
Warning:com.google.auto.common.SuperficialValidation$3: can't find referenced class javax.lang.model.element.VariableElement
Warning:com.google.auto.common.SuperficialValidation$3: can't find referenced class javax.lang.model.type.TypeMirror
Warning:com.google.auto.common.SuperficialValidation$3: can't find referenced class javax.lang.model.element.AnnotationValue
Warning:com.google.auto.common.SuperficialValidation$3: can't find referenced class javax.lang.model.util.SimpleAnnotationValueVisitor6
Warning:com.google.auto.common.SuperficialValidation$3: can't find referenced class javax.lang.model.type.TypeMirror
Warning:com.google.auto.common.Visibility: can't find referenced class javax.lang.model.element.Element
Warning:com.google.auto.common.Visibility: can't find referenced class javax.lang.model.element.ElementKind
Warning:com.google.auto.common.Visibility: can't find referenced class javax.lang.model.element.Element
Warning:com.google.auto.common.Visibility: can't find referenced class javax.lang.model.element.Modifier
Warning:com.google.auto.common.Visibility: can't find referenced class javax.lang.model.element.Element
Warning:com.google.auto.common.Visibility: can't find referenced class javax.lang.model.element.Modifier
Warning:com.google.auto.common.Visibility: can't find referenced class javax.lang.model.element.Element
Warning:com.google.auto.service.processor.AutoServiceProcessor: can't find referenced class javax.annotation.processing.AbstractProcessor
Warning:com.google.auto.service.processor.AutoServiceProcessor: can't find referenced class javax.tools.JavaFileManager$Location
Warning:com.google.auto.service.processor.AutoServiceProcessor: can't find referenced class javax.tools.JavaFileManager
Warning:com.google.auto.service.processor.AutoServiceProcessor: can't find referenced class javax.tools.Diagnostic$Kind
Warning:com.google.auto.service.processor.AutoServiceProcessor: can't find referenced class javax.tools.Diagnostic
Warning:com.google.auto.service.processor.AutoServiceProcessor: can't find referenced class javax.annotation.processing.AbstractProcessor
Warning:com.google.auto.service.processor.AutoServiceProcessor: can't find referenced class javax.lang.model.SourceVersion
Warning:com.google.auto.service.processor.AutoServiceProcessor: can't find referenced class javax.annotation.processing.RoundEnvironment
Warning:com.google.auto.service.processor.AutoServiceProcessor: can't find referenced class javax.lang.model.element.Element
Warning:com.google.auto.service.processor.AutoServiceProcessor: can't find referenced class javax.lang.model.element.TypeElement
Warning:com.google.auto.service.processor.AutoServiceProcessor: can't find referenced class javax.lang.model.element.AnnotationMirror
Warning:com.google.auto.service.processor.AutoServiceProcessor: can't find referenced class javax.lang.model.type.DeclaredType
Warning:com.google.auto.service.processor.AutoServiceProcessor: can't find referenced class javax.lang.model.element.TypeElement
Warning:com.google.auto.service.processor.AutoServiceProcessor: can't find referenced field 'javax.annotation.processing.ProcessingEnvironment processingEnv' in program class com.google.auto.service.processor.AutoServiceProcessor
Warning:com.google.auto.service.processor.AutoServiceProcessor: can't find referenced class javax.annotation.processing.ProcessingEnvironment
Warning:com.google.auto.service.processor.AutoServiceProcessor: can't find referenced class javax.annotation.processing.Filer
Warning:com.google.auto.service.processor.AutoServiceProcessor: can't find referenced class javax.tools.StandardLocation
Warning:com.google.auto.service.processor.AutoServiceProcessor: can't find referenced class javax.annotation.processing.Filer
Warning:com.google.auto.service.processor.AutoServiceProcessor: can't find referenced class javax.tools.FileObject
Warning:com.google.auto.service.processor.AutoServiceProcessor: can't find referenced class javax.annotation.processing.Filer
Warning:com.google.auto.service.processor.AutoServiceProcessor: can't find referenced class javax.tools.FileObject
Warning:com.google.auto.service.processor.AutoServiceProcessor: can't find referenced class javax.annotation.processing.ProcessingEnvironment
Warning:com.google.auto.service.processor.AutoServiceProcessor: can't find referenced class javax.lang.model.element.TypeElement
Warning:com.google.auto.service.processor.AutoServiceProcessor: can't find referenced class javax.lang.model.util.Types
Warning:com.google.auto.service.processor.AutoServiceProcessor: can't find referenced class javax.lang.model.element.TypeElement
Warning:com.google.auto.service.processor.AutoServiceProcessor: can't find referenced class javax.lang.model.element.PackageElement
Warning:com.google.auto.service.processor.AutoServiceProcessor: can't find referenced class javax.lang.model.element.AnnotationMirror
Warning:com.google.auto.service.processor.AutoServiceProcessor: can't find referenced class javax.lang.model.element.AnnotationValue
Warning:com.google.auto.service.processor.AutoServiceProcessor: can't find referenced class javax.annotation.processing.ProcessingEnvironment
Warning:com.google.auto.service.processor.AutoServiceProcessor: can't find referenced class javax.tools.Diagnostic$Kind
Warning:com.google.auto.service.processor.AutoServiceProcessor: can't find referenced class javax.annotation.processing.Messager
Warning:com.google.auto.service.processor.AutoServiceProcessor: can't find referenced class javax.tools.Diagnostic$Kind
Warning:com.google.auto.service.processor.AutoServiceProcessor: can't find referenced class javax.annotation.processing.Messager
Warning:com.google.auto.service.processor.AutoServiceProcessor: can't find referenced class javax.lang.model.SourceVersion
Warning:com.google.auto.service.processor.AutoServiceProcessor: can't find referenced class javax.annotation.processing.RoundEnvironment
Warning:com.google.auto.service.processor.AutoServiceProcessor: can't find referenced class javax.lang.model.element.TypeElement
Warning:com.google.auto.service.processor.AutoServiceProcessor: can't find referenced class javax.annotation.processing.RoundEnvironment
Warning:com.google.auto.service.processor.AutoServiceProcessor: can't find referenced class javax.lang.model.element.TypeElement
Warning:com.google.auto.service.processor.AutoServiceProcessor: can't find referenced class javax.annotation.processing.RoundEnvironment
Warning:com.google.auto.service.processor.AutoServiceProcessor: can't find referenced class javax.lang.model.element.TypeElement
Warning:com.google.auto.service.processor.AutoServiceProcessor: can't find referenced class javax.lang.model.element.AnnotationMirror
Warning:com.google.auto.service.processor.AutoServiceProcessor: can't find referenced class javax.lang.model.type.DeclaredType
Warning:com.google.auto.service.processor.AutoServiceProcessor: can't find referenced class javax.lang.model.element.TypeElement
Warning:com.google.auto.service.processor.AutoServiceProcessor: can't find referenced class javax.lang.model.element.Element
Warning:com.google.auto.service.processor.AutoServiceProcessor: can't find referenced class javax.annotation.processing.RoundEnvironment
Warning:com.google.auto.service.processor.AutoServiceProcessor: can't find referenced class javax.lang.model.element.TypeElement
Warning:com.google.auto.service.processor.AutoServiceProcessor: can't find referenced class javax.lang.model.element.Element
Warning:com.google.auto.service.processor.AutoServiceProcessor: can't find referenced class javax.lang.model.element.TypeElement
Warning:com.google.auto.service.processor.AutoServiceProcessor: can't find referenced class javax.annotation.processing.RoundEnvironment
Warning:com.google.auto.service.processor.AutoServiceProcessor: can't find referenced class javax.tools.FileObject
Warning:com.google.auto.service.processor.AutoServiceProcessor: can't find referenced class javax.annotation.processing.Filer
Warning:com.google.auto.service.processor.AutoServiceProcessor: can't find referenced class javax.lang.model.element.TypeElement
Warning:com.google.auto.service.processor.AutoServiceProcessor: can't find referenced class javax.lang.model.util.Types
Warning:com.google.auto.service.processor.AutoServiceProcessor: can't find referenced class javax.lang.model.element.TypeElement
Warning:com.google.auto.service.processor.AutoServiceProcessor: can't find referenced class javax.lang.model.element.PackageElement
Warning:com.google.auto.service.processor.AutoServiceProcessor: can't find referenced class javax.lang.model.element.TypeElement
Warning:com.google.auto.service.processor.AutoServiceProcessor: can't find referenced class javax.lang.model.element.Element
Warning:com.google.auto.service.processor.AutoServiceProcessor: can't find referenced class javax.lang.model.element.TypeElement
Warning:com.google.auto.service.processor.AutoServiceProcessor: can't find referenced class javax.lang.model.element.AnnotationMirror
Warning:com.google.auto.service.processor.AutoServiceProcessor: can't find referenced class javax.lang.model.type.DeclaredType
Warning:com.google.auto.service.processor.AutoServiceProcessor: can't find referenced class javax.lang.model.element.AnnotationMirror
Warning:com.google.auto.service.processor.AutoServiceProcessor: can't find referenced class javax.lang.model.element.AnnotationValue
Warning:com.google.auto.service.processor.AutoServiceProcessor: can't find referenced class javax.lang.model.element.ExecutableElement
Warning:com.google.auto.service.processor.AutoServiceProcessor: can't find referenced class javax.lang.model.element.AnnotationValue
Warning:com.google.auto.service.processor.AutoServiceProcessor: can't find referenced class javax.lang.model.element.Element
Warning:com.google.auto.service.processor.AutoServiceProcessor: can't find referenced class javax.lang.model.element.AnnotationMirror
Warning:com.google.auto.service.processor.AutoServiceProcessor: can't find referenced class javax.lang.model.element.Element
Warning:com.google.auto.service.processor.AutoServiceProcessor: can't find referenced class javax.lang.model.element.AnnotationMirror
Warning:com.google.auto.service.processor.AutoServiceProcessor: can't find referenced class javax.annotation.processing.SupportedOptions
Warning:com.google.common.base.Absent: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.base.Ascii: can't find referenced class javax.annotation.CheckReturnValue
Warning:com.google.common.base.CaseFormat$StringConverter: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.base.CharMatcher: can't find referenced class javax.annotation.CheckReturnValue
Warning:com.google.common.base.Converter: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.base.Converter$ConverterComposition: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.base.Converter$FunctionBasedConverter: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.base.Converter$ReverseConverter: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.base.Defaults: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.base.Enums$StringConverter: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.base.Equivalence: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.base.Equivalence$EquivalentToPredicate: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.base.Equivalence$Wrapper: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.base.FinalizableReferenceQueue$FinalizerLoader: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.base.Function: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.base.FunctionalEquivalence: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.base.Functions: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.base.Functions$ConstantFunction: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.base.Functions$ForMapWithDefault: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.base.Functions$FunctionComposition: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.base.Functions$FunctionForMapNoDefault: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.base.Functions$IdentityFunction: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.base.Functions$PredicateFunction: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.base.Functions$SupplierFunction: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.base.Joiner: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.base.Joiner: can't find referenced class javax.annotation.CheckReturnValue
Warning:com.google.common.base.Joiner$1: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.base.Joiner$MapJoiner: can't find referenced class javax.annotation.CheckReturnValue
Warning:com.google.common.base.MoreObjects: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.base.MoreObjects$ToStringHelper: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.base.Objects: can't find referenced class javax.annotation.CheckReturnValue
Warning:com.google.common.base.Objects: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.base.Objects$ToStringHelper: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.base.Optional: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.base.PairwiseEquivalence: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.base.Preconditions: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.base.Predicate: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.base.Predicates: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.base.Predicates$AndPredicate: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.base.Predicates$AssignableFromPredicate: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.base.Predicates$CompositionPredicate: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.base.Predicates$ContainsPatternPredicate: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.base.Predicates$InPredicate: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.base.Predicates$InstanceOfPredicate: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.base.Predicates$IsEqualToPredicate: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.base.Predicates$NotPredicate: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.base.Predicates$ObjectPredicate$1: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.base.Predicates$ObjectPredicate$2: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.base.Predicates$ObjectPredicate$3: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.base.Predicates$ObjectPredicate$4: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.base.Predicates$OrPredicate: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.base.Present: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.base.Splitter: can't find referenced class javax.annotation.CheckReturnValue
Warning:com.google.common.base.StandardSystemProperty: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.base.Strings: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.base.Suppliers: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.base.Suppliers$SupplierComposition: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.base.Suppliers$SupplierOfInstance: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.base.Throwables: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.base.Verify: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.base.VerifyException: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.base.package-info: can't find referenced class javax.annotation.ParametersAreNonnullByDefault
Warning:com.google.common.cache.Cache: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.cache.CacheBuilder: can't find referenced class javax.annotation.CheckReturnValue
Warning:com.google.common.cache.CacheBuilderSpec: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.cache.CacheBuilderSpec$KeyStrengthParser: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.cache.CacheBuilderSpec$RecordStatsParser: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.cache.CacheBuilderSpec$ValueParser: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.cache.CacheBuilderSpec$ValueStrengthParser: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.cache.CacheStats: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.cache.ForwardingCache: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.cache.LocalCache: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.cache.LocalCache$1: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.cache.LocalCache$EntryFactory: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.cache.LocalCache$EntryFactory$1: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.cache.LocalCache$EntryFactory$2: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.cache.LocalCache$EntryFactory$3: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.cache.LocalCache$EntryFactory$4: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.cache.LocalCache$EntryFactory$5: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.cache.LocalCache$EntryFactory$6: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.cache.LocalCache$EntryFactory$7: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.cache.LocalCache$EntryFactory$8: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.cache.LocalCache$LoadingValueReference: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.cache.LocalCache$LocalManualCache: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.cache.LocalCache$ReferenceEntry: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.cache.LocalCache$Segment: can't find referenced class javax.annotation.concurrent.GuardedBy
Warning:com.google.common.cache.LocalCache$Segment: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.cache.LocalCache$Segment: can't find referenced class javax.annotation.concurrent.GuardedBy
Warning:com.google.common.cache.LocalCache$Segment: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.cache.LocalCache$Segment: can't find referenced class javax.annotation.concurrent.GuardedBy
Warning:com.google.common.cache.LocalCache$Segment: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.cache.LocalCache$Segment: can't find referenced class javax.annotation.concurrent.GuardedBy
Warning:com.google.common.cache.LocalCache$Segment: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.cache.LocalCache$Segment: can't find referenced class javax.annotation.concurrent.GuardedBy
Warning:com.google.common.cache.LocalCache$Segment: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.cache.LocalCache$Segment: can't find referenced class javax.annotation.concurrent.GuardedBy
Warning:com.google.common.cache.LocalCache$Segment: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.cache.LocalCache$Segment: can't find referenced class javax.annotation.concurrent.GuardedBy
Warning:com.google.common.cache.LocalCache$StrongAccessEntry: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.cache.LocalCache$StrongAccessWriteEntry: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.cache.LocalCache$StrongEntry: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.cache.LocalCache$StrongWriteEntry: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.cache.LocalCache$ValueReference: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.cache.LocalCache$WeakAccessEntry: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.cache.LocalCache$WeakAccessWriteEntry: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.cache.LocalCache$WeakEntry: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.cache.LocalCache$WeakWriteEntry: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.cache.LocalCache$WriteThroughEntry: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.cache.RemovalNotification: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.cache.package-info: can't find referenced class javax.annotation.ParametersAreNonnullByDefault
Warning:com.google.common.collect.AbstractBiMap: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.AbstractListMultimap: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.AbstractMapBasedMultimap: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.AbstractMapBasedMultimap$AsMap: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.AbstractMapBasedMultimap$KeySet: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.AbstractMapBasedMultimap$RandomAccessWrappedList: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.AbstractMapBasedMultimap$WrappedCollection: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.AbstractMapBasedMultimap$WrappedList: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.AbstractMapBasedMultimap$WrappedNavigableSet: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.AbstractMapBasedMultimap$WrappedSet: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.AbstractMapBasedMultimap$WrappedSortedSet: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.AbstractMapBasedMultiset: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.AbstractMapEntry: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.AbstractMultimap: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.AbstractMultimap$EntrySet: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.AbstractMultimap$Values: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.AbstractMultiset: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.AbstractNavigableMap: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.AbstractRangeSet: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.AbstractSequentialIterator: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.AbstractSetMultimap: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.AbstractSortedMultiset: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.AbstractSortedSetMultimap: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.AbstractTable: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.AbstractTable$CellSet: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.AllEqualOrdering: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.ArrayTable: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.ArrayTable$ArrayMap: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.BiMap: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.ByFunctionOrdering: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.CartesianList: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.ClassToInstanceMap: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.Collections2: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.Collections2$FilteredCollection: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.Collections2$OrderedPermutationCollection: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.Collections2$PermutationCollection: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.ComparatorOrdering: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.ComparisonChain: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.ComparisonChain$1: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.ComparisonChain$InactiveComparisonChain: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.ComputationException: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.ComputingConcurrentHashMap$ComputedReference: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.ComputingConcurrentHashMap$ComputingValueReference: can't find referenced class javax.annotation.concurrent.GuardedBy
Warning:com.google.common.collect.ComputingConcurrentHashMap$ComputingValueReference: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.ConcurrentHashMultiset: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.ConcurrentHashMultiset$1: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.Count: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.Cut: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.DenseImmutableTable: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.DenseImmutableTable: can't find referenced class javax.annotation.concurrent.Immutable
Warning:com.google.common.collect.DenseImmutableTable$ImmutableArrayMap: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.DescendingImmutableSortedMultiset: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.DescendingImmutableSortedSet: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.EmptyContiguousSet: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.EmptyImmutableBiMap: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.EmptyImmutableSet: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.EmptyImmutableSortedMap: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.EmptyImmutableSortedMultiset: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.EmptyImmutableSortedSet: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.EnumHashBiMap: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.ExplicitOrdering: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.FilteredEntryMultimap: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.FilteredEntryMultimap$AsMap: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.FilteredEntryMultimap$AsMap$1: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.FilteredEntryMultimap$AsMap$3: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.FilteredEntryMultimap$Keys: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.FilteredEntryMultimap$ValuePredicate: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.FilteredKeyListMultimap: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.FilteredKeyMultimap: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.FilteredKeyMultimap$Entries: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.FilteredKeySetMultimap$EntrySet: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.FilteredMultimapValues: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.FluentIterable: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.FluentIterable: can't find referenced class javax.annotation.CheckReturnValue
Warning:com.google.common.collect.ForwardingCollection: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.ForwardingList: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.ForwardingListMultimap: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.ForwardingMap: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.ForwardingMapEntry: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.ForwardingMultimap: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.ForwardingMultiset: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.ForwardingSet: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.ForwardingSetMultimap: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.ForwardingSortedMap: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.ForwardingSortedSet: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.ForwardingSortedSetMultimap: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.GeneralRange: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.HashBasedTable: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.HashBiMap: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.HashBiMap$BiEntry: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.HashBiMap$Inverse: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.HashBiMap$Inverse$InverseKeySet: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.HashBiMap$KeySet: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.Hashing: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.ImmutableClassToInstanceMap: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.ImmutableCollection: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.ImmutableEntry: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.ImmutableEnumMap: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.ImmutableList: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.ImmutableList$ReverseImmutableList: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.ImmutableListMultimap: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.ImmutableMap: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.ImmutableMap$MapViewOfValuesAsSingletonSets: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.ImmutableMapEntry: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.ImmutableMapEntry$TerminalEntry: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.ImmutableMapEntrySet: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.ImmutableMapKeySet: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.ImmutableMapValues: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.ImmutableMultimap: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.ImmutableMultimap$Keys: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.ImmutableMultimap$Values: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.ImmutableMultiset: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.ImmutableRangeMap: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.ImmutableRangeSet$AsSet: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.ImmutableSet: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.ImmutableSetMultimap: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.ImmutableSetMultimap$EntrySet: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.ImmutableSortedAsList: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.ImmutableSortedMap: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.ImmutableSortedSet: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.ImmutableTable: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.Iterables: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.Iterators: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.LexicographicalOrdering: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.LinkedHashMultimap: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.LinkedHashMultimap$ValueEntry: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.LinkedHashMultimap$ValueSet: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.LinkedListMultimap: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.LinkedListMultimap$Node: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.LinkedListMultimap$ValueForKeyIterator: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.ListMultimap: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.Lists: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.Lists$OnePlusArrayList: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.Lists$ReverseList: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.Lists$StringAsImmutableList: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.Lists$TwoPlusArrayList: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.MapConstraint: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.MapConstraints$ConstrainedAsMapEntries: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.MapConstraints$ConstrainedBiMap: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.MapConstraints$ConstrainedEntrySet: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.MapDifference: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.MapDifference$ValueDifference: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.MapMaker$NullConcurrentMap: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.MapMaker$RemovalNotification: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.MapMakerInternalMap: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.MapMakerInternalMap$1: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.MapMakerInternalMap$EntryFactory: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.MapMakerInternalMap$EntryFactory$1: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.MapMakerInternalMap$EntryFactory$2: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.MapMakerInternalMap$EntryFactory$3: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.MapMakerInternalMap$EntryFactory$4: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.MapMakerInternalMap$EntryFactory$5: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.MapMakerInternalMap$EntryFactory$6: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.MapMakerInternalMap$EntryFactory$7: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.MapMakerInternalMap$EntryFactory$8: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.MapMakerInternalMap$Segment: can't find referenced class javax.annotation.concurrent.GuardedBy
Warning:com.google.common.collect.MapMakerInternalMap$Segment: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.MapMakerInternalMap$Segment: can't find referenced class javax.annotation.concurrent.GuardedBy
Warning:com.google.common.collect.MapMakerInternalMap$Segment: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.MapMakerInternalMap$Segment: can't find referenced class javax.annotation.concurrent.GuardedBy
Warning:com.google.common.collect.MapMakerInternalMap$SoftEntry: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.MapMakerInternalMap$SoftEvictableEntry: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.MapMakerInternalMap$SoftExpirableEntry: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.MapMakerInternalMap$SoftExpirableEvictableEntry: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.MapMakerInternalMap$StrongEntry: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.MapMakerInternalMap$StrongEvictableEntry: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.MapMakerInternalMap$StrongExpirableEntry: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.MapMakerInternalMap$StrongExpirableEvictableEntry: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.MapMakerInternalMap$ValueReference: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.MapMakerInternalMap$WeakEntry: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.MapMakerInternalMap$WeakEvictableEntry: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.MapMakerInternalMap$WeakExpirableEntry: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.MapMakerInternalMap$WeakExpirableEvictableEntry: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.MapMakerInternalMap$WriteThroughEntry: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.Maps: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.Maps$8: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.Maps$AbstractFilteredMap: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.Maps$AsMapView: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.Maps$BiMapConverter: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.Maps$EntryFunction$1: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.Maps$EntryFunction$2: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.Maps$EntryTransformer: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.Maps$FilteredEntryBiMap: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.Maps$FilteredEntryNavigableMap: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.Maps$NavigableAsMapView: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.Maps$TransformedEntriesNavigableMap: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.Maps$UnmodifiableBiMap: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.Maps$UnmodifiableEntrySet: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.Maps$ValueDifferenceImpl: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.Maps$Values: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.Multimap: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.Multimaps: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.Multimaps$Entries: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.Multimaps$Keys: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.Multimaps$Keys$KeysEntrySet: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.Multiset: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.Multisets: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.Multisets$1: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.Multisets$3: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.Multisets$4: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.Multisets$AbstractEntry: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.Multisets$EntrySet: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.Multisets$FilteredMultiset: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.Multisets$ImmutableEntry: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.NullsFirstOrdering: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.NullsLastOrdering: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.ObjectArrays: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.Ordering: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.Range: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.RangeMap: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.RangeSet: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.RegularContiguousSet: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.RegularImmutableBiMap: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.RegularImmutableBiMap$Inverse: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.RegularImmutableBiMap$NonTerminalBiMapEntry: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.RegularImmutableList: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.RegularImmutableMap: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.RegularImmutableMap$NonTerminalMapEntry: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.RegularImmutableMultiset: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.RegularImmutableSortedMap: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.RegularImmutableSortedMultiset: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.RegularImmutableSortedSet: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.RegularImmutableTable: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.RegularImmutableTable$CellSet: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.ReverseOrdering: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.SetMultimap: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.Sets: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.Sets$CartesianSet: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.Sets$FilteredNavigableSet: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.Sets$FilteredSet: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.Sets$PowerSet: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.Sets$SubSet: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.SingletonImmutableBiMap: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.SingletonImmutableList: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.SingletonImmutableSet: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.SortedLists: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.SortedMultisets: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.SortedSetMultimap: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.SparseImmutableTable: can't find referenced class javax.annotation.concurrent.Immutable
Warning:com.google.common.collect.StandardTable: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.Synchronized: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.Synchronized$SynchronizedAsMap: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.Synchronized$SynchronizedAsMapEntries: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.Synchronized$SynchronizedAsMapValues: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.Synchronized$SynchronizedBiMap: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.Synchronized$SynchronizedCollection: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.Synchronized$SynchronizedDeque: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.Synchronized$SynchronizedEntry: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.Synchronized$SynchronizedList: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.Synchronized$SynchronizedListMultimap: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.Synchronized$SynchronizedMap: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.Synchronized$SynchronizedMultimap: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.Synchronized$SynchronizedMultiset: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.Synchronized$SynchronizedNavigableMap: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.Synchronized$SynchronizedNavigableSet: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.Synchronized$SynchronizedObject: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.Synchronized$SynchronizedQueue: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.Synchronized$SynchronizedRandomAccessList: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.Synchronized$SynchronizedSet: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.Synchronized$SynchronizedSetMultimap: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.Synchronized$SynchronizedSortedMap: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.Synchronized$SynchronizedSortedSet: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.Synchronized$SynchronizedSortedSetMultimap: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.Table: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.Table$Cell: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.Tables: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.Tables$ImmutableCell: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.Tables$TransposeTable: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.Tables$UnmodifiableTable: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.TreeBasedTable$TreeRow: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.TreeMultimap: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.TreeMultiset: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.TreeMultiset$Aggregate: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.TreeMultiset$Aggregate$1: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.TreeMultiset$Aggregate$2: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.TreeMultiset$AvlNode: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.TreeMultiset$Reference: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.TreeRangeMap: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.TreeRangeMap$1: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.TreeRangeMap$AsMapOfRanges: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.TreeRangeMap$SubRangeMap: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.TreeRangeMap$SubRangeMap$SubRangeMapAsMap$1: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.TreeRangeSet: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.TreeRangeSet$AsRanges: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.TreeRangeSet$ComplementRangesByLowerBound: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.TreeRangeSet$RangesByUpperBound: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.TreeRangeSet$SubRangeSet: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.TreeRangeSet$SubRangeSetRangesByLowerBound: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.collect.package-info: can't find referenced class javax.annotation.ParametersAreNonnullByDefault
Warning:com.google.common.escape.ArrayBasedUnicodeEscaper: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.escape.Escapers$Builder: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.escape.package-info: can't find referenced class javax.annotation.ParametersAreNonnullByDefault
Warning:com.google.common.eventbus.AnnotatedSubscriberFinder$MethodIdentifier: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.eventbus.EventSubscriber: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.hash.BloomFilter: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.hash.Funnels$SequentialFunnel: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.hash.Funnels$StringCharsetFunnel: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.hash.HashCode: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.hash.Hashing$ConcatenatedHashFunction: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.hash.Murmur3_128HashFunction: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.hash.Murmur3_32HashFunction: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.hash.SipHashFunction: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.hash.package-info: can't find referenced class javax.annotation.ParametersAreNonnullByDefault
Warning:com.google.common.html.package-info: can't find referenced class javax.annotation.ParametersAreNonnullByDefault
Warning:com.google.common.io.AppendableWriter: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.io.BaseEncoding: can't find referenced class javax.annotation.CheckReturnValue
Warning:com.google.common.io.BaseEncoding$StandardBaseEncoding: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.io.CharSource: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.io.Closeables: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.io.Closer: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.io.CountingInputStream: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.io.CountingOutputStream: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.io.MultiInputStream: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.io.MultiReader: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.io.PatternFilenameFilter: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.io.package-info: can't find referenced class javax.annotation.ParametersAreNonnullByDefault
Warning:com.google.common.math.MathPreconditions: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.math.package-info: can't find referenced class javax.annotation.ParametersAreNonnullByDefault
Warning:com.google.common.net.HostAndPort: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.net.HostAndPort: can't find referenced class javax.annotation.concurrent.Immutable
Warning:com.google.common.net.HostSpecifier: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.net.InetAddresses$TeredoInfo: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.net.InternetDomainName: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.net.MediaType: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.net.MediaType: can't find referenced class javax.annotation.concurrent.Immutable
Warning:com.google.common.net.package-info: can't find referenced class javax.annotation.ParametersAreNonnullByDefault
Warning:com.google.common.primitives.Doubles: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.primitives.Floats: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.primitives.Ints: can't find referenced class javax.annotation.CheckForNull
Warning:com.google.common.primitives.UnsignedInteger: can't find referenced class javax.annotation.CheckReturnValue
Warning:com.google.common.primitives.UnsignedInteger: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.primitives.UnsignedLong: can't find referenced class javax.annotation.CheckReturnValue
Warning:com.google.common.primitives.UnsignedLong: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.primitives.package-info: can't find referenced class javax.annotation.ParametersAreNonnullByDefault
Warning:com.google.common.reflect.AbstractInvocationHandler: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.reflect.ClassPath$Scanner: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.reflect.Element: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.reflect.Invokable: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.reflect.Invokable$ConstructorInvokable: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.reflect.Invokable$MethodInvokable: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.reflect.MutableTypeToInstanceMap: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.reflect.Parameter: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.reflect.TypeParameter: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.reflect.TypeResolver$WildcardCapturer: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.reflect.TypeToInstanceMap: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.reflect.TypeToken: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.reflect.TypeToken$TypeCollector: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.reflect.TypeToken$TypeCollector$1: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.reflect.TypeToken$TypeCollector$2: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.reflect.TypeVisitor: can't find referenced class javax.annotation.concurrent.NotThreadSafe
Warning:com.google.common.reflect.Types: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.reflect.Types$ClassOwnership: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.reflect.Types$ClassOwnership$1: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.reflect.Types$ClassOwnership$2: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.reflect.Types$ParameterizedTypeImpl: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.reflect.package-info: can't find referenced class javax.annotation.ParametersAreNonnullByDefault
Warning:com.google.common.util.concurrent.AbstractFuture: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.util.concurrent.AbstractFuture$Sync: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.util.concurrent.AbstractListeningExecutorService: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.util.concurrent.AbstractScheduledService$CustomScheduler$ReschedulableCallable: can't find referenced class javax.annotation.concurrent.GuardedBy
Warning:com.google.common.util.concurrent.AbstractService: can't find referenced class javax.annotation.concurrent.GuardedBy
Warning:com.google.common.util.concurrent.AbstractService$StateSnapshot: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.util.concurrent.AbstractService$StateSnapshot: can't find referenced class javax.annotation.concurrent.Immutable
Warning:com.google.common.util.concurrent.AsyncSettableFuture: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.util.concurrent.Atomics: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.util.concurrent.Callables: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.util.concurrent.CycleDetectingLockFactory: can't find referenced class javax.annotation.concurrent.ThreadSafe
Warning:com.google.common.util.concurrent.CycleDetectingLockFactory$LockGraphNode: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.util.concurrent.CycleDetectingLockFactory$Policy: can't find referenced class javax.annotation.concurrent.ThreadSafe
Warning:com.google.common.util.concurrent.ExecutionError: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.util.concurrent.ExecutionList: can't find referenced class javax.annotation.concurrent.GuardedBy
Warning:com.google.common.util.concurrent.ExecutionList$RunnableExecutorPair: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.util.concurrent.FutureCallback: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.util.concurrent.Futures: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.util.concurrent.Futures$ChainingListenableFuture: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.util.concurrent.Futures$ImmediateSuccessfulCheckedFuture: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.util.concurrent.Futures$ImmediateSuccessfulFuture: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.util.concurrent.ListenableFutureTask: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.util.concurrent.ListenerCallQueue: can't find referenced class javax.annotation.concurrent.GuardedBy
Warning:com.google.common.util.concurrent.Monitor: can't find referenced class javax.annotation.concurrent.GuardedBy
Warning:com.google.common.util.concurrent.Monitor$Guard: can't find referenced class javax.annotation.concurrent.GuardedBy
Warning:com.google.common.util.concurrent.RateLimiter: can't find referenced class javax.annotation.concurrent.ThreadSafe
Warning:com.google.common.util.concurrent.SerializingExecutor: can't find referenced class javax.annotation.concurrent.GuardedBy
Warning:com.google.common.util.concurrent.ServiceManager$ServiceManagerState: can't find referenced class javax.annotation.concurrent.GuardedBy
Warning:com.google.common.util.concurrent.SettableFuture: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.util.concurrent.UncheckedExecutionException: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.util.concurrent.UncheckedTimeoutException: can't find referenced class javax.annotation.Nullable
Warning:com.google.common.util.concurrent.package-info: can't find referenced class javax.annotation.ParametersAreNonnullByDefault
Warning:com.google.common.xml.package-info: can't find referenced class javax.annotation.ParametersAreNonnullByDefault
Warning:org.acra.config.BaseCoreConfigurationBuilder: can't find referenced class org.acra.annotation.Transform
Warning:there were 2143 unresolved references to classes or interfaces.
Warning:there were 1 unresolved references to program class members.
Warning:Exception while processing task java.io.IOException: Please correct the above warnings first.

@F43nd1r
Copy link
Member

F43nd1r commented Sep 18, 2017

Proguard doesn't like autoservice to be compiled in the project. I changed the scope to provided, because it isn't used at runtime anyways.

I uploaded alpha6 with this change and a few more fixes for proguard.

After this size reduction the minimal(maximal) useful configuration is 29%(11%) smaller than version 4.10

@NLLAPPS
Copy link
Author

NLLAPPS commented Sep 22, 2017

I am doing this correctly?
I Only get crash notification icon with OK and Cancel buttons which you have to expand to act which does nothing when tapped OK. Tapping on the notification does nothing (I expected it to bring up confirmation dialog)

Here is my old config

@ReportsCrashes( mode = ReportingInteractionMode.NOTIFICATION,
mailTo = PhoneSettings.CONTACT_EMAIL,
resDialogIcon = R.drawable.acr_icon,
resDialogTitle = R.string.crash_dialog_title,
resNotifTickerText = R.string.crash_notif_ticker_text,
resNotifTitle = R.string.crash_notif_title,
resNotifText = R.string.crash_notif_text,
resDialogText = R.string.crash_dialog_text,
customReportContent = {
ReportField.USER_COMMENT,
ReportField.PACKAGE_NAME,
ReportField.APP_VERSION_NAME,
ReportField.ANDROID_VERSION,
ReportField.BRAND,
ReportField.PHONE_MODEL,
ReportField.CUSTOM_DATA,
ReportField.STACK_TRACE,
ReportField.LOGCAT
}

)

and here is the new config

@AcraNotification(
resTickerText = R.string.crash_notif_ticker_text,
resTitle = R.string.crash_notif_title,
resText = R.string.crash_notif_text,
resChannelName = R.string.app_name,
resChannelImportance = 4

)
@acracore( reportContent = {
ReportField.USER_COMMENT,
ReportField.PACKAGE_NAME,
ReportField.APP_VERSION_NAME,
ReportField.ANDROID_VERSION,
ReportField.BRAND,
ReportField.PHONE_MODEL,
ReportField.CUSTOM_DATA,
ReportField.STACK_TRACE,
ReportField.LOGCAT
}

)

@F43nd1r
Copy link
Member

F43nd1r commented Sep 22, 2017

which does nothing when tapped OK

Does the notification disappear?

I expected it to bring up confirmation dialog

In case you haven't noticed, instead of bringing up a dialog as the old notification did, this just lets the user interact with the notification directly

Your config looks good.

@NLLAPPS
Copy link
Author

NLLAPPS commented Sep 23, 2017 via email

@F43nd1r
Copy link
Member

F43nd1r commented Sep 23, 2017

Have you tried alpha7? I've fixed several edge cases there.

@F43nd1r
Copy link
Member

F43nd1r commented Sep 23, 2017

I've uploaded some images showcasing the notification (alpha 7) on different android versions: https://imgur.com/a/bpnAT

Config used:

@AcraNotification(
        resTitle = R.string.title,
        resText = R.string.text,
        resChannelName = R.string.app_name,
        resSendButtonText = R.string.button_send,
        resDiscardButtonText = R.string.button_discard,
        resSendWithCommentButtonText = R.string.button_send_with_comment,
        resCommentPrompt = R.string.comment,
        resOkToast = R.string.toast_text)

resources:

<resources>
    <string name="app_name">AcraTest</string>
    <string name="title">Crash</string>
    <string name="text">AcraTest crashed. Please send a report to support development.</string>
    <string name="comment">Enter comment here</string>
    <string name="toast_text">Report has been sent.\nThanks!</string>
    <string name="button_send_with_comment">Send with comment</string>
    <string name="button_send">Send</string>
    <string name="button_discard">Discard</string>
</resources>

@NLLAPPS
Copy link
Author

NLLAPPS commented Sep 23, 2017

Thank you it seems to be OK. However, how would one define the email address that will ACRA use to send?
I don't have any backed. I was simply using mailTo to bring up user's email client

@F43nd1r
Copy link
Member

F43nd1r commented Sep 23, 2017

Use acra-mail instead of acra-http

and

@AcraMailSender(mailTo="[email protected]")

@NLLAPPS
Copy link
Author

NLLAPPS commented Sep 23, 2017

Works great! May I suggest a small enhancement? AS a user I would expect something happening when notification touched. Perhaps send action? I understand you already have Send and Cancel Actions already but I m pretty sure most people would tap on the notification itself.
Thank you for quick responses .

@F43nd1r
Copy link
Member

F43nd1r commented Sep 23, 2017 via email

@F43nd1r
Copy link
Member

F43nd1r commented Oct 9, 2017

I implemented that toggle in alpha8+

@F43nd1r F43nd1r closed this as completed Oct 9, 2017
@NLLAPPS
Copy link
Author

NLLAPPS commented Oct 10, 2017

Thanks very much. Is there a sample configuration?

@NLLAPPS
Copy link
Author

NLLAPPS commented Oct 10, 2017

Also getting following crash on app start on alpha8

10-10 10:03:03.617 16507-16507/com.nll.acr E/ACRA: Unable to load collector java.util.ServiceConfigurationError: org.acra.collector.Collector: Provider org.acra.collector.ConfigurationCollector not found at java.util.ServiceLoader.fail(ServiceLoader.java:225) at java.util.ServiceLoader.-wrap1(ServiceLoader.java) at java.util.ServiceLoader$LazyIterator.next(ServiceLoader.java:366) at java.util.ServiceLoader$1.next(ServiceLoader.java:448) at org.acra.collector.CrashReportDataFactory.<init>(CrashReportDataFactory.java:54) at org.acra.ErrorReporter.<init>(ErrorReporter.java:90) at org.acra.ACRA.init(ACRA.java:241) at org.acra.ACRA.init(ACRA.java:170) at org.acra.ACRA.init(ACRA.java:154) at org.acra.ACRA.init(ACRA.java:137) at com.testonCreate(Test.java:172) at android.app.Instrumentation.callApplicationOnCreate(Instrumentation.java:1032) at android.app.ActivityThread.handleBindApplication(ActivityThread.java:6017) at android.app.ActivityThread.-wrap3(ActivityThread.java) at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1727) at android.os.Handler.dispatchMessage(Handler.java:102) at android.os.Looper.loop(Looper.java:154) at android.app.ActivityThread.main(ActivityThread.java:6823) at java.lang.reflect.Method.invoke(Native Method) at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1557) at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1445) Caused by: java.lang.ClassNotFoundException: org.acra.collector.ConfigurationCollector at java.lang.Class.classForName(Native Method) at java.lang.Class.forName(Class.java:400) at java.util.ServiceLoader$LazyIterator.next(ServiceLoader.java:364) at java.util.ServiceLoader$1.next(ServiceLoader.java:448)  at org.acra.collector.CrashReportDataFactory.<init>(CrashReportDataFactory.java:54)  at org.acra.ErrorReporter.<init>(ErrorReporter.java:90)  at org.acra.ACRA.init(ACRA.java:241)  at org.acra.ACRA.init(ACRA.java:170)  at org.acra.ACRA.init(ACRA.java:154)  at org.acra.ACRA.init(ACRA.java:137)  at com.testonCreate(Test.java:172)  at android.app.Instrumentation.callApplicationOnCreate(Instrumentation.java:1032)  at android.app.ActivityThread.handleBindApplication(ActivityThread.java:6017)  at android.app.ActivityThread.-wrap3(ActivityThread.java)  at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1727)  at android.os.Handler.dispatchMessage(Handler.java:102)  at android.os.Looper.loop(Looper.java:154)  at android.app.ActivityThread.main(ActivityThread.java:6823)  at java.lang.reflect.Method.invoke(Native Method)  at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1557)  at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1445)  Caused by: java.lang.ClassNotFoundException: Didn't find class "org.acra.collector.ConfigurationCollector" on path: DexPathList[[zip file "/data/app/com.nll.acr-2/base.apk"],nativeLibraryDirectories=[/data/app/com.nll.acr-2/lib/arm, /data/app/com.nll.acr-2/base.apk!/lib/armeabi-v7a, /system/lib, /vendor/lib]] at dalvik.system.BaseDexClassLoader.findClass(BaseDexClassLoader.java:56) at java.lang.ClassLoader.loadClass(ClassLoader.java:380) at java.lang.ClassLoader.loadClass(ClassLoader.java:312) at java.lang.Class.classForName(Native Method)  at java.lang.Class.forName(Class.java:400)  at java.util.ServiceLoader$LazyIterator.next(ServiceLoader.java:364)  at java.util.ServiceLoader$1.next(ServiceLoader.java:448)  at org.acra.collector.CrashReportDataFactory.<init>(CrashReportDataFactory.java:54)  at org.acra.ErrorReporter.<init>(ErrorReporter.java:90)  at org.acra.ACRA.init(ACRA.java:241)  at org.acra.ACRA.init(ACRA.java:170)  at org.acra.ACRA.init(ACRA.java:154)  at org.acra.ACRA.init(ACRA.java:137)  at com.testonCreate(Test.java:172)  at android.app.Instrumentation.callApplicationOnCreate(Instrumentation.java:1032)  at android.app.ActivityThread.handleBindApplication(ActivityThread.java:6017)  at android.app.ActivityThread.-wrap3(ActivityThread.java)  at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1727)  at android.os.Handler.dispatchMessage(Handler.java:102)  at android.os.Looper.loop(Looper.java:154)  at android.app.ActivityThread.main(ActivityThread.java:6823)  at java.lang.reflect.Method.invoke(Native Method)  at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1557)  at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1445) 

@F43nd1r
Copy link
Member

F43nd1r commented Oct 10, 2017

Use alpha 11, Service loading should be fixed there.

Usage:

@AcraNotification(
        //...
        sendOnClick = true)

@NLLAPPS
Copy link
Author

NLLAPPS commented Oct 12, 2017

Thanks. I get following on 11

org.acra.collector.CollectorException: Error while retrieving USER_APP_START_DATE data at org.acra.collector.AbstractReportFieldCollector.collect(AbstractReportFieldCollector.java:72) at org.acra.collector.CrashReportDataFactory.createCrashData(CrashReportDataFactory.java:93) at org.acra.builder.ReportExecutor.execute(ReportExecutor.java:93) at org.acra.builder.ReportBuilder.build(ReportBuilder.java:150) at org.acra.ErrorReporter.uncaughtException(ErrorReporter.java:184) at java.lang.ThreadGroup.uncaughtException(ThreadGroup.java:1068) at java.lang.ThreadGroup.uncaughtException(ThreadGroup.java:1063) at java.lang.Thread.dispatchUncaughtException(Thread.java:1953) Caused by: java.lang.NullPointerException: Attempt to invoke virtual method 'long java.util.Calendar.getTimeInMillis()' on a null object reference at org.acra.collector.TimeCollector.getTimeString(TimeCollector.java:79) at org.acra.collector.TimeCollector.collect(TimeCollector.java:61) at org.acra.collector.AbstractReportFieldCollector.collect(AbstractReportFieldCollector.java:68) at org.acra.collector.CrashReportDataFactory.createCrashData(CrashReportDataFactory.java:93)  at org.acra.builder.ReportExecutor.execute(ReportExecutor.java:93)  at org.acra.builder.ReportBuilder.build(ReportBuilder.java:150)  at org.acra.ErrorReporter.uncaughtException(ErrorReporter.java:184)  at java.lang.ThreadGroup.uncaughtException(ThreadGroup.java:1068)  at java.lang.ThreadGroup.uncaughtException(ThreadGroup.java:1063)  at java.lang.Thread.dispatchUncaughtException(Thread.java:1953) 

@F43nd1r
Copy link
Member

F43nd1r commented Oct 12, 2017

  1. This is on loglevel WARN, right?
  2. Can't reproduce, please share your configuration. Are you using proguard?

@NLLAPPS
Copy link
Author

NLLAPPS commented Oct 13, 2017

Yes WARN.
Yes proguard is used
Here is the config

`@AcraMailSender(
mailTo = PhoneSettings.CONTACT_EMAIL,
reportAsFile = false
)

@AcraNotification(
resTitle = R.string.crash_notif_title,
resText = R.string.crash_dialog_text,
resChannelName = R.string.app_name,
resSendButtonText = R.string.send,
resDiscardButtonText = R.string.cancel,
sendOnClick = true

)

@acracore(
reportContent = {
ReportField.USER_COMMENT,
ReportField.PACKAGE_NAME,
ReportField.APP_VERSION_NAME,
ReportField.ANDROID_VERSION,
ReportField.BRAND,
ReportField.PHONE_MODEL,
ReportField.CUSTOM_DATA,
ReportField.STACK_TRACE,
ReportField.LOGCAT
}
)`

@F43nd1r
Copy link
Member

F43nd1r commented Oct 13, 2017

Thanks, will be fixed in next version.

I've seen you are using reportAsFile = false. Is that because you want everything to be as before, or for another reason? I'm trying to decide if false would be the better default for that option.

@NLLAPPS
Copy link
Author

NLLAPPS commented Oct 13, 2017 via email

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants