Android Studio Gradle new "apply plugin" -
all of tutorials i've read gradle explain build.gradle
file should contain either:
apply plugin: 'android'
or
apply plugin: 'android-library'
however, i've built new project android studio 0.8.6 , build.gradle
has:
apply plugin: 'com.android.application'
- is purely syntax change or there deeper purpose?
- what new syntax creating android library?
- pure syntax change ( think avoid collisions / use 'protected' namespace )
- com.android.library
this talk 2014 gradle summit sheds more light on it: https://www.youtube.com/watch?v=a9fn3ehhu-o ~ min 15
Comments
Post a Comment