android tutorial - Gradle information of tags in android | Developer android - android app development - android studio - android app developement
Gradle - information of tags
Gradle: It is used to make build for any software, it is a Domain specific language used to configure and fulfill all plugins, libraries downloaded from repositories. Use Plugins:
Plugin is property in key value form. In above statement denotes to key and right side string in single coats becomes its value. Gradle is DSL (Domain specific language): It contains different
Repositories and dependencies are used to configure requirements for application code. Android block is used to add android specific code or information into application. We also generate our custom tags and define our own custom code, library and information. By using
Gradle files for any application
-These file is working for all project. Settings.gradle – define all sub directories or projects are included in application.
contains below:
Above repositories tag hold mevenCentral() it means all dependencies are downloaded from mevenCentral() .we can use jcenter() or any other source too. Dependencies block holds all compile time dependencies that’s should be downloaded from repositories
Above is meven library : syntax: org.codehous.groovy - > group id groovy-all - > order fact id , that’s is a name gradle used to identify library . 2.3.2’ - > version Settings.gradle – it’s include tag for all sub projects that’s is added into project