글
Android Studio Migrating Gradle Projects to version 1.0.0
A/Android
2014. 12. 22. 01:08
Gradle 업뎃하면서 쓰임새의 변화가 어느정도 생겼다.
참고 : http://tools.android.com/tech-docs/new-build-system/migrating-to-1-0-0
There are some additional other properties that were renamed as well, in both build types and product flavors.
ApplicationId in Library Projects
You cannot use applicationId to customize the package of a library project. The package name has to be fixed in library projects (and specified as packageName in the manifest). The Gradle plugin did not enforce this restriction earlier.
Renamed Properties in BuildTypes
runProguard => minifyEnabled
zipAlign => zipAlignEnabled
jniDebugBuild => jniDebuggable
renderscriptDebug => renderscriptDebuggable
Renamed Properties in ProductFlavors
flavorGroups => flavorDimensions
packageName => applicationId
testPackageName => testApplicationId
renderscriptSupportMode => renderscriptSupportModeEnabled
ProductFlavor.renderscriptNdkMode => renderscriptNdkModeEnabled
'A > Android' 카테고리의 다른 글
안드로이드 터미널 명령어 (0) | 2015.03.07 |
---|---|
AppCompat v4 v7 의 의미 (0) | 2015.02.20 |
Android 4.4 kitkat 웹뷰 디버깅 (0) | 2014.11.25 |
EOFException with Spring REST Template | Android (0) | 2014.09.03 |
Manifest merger failed : uses-sdk:minSdkVersion 14 (0) | 2014.08.25 |