One of the user visible changes in 0.11 is that we’ve deprecated the
packageName and packageNameSuffix settings, and have renamed them to
applicationId and applicationIdSuffix. The purpose of this is to make
it clear that this application id is decoupled from package
declarations in your manifest, and in particular, the R class and the
BuildConfig class, and all the implementation classes inside your app,
can be renamed and refactored freely; you just need to keep
applicationId the same. If you open your build.gradle file, lint is
highlighting these deprecated calls and offering quickfixes to update
them:
Gradle 0.11版本中,packageName和packageNameSuffix被弃用,改名为applicationId和applicationIdSuffix。这一改动旨在明确应用ID与manifest中的package声明和R类、BuildConfig类及其内部实现类的解耦。用户可以自由地重命名和重构这些类,只要保持applicationId不变。升级时,lint工具会突出显示过时的调用并提供快速修复建议。
1930

被折叠的 条评论
为什么被折叠?



