Seems that with newer versions of Google Play you can compile only needed modules with gradle
with something like
dependencies {
compile 'com.google.android.gms:play-services-base:6.5.+'
compile 'com.google.android.gms:play-services-maps:6.5.+'
}
If I want to include only some dependencies (needed to analytics and in app billing services) without gradle using standard project.properties
file, How could I achieve the same result?