We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
切换右上角的语言为非中文,然后再点击下载即可。
设置 -> code style -> xml 右上角 set from -> predefined style -> Android -> apply -> ok
删除 defaultConfig 中的 resValue "string", "app_name", Config.appName + suffix,对 buildTypes 设置如下所示:
defaultConfig
resValue "string", "app_name", Config.appName + suffix
buildTypes
buildTypes { debug { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' applicationIdSuffix ".debug" resValue "string", "app_name", Config.appName + suffix + ".debug" } release { minifyEnabled true proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' resValue "string", "app_name", Config.appName + suffix } }
The text was updated successfully, but these errors were encountered:
Mark
Sorry, something went wrong.
No branches or pull requests
坑点
下载预览版 AS 点击无效切换右上角的语言为非中文,然后再点击下载即可。AndroidStudio 3.5 版本格式化 xml 后布局错乱
设置 -> code style -> xml 右上角 set from -> predefined style -> Android -> apply -> ok
补充
升级各库到最新版本
支持 debug 和 release 的应用共存
删除
defaultConfig
中的resValue "string", "app_name", Config.appName + suffix
,对buildTypes
设置如下所示:The text was updated successfully, but these errors were encountered: