无法解析符号 'CalligraphyContextWrapper'

Cannot resolve symbol 'CalligraphyContextWrapper'

昨天之前一切正常,但今天我将 Android studio2.3 更新为 3.1,现在我收到了这个错误。但即使我得到 Cannot resolve symbol CalligraphyContextWrapper,项目仍然成功 cleanbuild 并且 font 正在改变。如果一切正常,那么为什么会出现此错误,我感到很惊讶。你可以看到图像中的错误,我也在下面添加我的 gradle 代码。如果我做错了什么,请告诉我。

build.grade:

apply plugin: 'com.android.application'

android {
    compileSdkVersion 27
    buildToolsVersion "27.0.3"
    defaultConfig {
        applicationId "com.package"
        minSdkVersion 19
        targetSdkVersion 27
        versionCode 1
        versionName "1.2"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
        multiDexEnabled true
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
    allprojects {
        repositories {
            jcenter()
            maven {
                url "https://maven.google.com"
            }
        }
    }
}

dependencies {
    implementation fileTree(include: ['*.jar'], dir: 'libs')
    androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
        exclude group: 'com.android.support', module: 'support-annotations'
    })
    implementation  'com.android.support:appcompat-v7:27.0.0'
    implementation 'com.android.support.constraint:constraint-layout:1.0.2'
    testImplementation 'junit:junit:4.12'
    implementation 'com.android.support:design:27.0.0'
    implementation 'com.android.support:cardview-v7:27.0.0'
    /* Retrofit */
    implementation 'com.squareup.retrofit2:retrofit:2.3.0'
    implementation 'com.squareup.retrofit2:converter-gson:2.3.0'
    implementation 'com.squareup.okhttp3:logging-interceptor:3.4.1'
    implementation 'com.squareup.retrofit2:adapter-rxjava2:2.3.0'
    implementation 'com.google.code.gson:gson:2.7'
    implementation 'com.squareup.okhttp3:okhttp:3.4.2'
    //multi dex
    implementation 'com.android.support:multidex:1.0.1'
    //Picasso
    implementation 'com.squareup.picasso:picasso:2.5.2'
    //Buimplementationtter knife
    implementation 'com.jakewharton:butterknife:8.8.1'
    annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.1'
    //planet payment gateway
    implementation 'com.google.android.gms:play-services-wallet:11.0.4'
    //font
    implementation 'uk.co.chrisjenx:calligraphy:2.3.0'
    implementation 'io.card:android-sdk:5.5.1'
}

我也在github中提出了这个问题,但书法团队没有回应。 https://github.com/chrisjenx/Calligraphy/issues/449#issuecomment-386390551

任何帮助或线索将不胜感激。

您可以降级版本。使用 2.2.0 而不是 2.3.0.

implementation 'uk.co.chrisjenx:calligraphy:2.2.0'

然后Clean-Rebuild-Run.

我不确定它是否相关,但我通过执行以下操作解决了类似的问题;

  1. 从 gradle 构建文件
  2. 中删除依赖项
  3. 同步 gradle 文件
  4. 放入相同的依赖并再次同步。