Annotation error in client

I’m update clinet from 1.0.33 to 1.0.35 and got an error:

   ...\service\dtos\Authenticate.java:147: error: incompatible types: NonExistentClass cannot be converted to Annotation
        @error.NonExistentClass()
              ^

    apply plugin: 'com.android.application'
    
    apply plugin: 'kotlin-android'
    
    apply plugin: 'kotlin-android-extensions'
    
    apply plugin: 'kotlin-kapt'
    
    apply plugin: 'realm-android'
    
    apply plugin: 'com.google.gms.google-services'
    
    apply plugin: 'io.fabric'
    
    android {
        compileSdkVersion 28
        defaultConfig {
            applicationId "com.mherarsh.fkm.service"
            minSdkVersion 22
            targetSdkVersion 28
            versionCode 1
            versionName "1.0"
            testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
        }
        buildTypes {
            release {
                minifyEnabled false
                proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
            }
        }
    
        compileOptions {
            sourceCompatibility JavaVersion.VERSION_1_8
            targetCompatibility JavaVersion.VERSION_1_8
        }
    

kapt {
        generateStubs = true
        correctErrorTypes = true
    }
    
    }
    
    
    dependencies {
        implementation fileTree(dir: 'libs', include: ['*.jar'])
        implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
        implementation 'androidx.appcompat:appcompat:1.1.0-beta01'
        implementation 'androidx.core:core-ktx:1.2.0-alpha02'
        implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
        implementation 'androidx.legacy:legacy-support-v4:1.0.0'
        testImplementation 'junit:junit:4.12'
        androidTestImplementation 'androidx.test:runner:1.2.0'
        androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
    
        implementation 'com.google.android.material:material:1.1.0-alpha04'
        implementation "org.jetbrains.anko:anko:$anko_version"
        implementation 'com.google.dagger:dagger:2.22.1'
        kapt 'com.google.dagger:dagger-compiler:2.22.1'
        implementation 'net.servicestack:android:1.0.35'
        implementation 'com.github.vicpinm:krealmextensions:2.5.0'
        implementation "com.daimajia.swipelayout:library:1.2.0@aar"
        implementation "net.gcardone.junidecode:junidecode:0.4.1"
    
        implementation 'com.google.firebase:firebase-core:17.0.0'
        implementation 'com.google.firebase:firebase-storage:18.0.0'
    
        implementation('com.crashlytics.sdk.android:crashlytics:2.10.0@aar') {
            transitive = true;
        }
    }

Where did @error.NonExistentClass() come from? That’s not a Type or attribute in any ServiceStack or ServiceStack.Java library?

For that matter, neither is public static void Continue$annotations() - that’s not a method generated by ServiceStack.

in gradle.properties set:
'#Automatically convert third-party libraries to use AndroidX
android.enableJetifier=true

thought that was the problem, but after turned off still get the error

do You have any idea what might be the problem? Thanks.

No I don’t even know what those unknown classes or annotations are.

From a quick Google Search it looks like it’s coming from kapt and dagger.