最近接觸到一些項目是GBK,以後導入到Android Studio中,打出的包亂碼。主要緣由是由於個人AS是設置了默認編碼方式爲UTF-8的。可是導入的項目編碼是GBK。就致使了亂碼。android
具體解決方式,就是在gradle中添加以下紅色部分:app
android {
compileSdkVersion 19
buildToolsVersion "24.0.1"
defaultConfig {
applicationId "com.hehe.hehe"
minSdkVersion 18
targetSdkVersion 21
}
buildTypes {
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-project.txt'
}
}
compileOptions {
encoding "GBK"
}
}