3、Finished with error: FormatException: Bad UTF-8 encoding 0xc3 (at offset 169)

这是由于 app 的版本为 release 找不到 keystore 文件,

我们只需要在 app 下的 build.gradle 文件中修改为 signingConfigs.debug 即可:

buildTypes {
  release {
    signingConfig signingConfigs.debug
    proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  }
}



原文地址:https://www.cnblogs.com/niceyoo/p/9894287.html