SlideShare a Scribd company logo
The new build system for Android
Overview
• Gradle basics
• Gradle Plugins
• Gradle and Studio
• Demos
• Gradle 与TV版
• Resources
What’s Gradle?
1. https://gradle.org
2. https://en.wikipedia.org/wiki/Gradle
• Gradle is an open source build automation system.
• Grade introduces DSL instead of the more traditional XML
form of declaring the project configuration.
• focused around Java, Groovy and Scala development and
deployment, but more languages and project workflows are
on the roadmap.
• Gradle can automate the building, testing, publishing,
deployment.
Why Gradle?
1. Why Gradle?
2. Why choose Gradle?
• create custom build logic through plugins.
• dependency management
• Plugins can expose their own DSL and their own API for
build files to use.
• Gradle combines the best features from other build tools.
Installing Gradle
1. gradle installation
• requires a Java JDK or JRE to be installed, version 6 or higher
• Gradle ships with its own Groovy library, therefore Groovy does
not need to be installed.
• Any existing Groovy installation is ignored by Gradle.
• Gradle uses whatever JDK it finds in your path
• download (http://gradle.org/downloads)
• unpacking
• add GRADLE_HOME/bin to your PATH environment variable
• Android Studio Project includes grade
Groovy
1. http://learnxinyminutes.com/docs/groovy/
• http://groovy-lang.org/
• The language used by Gradle
• Great similarity to Java
• builds upon the strengths of Java but has additional power features
inspired by languages like Python, Ruby and Smalltalk
Build Script Basics
1. http://rominirani.com/2014/07/28/gradle-tutorial-part-1-installation-setup/
2. https://gradle.org/docs/current/userguide/tutorial_using_tasks.html#N101A9
• Project
What a project represents depends on what it is that you are doing with Gradle
• Task
A task represents some atomic piece of work which a build performs.This might be compiling some
classes, creating a JAR, generating Javadoc, or publishing some archives to a repository.
• Plugin
A plugin is a mechanism by which we can extend the capabilities of Gradle .
Demo
1. http://rominirani.com/2014/07/28/gradle-tutorial-part-1-installation-setup/
//defaultTasks 'buildTask'
task compileTask << {
System.out.println "compiling..."
}
task buildTask << {
//task buildTask (dependsOn:compileTask) << {
System.out.println "building..."
}
build.gradle
2.Gradle Plugin
• Gradle plugin for Java
• Gradle plugin for Android
• for eclipse,idea,findbugs,c,cpp,oc,jetty……
1. https://gradle.org/docs/current/userguide/plugins.html
2. https://gradle.org/docs/current/userguide/standard_plugins.html
Gradle Plugin for Java
• Source sets
• Tasks
• Project layout
• Dependency management
• ···
1. http://gradle.org/docs/current/userguide/java_plugin.html
Demo
1. http://rominirani.com/2014/07/28/gradle-tutorial-part-2-java-projects/
apply plugin: ‘java' // packaged with grade
archivesBaseName = "quote"
version = '1.0-FINAL'
repositories {
mavenCentral()
}
dependencies {
compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.3.2'
testCompile group: 'junit', name: 'junit', version: '4.+'
}
build.gradle
Gradle Plugin for Android
1. http://tools.android.com/tech-docs/new-build-system/user-guide
2. https://www.youtube.com/watch?v=LCJAgPkpmR0
3. http://tools.android.com/build
• Published in May, 2013
• 1.0 Released in Dec, 2014
• git clone
https://android.googlesource.com/platform/prebuilts/gr
adle-plugin
Goals of the new build system
• Make it easy to reuse code and resources
• Make it easy to create several variants of an
application, either for multi-apk distribution or for
different flavors of an application
• Make it easy to configure, extend and customize
the build process
• Good IDE integration
1. http://tools.android.com/tech-docs/new-build-system/user-guide
Android Plugin DSL Reference
1. Android Plugin DSL Reference
defaultConfig{}
signingConfigs{}
productFlavors{}
buildTypes{} BuildType
ProductFlavor
signingConfig
LintOptions
……{}
Blocks DSL types
signing Configs
• configuration of how an application is signed
• what can be customised?
• keyAlias
• keyPassword
• storeFile
• storePassword
• storeType
• hide key password
1. http://stackoverflow.com/questions/18328730/how-to-create-a-release-signed-apk-file-
using-gradle
Product Flavors
• A product flavor defines a customized version of
the application build by the project. A single project
can have different flavors which change the
generated application
• This new concept is designed to help when the
differences are very, very minimum
• Although different flavors could be very different
applications, using Library Projects is a better use
case for this, and the build system still supports
this.
1. http://tools.android.com/tech-docs/new-build-system/build-system-concepts
What can be customised by Product
Flavor?
• minSdkVersion
• targetSdkVersion
• versionCode
• versionName
• package name
(overrides value from
manifest)
1. http://tools.android.com/tech-docs/new-build-system/build-system-concepts
• release signing info (keystore,
key alias, passwords,…)
• BuildConfig: Ability to provide
custom Java code
• NDK ABI filter (Not implemented
yet)
• Additionally, Product Flavor can
provide their own source code,
resources and manifest.
Build Types
• A build type allows configuration of how an application is
packaged for debugging or release purpose.
• This concept is not meant to be used to create different versions
of the same application. This is orthogonal to Product Flavor.
1. http://tools.android.com/tech-docs/new-build-system/build-system-concepts
What can be customised by Build Types?
• manifest debuggable flag
• native compilation debug flag
• proguard enabled + specific rules
• debug signing flag (ie whether to use debug key or release key)
• package name suffix (2)
• Buildconfig
• DEBUG flag. Set automatically based on the manifest debuggable
flag.
• Ability to provide custom Java code.
• Types "Release" and "Debug" are automatically created and can
be reconfigured
1. http://tools.android.com/tech-docs/new-build-system/build-system-concepts
Build Variants
1. http://tools.android.com/tech-docs/new-build-system/build-system-concepts
• Build Type + Product Flavor = Build Variant
type1 type2
flavor1 flavor1-type1 flavor1-type2
flavor2 flavor2-type1 flavor2-type2
Sourcesets
1. http://tools.android.com/tech-docs/new-build-system/build-system-concepts
• remap src structure
• eclipse compatibility
Dependencies
• Simply include any artifacts provided by mavenCentral()
…
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:21.0.2'
compile 'com.jpardogo.flabbylistview:library:+'
compile 'com.jpardogo.googleprogressbar:library:+'
compile 'com.mcxiaoke.volley:library:1.0.+'
compile 'com.umeng.analytics:analytics:5.2.4'
}
…
build.gradle
Dependencies
• 指定你自己的仓库地址
…
repositories {
maven {
url "http://repo.mycompany.com/repo"
}
}
…
build.gradle
• 常见的maven仓库
• http://search.maven.org (mavenCentral())
• https://bintray.com/bintray/jcenter (jcenter())
• http://maven.oschina.net/home.html
• ( maven{ url 'http://maven.oschina.net/content/groups/public/'} )
Multi Project Build (Library Projects)
1. http://tools.android.com/tech-docs/new-build-system/build-system-concepts
• use the settings.gradle files to declare library projects
• add library projects as "compile" dependency
• 自定义library project位置
…
include ':letvCore'
include ':loginLib'
include ':letv'
project(':letvCore').projectDir = new File(rootDir, "../librarys/letvCore")
project(':loginLib').projectDir = new File(rootDir, "../librarys/loginLib")
…
settings.gradle
Demo
• 如何通过一套代码开发不同功能的apk
• git clone https://github.com/ghuiii/gradledemo.git
代码合并规则
• 图片、音频、 XML 类型的 Drawable 等资源文件,将会进行文件级的覆盖
• 字符串、颜色值、整型等资源以及 AndroidManifest.xml ,将会进行元素级
的覆盖
• 代码资源,同一个类, buildTypes 、 productFlavors 、 main 中只能存在
一次,否则会有类重复的错误
• 覆盖等级为:buildTypes > productFlavors > main
1. http://ask.android-studio.org/?/article/30
Gradle plugin for android 常见task
1. http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Build-Tasks
Studio&Gradle
1. http://developer.android.com/tools/building/index.html
• Good IDE integration
• The IDE doesn’t do a build anymore
• Building and Running from Android Studio
• Building and Running from Command Line
Gradle 与 tv版
从maven仓库获取依赖的好处
1. 将主工程与依赖隔离开,方便对依赖的管理,它们之间只是通过一条gradle语句建
立联系
2. 依赖不再会进入主工程的代码仓库
3. 在本地不会存在依赖的重复副本(依赖只会缓存一份到本地)
Resources
• http://gradle.org/docs/current/userguide/userguide.html
• http://rominirani.com/2014/07/28/gradle-tutorial-series-an-
overview/
• http://avatarqing.github.io/Gradle-Plugin-User-Guide-Chinese-
Verision/introduction/README.html
• http://developer.android.com/sdk/installing/studio-build.html
• http://apdr.qiniudn.com/index.html
Thanks

More Related Content

What's hot

Json vs Gson vs Jackson
Json vs Gson vs JacksonJson vs Gson vs Jackson
Json vs Gson vs Jackson
Vinaykumar Hebballi
 
Diabetes.arff
Diabetes.arffDiabetes.arff
CS8392 OOP
CS8392 OOPCS8392 OOP
Exploring the power of Gradle in android studio - Basics & Beyond
Exploring the power of Gradle in android studio - Basics & BeyondExploring the power of Gradle in android studio - Basics & Beyond
Exploring the power of Gradle in android studio - Basics & Beyond
Kaushal Dhruw
 
Version control system
Version control systemVersion control system
Version control system
Aryman Gautam
 
Load Testing with k6 framework
Load Testing with k6 frameworkLoad Testing with k6 framework
Load Testing with k6 framework
Svetlin Nakov
 
Introduction to WAMP, a protocol enabling PUB/SUB and RPC over Websocket
Introduction to WAMP, a protocol enabling PUB/SUB and RPC over WebsocketIntroduction to WAMP, a protocol enabling PUB/SUB and RPC over Websocket
Introduction to WAMP, a protocol enabling PUB/SUB and RPC over Websocket
sametmax
 
Java 9 Features
Java 9 FeaturesJava 9 Features
Java 9 Features
NexThoughts Technologies
 
Interfaces and abstract classes
Interfaces and abstract classesInterfaces and abstract classes
Interfaces and abstract classes
AKANSH SINGHAL
 
Horovod - Distributed TensorFlow Made Easy
Horovod - Distributed TensorFlow Made EasyHorovod - Distributed TensorFlow Made Easy
Horovod - Distributed TensorFlow Made Easy
Alexander Sergeev
 
Chapter 02: Classes Objects and Methods Java by Tushar B Kute
Chapter 02: Classes Objects and Methods Java by Tushar B KuteChapter 02: Classes Objects and Methods Java by Tushar B Kute
Chapter 02: Classes Objects and Methods Java by Tushar B Kute
Tushar B Kute
 
Handling I/O in Java
Handling I/O in JavaHandling I/O in Java
Handling I/O in Java
Hiranya Jayathilaka
 
Garbage collection
Garbage collectionGarbage collection
Garbage collection
Mudit Gupta
 
Git branching strategies
Git branching strategiesGit branching strategies
Git branching strategies
jstack
 
Protocol Buffer.ppt
Protocol Buffer.pptProtocol Buffer.ppt
Protocol Buffer.ppt
Shashi Bhushan
 
Introduction to Version Control
Introduction to Version ControlIntroduction to Version Control
Introduction to Version Control
Jeremy Coates
 
Android Development with Kotlin, Part 1 - Introduction
Android Development with Kotlin, Part 1 - IntroductionAndroid Development with Kotlin, Part 1 - Introduction
Android Development with Kotlin, Part 1 - Introduction
Andreas Jakl
 
Basics of JAVA programming
Basics of JAVA programmingBasics of JAVA programming
Basics of JAVA programming
Elizabeth Thomas
 
Git hub
Git hubGit hub
Git hub
Nitin Goel
 
GRPC.pptx
GRPC.pptxGRPC.pptx
GRPC.pptx
Afzal Juneja
 

What's hot (20)

Json vs Gson vs Jackson
Json vs Gson vs JacksonJson vs Gson vs Jackson
Json vs Gson vs Jackson
 
Diabetes.arff
Diabetes.arffDiabetes.arff
Diabetes.arff
 
CS8392 OOP
CS8392 OOPCS8392 OOP
CS8392 OOP
 
Exploring the power of Gradle in android studio - Basics & Beyond
Exploring the power of Gradle in android studio - Basics & BeyondExploring the power of Gradle in android studio - Basics & Beyond
Exploring the power of Gradle in android studio - Basics & Beyond
 
Version control system
Version control systemVersion control system
Version control system
 
Load Testing with k6 framework
Load Testing with k6 frameworkLoad Testing with k6 framework
Load Testing with k6 framework
 
Introduction to WAMP, a protocol enabling PUB/SUB and RPC over Websocket
Introduction to WAMP, a protocol enabling PUB/SUB and RPC over WebsocketIntroduction to WAMP, a protocol enabling PUB/SUB and RPC over Websocket
Introduction to WAMP, a protocol enabling PUB/SUB and RPC over Websocket
 
Java 9 Features
Java 9 FeaturesJava 9 Features
Java 9 Features
 
Interfaces and abstract classes
Interfaces and abstract classesInterfaces and abstract classes
Interfaces and abstract classes
 
Horovod - Distributed TensorFlow Made Easy
Horovod - Distributed TensorFlow Made EasyHorovod - Distributed TensorFlow Made Easy
Horovod - Distributed TensorFlow Made Easy
 
Chapter 02: Classes Objects and Methods Java by Tushar B Kute
Chapter 02: Classes Objects and Methods Java by Tushar B KuteChapter 02: Classes Objects and Methods Java by Tushar B Kute
Chapter 02: Classes Objects and Methods Java by Tushar B Kute
 
Handling I/O in Java
Handling I/O in JavaHandling I/O in Java
Handling I/O in Java
 
Garbage collection
Garbage collectionGarbage collection
Garbage collection
 
Git branching strategies
Git branching strategiesGit branching strategies
Git branching strategies
 
Protocol Buffer.ppt
Protocol Buffer.pptProtocol Buffer.ppt
Protocol Buffer.ppt
 
Introduction to Version Control
Introduction to Version ControlIntroduction to Version Control
Introduction to Version Control
 
Android Development with Kotlin, Part 1 - Introduction
Android Development with Kotlin, Part 1 - IntroductionAndroid Development with Kotlin, Part 1 - Introduction
Android Development with Kotlin, Part 1 - Introduction
 
Basics of JAVA programming
Basics of JAVA programmingBasics of JAVA programming
Basics of JAVA programming
 
Git hub
Git hubGit hub
Git hub
 
GRPC.pptx
GRPC.pptxGRPC.pptx
GRPC.pptx
 

Viewers also liked

簡單上手Android studio
簡單上手Android studio簡單上手Android studio
簡單上手Android studio
琨堯 林
 
Android gradle 从入门到gg 0
Android gradle 从入门到gg 0Android gradle 从入门到gg 0
Android gradle 从入门到gg 0
Jun Liu
 
Gradle Introduction
Gradle IntroductionGradle Introduction
Gradle Introduction
Dmitry Buzdin
 
Android - Background operation
Android - Background operationAndroid - Background operation
Android - Background operation
Matteo Bonifazi
 
Android Fundamentals - Day 2
Android Fundamentals - Day 2Android Fundamentals - Day 2
Android Fundamentals - Day 2
Mohammad Tarek
 
Android app fundamentals
Android app fundamentalsAndroid app fundamentals
Android app fundamentals
Amr Salman
 
Android Fundamentals
Android FundamentalsAndroid Fundamentals
Android Fundamentals
Mohammad Tarek
 
Introduction to android studio 2.0 and data binding library
Introduction to android studio 2.0 and data binding libraryIntroduction to android studio 2.0 and data binding library
Introduction to android studio 2.0 and data binding library
Kaushal Dhruw
 
Gradle for Android Developers
Gradle for Android DevelopersGradle for Android Developers
Gradle for Android Developers
Josiah Renaudin
 
What’s new for Android Developers in 2015 - Material Design, Android Studio, ...
What’s new for Android Developers in 2015 - Material Design, Android Studio, ...What’s new for Android Developers in 2015 - Material Design, Android Studio, ...
What’s new for Android Developers in 2015 - Material Design, Android Studio, ...
Deepu S Nath
 
Android gradle-build-system-overview
Android gradle-build-system-overviewAndroid gradle-build-system-overview
Android gradle-build-system-overview
Kevin He
 
Gradle & Android Studio - Introduction
Gradle & Android Studio - IntroductionGradle & Android Studio - Introduction
Gradle & Android Studio - Introduction
Kevin Pelgrims
 
Android Application Fundamentals
Android Application FundamentalsAndroid Application Fundamentals
Android Application Fundamentals
Vikalp Jain
 
作業系統
作業系統作業系統
作業系統
雅茵 許
 
New to android studio
New to android studioNew to android studio
New to android studio
Engine Bai
 
AndroidManifest
AndroidManifestAndroidManifest
AndroidManifest
Ahsanul Karim
 
A Deep Dive into Open Source Android Development
A Deep Dive into Open Source Android DevelopmentA Deep Dive into Open Source Android Development
A Deep Dive into Open Source Android Development
David Wu
 
Android things intro
Android things introAndroid things intro
Android things intro
Matteo Bonifazi
 
Intents in Android
Intents in AndroidIntents in Android
Intents in Android
ma-polimi
 

Viewers also liked (20)

簡單上手Android studio
簡單上手Android studio簡單上手Android studio
簡單上手Android studio
 
Android gradle 从入门到gg 0
Android gradle 从入门到gg 0Android gradle 从入门到gg 0
Android gradle 从入门到gg 0
 
Gradle Introduction
Gradle IntroductionGradle Introduction
Gradle Introduction
 
Android - Background operation
Android - Background operationAndroid - Background operation
Android - Background operation
 
Android Fundamentals - Day 2
Android Fundamentals - Day 2Android Fundamentals - Day 2
Android Fundamentals - Day 2
 
Android app fundamentals
Android app fundamentalsAndroid app fundamentals
Android app fundamentals
 
Android Fundamentals
Android FundamentalsAndroid Fundamentals
Android Fundamentals
 
Introduction to android studio 2.0 and data binding library
Introduction to android studio 2.0 and data binding libraryIntroduction to android studio 2.0 and data binding library
Introduction to android studio 2.0 and data binding library
 
Gradle for Android Developers
Gradle for Android DevelopersGradle for Android Developers
Gradle for Android Developers
 
What’s new for Android Developers in 2015 - Material Design, Android Studio, ...
What’s new for Android Developers in 2015 - Material Design, Android Studio, ...What’s new for Android Developers in 2015 - Material Design, Android Studio, ...
What’s new for Android Developers in 2015 - Material Design, Android Studio, ...
 
Android gradle-build-system-overview
Android gradle-build-system-overviewAndroid gradle-build-system-overview
Android gradle-build-system-overview
 
Gradle & Android Studio - Introduction
Gradle & Android Studio - IntroductionGradle & Android Studio - Introduction
Gradle & Android Studio - Introduction
 
Android Fundamentals
Android FundamentalsAndroid Fundamentals
Android Fundamentals
 
Android Application Fundamentals
Android Application FundamentalsAndroid Application Fundamentals
Android Application Fundamentals
 
作業系統
作業系統作業系統
作業系統
 
New to android studio
New to android studioNew to android studio
New to android studio
 
AndroidManifest
AndroidManifestAndroidManifest
AndroidManifest
 
A Deep Dive into Open Source Android Development
A Deep Dive into Open Source Android DevelopmentA Deep Dive into Open Source Android Development
A Deep Dive into Open Source Android Development
 
Android things intro
Android things introAndroid things intro
Android things intro
 
Intents in Android
Intents in AndroidIntents in Android
Intents in Android
 

Similar to Gradle,the new build system for android

Build your android app with gradle
Build your android app with gradleBuild your android app with gradle
Build your android app with gradle
Swain Loda
 
Gradle - Build System
Gradle - Build SystemGradle - Build System
Gradle - Build System
Jeevesh Pandey
 
Gradle enabled android project
Gradle enabled android projectGradle enabled android project
Gradle enabled android project
Shaka Huang
 
Android Studio 3 - Dependency-Aware Build Variants and Product Flavors
Android Studio 3 - Dependency-Aware Build Variants and Product FlavorsAndroid Studio 3 - Dependency-Aware Build Variants and Product Flavors
Android Studio 3 - Dependency-Aware Build Variants and Product Flavors
Stefan Martynkiw
 
ICONUK 2015 - Gradle Up!
ICONUK 2015 - Gradle Up!ICONUK 2015 - Gradle Up!
ICONUK 2015 - Gradle Up!
René Winkelmeyer
 
Introduction to gradle
Introduction to gradleIntroduction to gradle
Introduction to gradle
NexThoughts Technologies
 
Keeping your build tool updated in a multi repository world
Keeping your build tool updated in a multi repository worldKeeping your build tool updated in a multi repository world
Keeping your build tool updated in a multi repository world
Roberto Pérez Alcolea
 
Gradle build capabilities
Gradle build capabilities Gradle build capabilities
Gradle build capabilities
Zeinab Mohamed Abdelmawla
 
Gradle 2.Breaking stereotypes
Gradle 2.Breaking stereotypesGradle 2.Breaking stereotypes
Gradle 2.Breaking stereotypes
Strannik_2013
 
GraalVM and Oracle's Documentation Trends.pdf
GraalVM and Oracle's Documentation Trends.pdfGraalVM and Oracle's Documentation Trends.pdf
GraalVM and Oracle's Documentation Trends.pdf
ohupalo
 
Modern Web-site Development Pipeline
Modern Web-site Development PipelineModern Web-site Development Pipeline
Modern Web-site Development Pipeline
GlobalLogic Ukraine
 
Next Step, Android Studio!
Next Step, Android Studio!Next Step, Android Studio!
Next Step, Android Studio!
Édipo Souza
 
BMO - Intelligent Projects with Maven
BMO - Intelligent Projects with MavenBMO - Intelligent Projects with Maven
BMO - Intelligent Projects with Maven
Mert Çalışkan
 
Gocd – Kubernetes/Nomad Continuous Deployment
Gocd – Kubernetes/Nomad Continuous DeploymentGocd – Kubernetes/Nomad Continuous Deployment
Gocd – Kubernetes/Nomad Continuous Deployment
Leandro Totino Pereira
 
Intelligent Projects with Maven - DevFest Istanbul
Intelligent Projects with Maven - DevFest IstanbulIntelligent Projects with Maven - DevFest Istanbul
Intelligent Projects with Maven - DevFest Istanbul
Mert Çalışkan
 
Сергей Моренец: "Gradle. Write once, build everywhere"
Сергей Моренец: "Gradle. Write once, build everywhere"Сергей Моренец: "Gradle. Write once, build everywhere"
Сергей Моренец: "Gradle. Write once, build everywhere"
Provectus
 
Google Web Toolkit
Google Web ToolkitGoogle Web Toolkit
Google Web Toolkit
Michael Angelo Rivera
 
tools cli java
tools cli javatools cli java
tools cli java
TiNguyn863920
 
Faster java ee builds with gradle [con4921]
Faster java ee builds with gradle [con4921]Faster java ee builds with gradle [con4921]
Faster java ee builds with gradle [con4921]
Ryan Cuprak
 
Gradle: One technology to build them all
Gradle: One technology to build them allGradle: One technology to build them all
Gradle: One technology to build them all
Bonitasoft
 

Similar to Gradle,the new build system for android (20)

Build your android app with gradle
Build your android app with gradleBuild your android app with gradle
Build your android app with gradle
 
Gradle - Build System
Gradle - Build SystemGradle - Build System
Gradle - Build System
 
Gradle enabled android project
Gradle enabled android projectGradle enabled android project
Gradle enabled android project
 
Android Studio 3 - Dependency-Aware Build Variants and Product Flavors
Android Studio 3 - Dependency-Aware Build Variants and Product FlavorsAndroid Studio 3 - Dependency-Aware Build Variants and Product Flavors
Android Studio 3 - Dependency-Aware Build Variants and Product Flavors
 
ICONUK 2015 - Gradle Up!
ICONUK 2015 - Gradle Up!ICONUK 2015 - Gradle Up!
ICONUK 2015 - Gradle Up!
 
Introduction to gradle
Introduction to gradleIntroduction to gradle
Introduction to gradle
 
Keeping your build tool updated in a multi repository world
Keeping your build tool updated in a multi repository worldKeeping your build tool updated in a multi repository world
Keeping your build tool updated in a multi repository world
 
Gradle build capabilities
Gradle build capabilities Gradle build capabilities
Gradle build capabilities
 
Gradle 2.Breaking stereotypes
Gradle 2.Breaking stereotypesGradle 2.Breaking stereotypes
Gradle 2.Breaking stereotypes
 
GraalVM and Oracle's Documentation Trends.pdf
GraalVM and Oracle's Documentation Trends.pdfGraalVM and Oracle's Documentation Trends.pdf
GraalVM and Oracle's Documentation Trends.pdf
 
Modern Web-site Development Pipeline
Modern Web-site Development PipelineModern Web-site Development Pipeline
Modern Web-site Development Pipeline
 
Next Step, Android Studio!
Next Step, Android Studio!Next Step, Android Studio!
Next Step, Android Studio!
 
BMO - Intelligent Projects with Maven
BMO - Intelligent Projects with MavenBMO - Intelligent Projects with Maven
BMO - Intelligent Projects with Maven
 
Gocd – Kubernetes/Nomad Continuous Deployment
Gocd – Kubernetes/Nomad Continuous DeploymentGocd – Kubernetes/Nomad Continuous Deployment
Gocd – Kubernetes/Nomad Continuous Deployment
 
Intelligent Projects with Maven - DevFest Istanbul
Intelligent Projects with Maven - DevFest IstanbulIntelligent Projects with Maven - DevFest Istanbul
Intelligent Projects with Maven - DevFest Istanbul
 
Сергей Моренец: "Gradle. Write once, build everywhere"
Сергей Моренец: "Gradle. Write once, build everywhere"Сергей Моренец: "Gradle. Write once, build everywhere"
Сергей Моренец: "Gradle. Write once, build everywhere"
 
Google Web Toolkit
Google Web ToolkitGoogle Web Toolkit
Google Web Toolkit
 
tools cli java
tools cli javatools cli java
tools cli java
 
Faster java ee builds with gradle [con4921]
Faster java ee builds with gradle [con4921]Faster java ee builds with gradle [con4921]
Faster java ee builds with gradle [con4921]
 
Gradle: One technology to build them all
Gradle: One technology to build them allGradle: One technology to build them all
Gradle: One technology to build them all
 

Recently uploaded

UI5con 2024 - Keynote: Latest News about UI5 and it’s Ecosystem
UI5con 2024 - Keynote: Latest News about UI5 and it’s EcosystemUI5con 2024 - Keynote: Latest News about UI5 and it’s Ecosystem
UI5con 2024 - Keynote: Latest News about UI5 and it’s Ecosystem
Peter Muessig
 
Energy consumption of Database Management - Florina Jonuzi
Energy consumption of Database Management - Florina JonuziEnergy consumption of Database Management - Florina Jonuzi
Energy consumption of Database Management - Florina Jonuzi
Green Software Development
 
Using Xen Hypervisor for Functional Safety
Using Xen Hypervisor for Functional SafetyUsing Xen Hypervisor for Functional Safety
Using Xen Hypervisor for Functional Safety
Ayan Halder
 
8 Best Automated Android App Testing Tool and Framework in 2024.pdf
8 Best Automated Android App Testing Tool and Framework in 2024.pdf8 Best Automated Android App Testing Tool and Framework in 2024.pdf
8 Best Automated Android App Testing Tool and Framework in 2024.pdf
kalichargn70th171
 
Oracle Database 19c New Features for DBAs and Developers.pptx
Oracle Database 19c New Features for DBAs and Developers.pptxOracle Database 19c New Features for DBAs and Developers.pptx
Oracle Database 19c New Features for DBAs and Developers.pptx
Remote DBA Services
 
一比一原版(USF毕业证)旧金山大学毕业证如何办理
一比一原版(USF毕业证)旧金山大学毕业证如何办理一比一原版(USF毕业证)旧金山大学毕业证如何办理
一比一原版(USF毕业证)旧金山大学毕业证如何办理
dakas1
 
Top Benefits of Using Salesforce Healthcare CRM for Patient Management.pdf
Top Benefits of Using Salesforce Healthcare CRM for Patient Management.pdfTop Benefits of Using Salesforce Healthcare CRM for Patient Management.pdf
Top Benefits of Using Salesforce Healthcare CRM for Patient Management.pdf
VALiNTRY360
 
Artificia Intellicence and XPath Extension Functions
Artificia Intellicence and XPath Extension FunctionsArtificia Intellicence and XPath Extension Functions
Artificia Intellicence and XPath Extension Functions
Octavian Nadolu
 
Webinar On-Demand: Using Flutter for Embedded
Webinar On-Demand: Using Flutter for EmbeddedWebinar On-Demand: Using Flutter for Embedded
Webinar On-Demand: Using Flutter for Embedded
ICS
 
Unveiling the Advantages of Agile Software Development.pdf
Unveiling the Advantages of Agile Software Development.pdfUnveiling the Advantages of Agile Software Development.pdf
Unveiling the Advantages of Agile Software Development.pdf
brainerhub1
 
Fundamentals of Programming and Language Processors
Fundamentals of Programming and Language ProcessorsFundamentals of Programming and Language Processors
Fundamentals of Programming and Language Processors
Rakesh Kumar R
 
How Can Hiring A Mobile App Development Company Help Your Business Grow?
How Can Hiring A Mobile App Development Company Help Your Business Grow?How Can Hiring A Mobile App Development Company Help Your Business Grow?
How Can Hiring A Mobile App Development Company Help Your Business Grow?
ToXSL Technologies
 
WWDC 2024 Keynote Review: For CocoaCoders Austin
WWDC 2024 Keynote Review: For CocoaCoders AustinWWDC 2024 Keynote Review: For CocoaCoders Austin
WWDC 2024 Keynote Review: For CocoaCoders Austin
Patrick Weigel
 
Mobile app Development Services | Drona Infotech
Mobile app Development Services  | Drona InfotechMobile app Development Services  | Drona Infotech
Mobile app Development Services | Drona Infotech
Drona Infotech
 
Using Query Store in Azure PostgreSQL to Understand Query Performance
Using Query Store in Azure PostgreSQL to Understand Query PerformanceUsing Query Store in Azure PostgreSQL to Understand Query Performance
Using Query Store in Azure PostgreSQL to Understand Query Performance
Grant Fritchey
 
Transform Your Communication with Cloud-Based IVR Solutions
Transform Your Communication with Cloud-Based IVR SolutionsTransform Your Communication with Cloud-Based IVR Solutions
Transform Your Communication with Cloud-Based IVR Solutions
TheSMSPoint
 
Microservice Teams - How the cloud changes the way we work
Microservice Teams - How the cloud changes the way we workMicroservice Teams - How the cloud changes the way we work
Microservice Teams - How the cloud changes the way we work
Sven Peters
 
zOS Mainframe JES2-JES3 JCL-JECL Differences
zOS Mainframe JES2-JES3 JCL-JECL DifferenceszOS Mainframe JES2-JES3 JCL-JECL Differences
zOS Mainframe JES2-JES3 JCL-JECL Differences
YousufSait3
 
Everything You Need to Know About X-Sign: The eSign Functionality of XfilesPr...
Everything You Need to Know About X-Sign: The eSign Functionality of XfilesPr...Everything You Need to Know About X-Sign: The eSign Functionality of XfilesPr...
Everything You Need to Know About X-Sign: The eSign Functionality of XfilesPr...
XfilesPro
 
Odoo ERP Vs. Traditional ERP Systems – A Comparative Analysis
Odoo ERP Vs. Traditional ERP Systems – A Comparative AnalysisOdoo ERP Vs. Traditional ERP Systems – A Comparative Analysis
Odoo ERP Vs. Traditional ERP Systems – A Comparative Analysis
Envertis Software Solutions
 

Recently uploaded (20)

UI5con 2024 - Keynote: Latest News about UI5 and it’s Ecosystem
UI5con 2024 - Keynote: Latest News about UI5 and it’s EcosystemUI5con 2024 - Keynote: Latest News about UI5 and it’s Ecosystem
UI5con 2024 - Keynote: Latest News about UI5 and it’s Ecosystem
 
Energy consumption of Database Management - Florina Jonuzi
Energy consumption of Database Management - Florina JonuziEnergy consumption of Database Management - Florina Jonuzi
Energy consumption of Database Management - Florina Jonuzi
 
Using Xen Hypervisor for Functional Safety
Using Xen Hypervisor for Functional SafetyUsing Xen Hypervisor for Functional Safety
Using Xen Hypervisor for Functional Safety
 
8 Best Automated Android App Testing Tool and Framework in 2024.pdf
8 Best Automated Android App Testing Tool and Framework in 2024.pdf8 Best Automated Android App Testing Tool and Framework in 2024.pdf
8 Best Automated Android App Testing Tool and Framework in 2024.pdf
 
Oracle Database 19c New Features for DBAs and Developers.pptx
Oracle Database 19c New Features for DBAs and Developers.pptxOracle Database 19c New Features for DBAs and Developers.pptx
Oracle Database 19c New Features for DBAs and Developers.pptx
 
一比一原版(USF毕业证)旧金山大学毕业证如何办理
一比一原版(USF毕业证)旧金山大学毕业证如何办理一比一原版(USF毕业证)旧金山大学毕业证如何办理
一比一原版(USF毕业证)旧金山大学毕业证如何办理
 
Top Benefits of Using Salesforce Healthcare CRM for Patient Management.pdf
Top Benefits of Using Salesforce Healthcare CRM for Patient Management.pdfTop Benefits of Using Salesforce Healthcare CRM for Patient Management.pdf
Top Benefits of Using Salesforce Healthcare CRM for Patient Management.pdf
 
Artificia Intellicence and XPath Extension Functions
Artificia Intellicence and XPath Extension FunctionsArtificia Intellicence and XPath Extension Functions
Artificia Intellicence and XPath Extension Functions
 
Webinar On-Demand: Using Flutter for Embedded
Webinar On-Demand: Using Flutter for EmbeddedWebinar On-Demand: Using Flutter for Embedded
Webinar On-Demand: Using Flutter for Embedded
 
Unveiling the Advantages of Agile Software Development.pdf
Unveiling the Advantages of Agile Software Development.pdfUnveiling the Advantages of Agile Software Development.pdf
Unveiling the Advantages of Agile Software Development.pdf
 
Fundamentals of Programming and Language Processors
Fundamentals of Programming and Language ProcessorsFundamentals of Programming and Language Processors
Fundamentals of Programming and Language Processors
 
How Can Hiring A Mobile App Development Company Help Your Business Grow?
How Can Hiring A Mobile App Development Company Help Your Business Grow?How Can Hiring A Mobile App Development Company Help Your Business Grow?
How Can Hiring A Mobile App Development Company Help Your Business Grow?
 
WWDC 2024 Keynote Review: For CocoaCoders Austin
WWDC 2024 Keynote Review: For CocoaCoders AustinWWDC 2024 Keynote Review: For CocoaCoders Austin
WWDC 2024 Keynote Review: For CocoaCoders Austin
 
Mobile app Development Services | Drona Infotech
Mobile app Development Services  | Drona InfotechMobile app Development Services  | Drona Infotech
Mobile app Development Services | Drona Infotech
 
Using Query Store in Azure PostgreSQL to Understand Query Performance
Using Query Store in Azure PostgreSQL to Understand Query PerformanceUsing Query Store in Azure PostgreSQL to Understand Query Performance
Using Query Store in Azure PostgreSQL to Understand Query Performance
 
Transform Your Communication with Cloud-Based IVR Solutions
Transform Your Communication with Cloud-Based IVR SolutionsTransform Your Communication with Cloud-Based IVR Solutions
Transform Your Communication with Cloud-Based IVR Solutions
 
Microservice Teams - How the cloud changes the way we work
Microservice Teams - How the cloud changes the way we workMicroservice Teams - How the cloud changes the way we work
Microservice Teams - How the cloud changes the way we work
 
zOS Mainframe JES2-JES3 JCL-JECL Differences
zOS Mainframe JES2-JES3 JCL-JECL DifferenceszOS Mainframe JES2-JES3 JCL-JECL Differences
zOS Mainframe JES2-JES3 JCL-JECL Differences
 
Everything You Need to Know About X-Sign: The eSign Functionality of XfilesPr...
Everything You Need to Know About X-Sign: The eSign Functionality of XfilesPr...Everything You Need to Know About X-Sign: The eSign Functionality of XfilesPr...
Everything You Need to Know About X-Sign: The eSign Functionality of XfilesPr...
 
Odoo ERP Vs. Traditional ERP Systems – A Comparative Analysis
Odoo ERP Vs. Traditional ERP Systems – A Comparative AnalysisOdoo ERP Vs. Traditional ERP Systems – A Comparative Analysis
Odoo ERP Vs. Traditional ERP Systems – A Comparative Analysis
 

Gradle,the new build system for android

  • 1. The new build system for Android
  • 2. Overview • Gradle basics • Gradle Plugins • Gradle and Studio • Demos • Gradle 与TV版 • Resources
  • 3. What’s Gradle? 1. https://gradle.org 2. https://en.wikipedia.org/wiki/Gradle • Gradle is an open source build automation system. • Grade introduces DSL instead of the more traditional XML form of declaring the project configuration. • focused around Java, Groovy and Scala development and deployment, but more languages and project workflows are on the roadmap. • Gradle can automate the building, testing, publishing, deployment.
  • 4. Why Gradle? 1. Why Gradle? 2. Why choose Gradle? • create custom build logic through plugins. • dependency management • Plugins can expose their own DSL and their own API for build files to use. • Gradle combines the best features from other build tools.
  • 5. Installing Gradle 1. gradle installation • requires a Java JDK or JRE to be installed, version 6 or higher • Gradle ships with its own Groovy library, therefore Groovy does not need to be installed. • Any existing Groovy installation is ignored by Gradle. • Gradle uses whatever JDK it finds in your path • download (http://gradle.org/downloads) • unpacking • add GRADLE_HOME/bin to your PATH environment variable • Android Studio Project includes grade
  • 6. Groovy 1. http://learnxinyminutes.com/docs/groovy/ • http://groovy-lang.org/ • The language used by Gradle • Great similarity to Java • builds upon the strengths of Java but has additional power features inspired by languages like Python, Ruby and Smalltalk
  • 7. Build Script Basics 1. http://rominirani.com/2014/07/28/gradle-tutorial-part-1-installation-setup/ 2. https://gradle.org/docs/current/userguide/tutorial_using_tasks.html#N101A9 • Project What a project represents depends on what it is that you are doing with Gradle • Task A task represents some atomic piece of work which a build performs.This might be compiling some classes, creating a JAR, generating Javadoc, or publishing some archives to a repository. • Plugin A plugin is a mechanism by which we can extend the capabilities of Gradle .
  • 8. Demo 1. http://rominirani.com/2014/07/28/gradle-tutorial-part-1-installation-setup/ //defaultTasks 'buildTask' task compileTask << { System.out.println "compiling..." } task buildTask << { //task buildTask (dependsOn:compileTask) << { System.out.println "building..." } build.gradle
  • 9. 2.Gradle Plugin • Gradle plugin for Java • Gradle plugin for Android • for eclipse,idea,findbugs,c,cpp,oc,jetty…… 1. https://gradle.org/docs/current/userguide/plugins.html 2. https://gradle.org/docs/current/userguide/standard_plugins.html
  • 10. Gradle Plugin for Java • Source sets • Tasks • Project layout • Dependency management • ··· 1. http://gradle.org/docs/current/userguide/java_plugin.html
  • 11. Demo 1. http://rominirani.com/2014/07/28/gradle-tutorial-part-2-java-projects/ apply plugin: ‘java' // packaged with grade archivesBaseName = "quote" version = '1.0-FINAL' repositories { mavenCentral() } dependencies { compile group: 'org.apache.commons', name: 'commons-lang3', version: '3.3.2' testCompile group: 'junit', name: 'junit', version: '4.+' } build.gradle
  • 12. Gradle Plugin for Android 1. http://tools.android.com/tech-docs/new-build-system/user-guide 2. https://www.youtube.com/watch?v=LCJAgPkpmR0 3. http://tools.android.com/build • Published in May, 2013 • 1.0 Released in Dec, 2014 • git clone https://android.googlesource.com/platform/prebuilts/gr adle-plugin
  • 13. Goals of the new build system • Make it easy to reuse code and resources • Make it easy to create several variants of an application, either for multi-apk distribution or for different flavors of an application • Make it easy to configure, extend and customize the build process • Good IDE integration 1. http://tools.android.com/tech-docs/new-build-system/user-guide
  • 14. Android Plugin DSL Reference 1. Android Plugin DSL Reference defaultConfig{} signingConfigs{} productFlavors{} buildTypes{} BuildType ProductFlavor signingConfig LintOptions ……{} Blocks DSL types
  • 15. signing Configs • configuration of how an application is signed • what can be customised? • keyAlias • keyPassword • storeFile • storePassword • storeType • hide key password 1. http://stackoverflow.com/questions/18328730/how-to-create-a-release-signed-apk-file- using-gradle
  • 16. Product Flavors • A product flavor defines a customized version of the application build by the project. A single project can have different flavors which change the generated application • This new concept is designed to help when the differences are very, very minimum • Although different flavors could be very different applications, using Library Projects is a better use case for this, and the build system still supports this. 1. http://tools.android.com/tech-docs/new-build-system/build-system-concepts
  • 17. What can be customised by Product Flavor? • minSdkVersion • targetSdkVersion • versionCode • versionName • package name (overrides value from manifest) 1. http://tools.android.com/tech-docs/new-build-system/build-system-concepts • release signing info (keystore, key alias, passwords,…) • BuildConfig: Ability to provide custom Java code • NDK ABI filter (Not implemented yet) • Additionally, Product Flavor can provide their own source code, resources and manifest.
  • 18. Build Types • A build type allows configuration of how an application is packaged for debugging or release purpose. • This concept is not meant to be used to create different versions of the same application. This is orthogonal to Product Flavor. 1. http://tools.android.com/tech-docs/new-build-system/build-system-concepts
  • 19. What can be customised by Build Types? • manifest debuggable flag • native compilation debug flag • proguard enabled + specific rules • debug signing flag (ie whether to use debug key or release key) • package name suffix (2) • Buildconfig • DEBUG flag. Set automatically based on the manifest debuggable flag. • Ability to provide custom Java code. • Types "Release" and "Debug" are automatically created and can be reconfigured 1. http://tools.android.com/tech-docs/new-build-system/build-system-concepts
  • 20. Build Variants 1. http://tools.android.com/tech-docs/new-build-system/build-system-concepts • Build Type + Product Flavor = Build Variant type1 type2 flavor1 flavor1-type1 flavor1-type2 flavor2 flavor2-type1 flavor2-type2
  • 22. Dependencies • Simply include any artifacts provided by mavenCentral() … dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) compile 'com.android.support:appcompat-v7:21.0.2' compile 'com.jpardogo.flabbylistview:library:+' compile 'com.jpardogo.googleprogressbar:library:+' compile 'com.mcxiaoke.volley:library:1.0.+' compile 'com.umeng.analytics:analytics:5.2.4' } … build.gradle
  • 23. Dependencies • 指定你自己的仓库地址 … repositories { maven { url "http://repo.mycompany.com/repo" } } … build.gradle • 常见的maven仓库 • http://search.maven.org (mavenCentral()) • https://bintray.com/bintray/jcenter (jcenter()) • http://maven.oschina.net/home.html • ( maven{ url 'http://maven.oschina.net/content/groups/public/'} )
  • 24. Multi Project Build (Library Projects) 1. http://tools.android.com/tech-docs/new-build-system/build-system-concepts • use the settings.gradle files to declare library projects • add library projects as "compile" dependency • 自定义library project位置 … include ':letvCore' include ':loginLib' include ':letv' project(':letvCore').projectDir = new File(rootDir, "../librarys/letvCore") project(':loginLib').projectDir = new File(rootDir, "../librarys/loginLib") … settings.gradle
  • 25. Demo • 如何通过一套代码开发不同功能的apk • git clone https://github.com/ghuiii/gradledemo.git
  • 26. 代码合并规则 • 图片、音频、 XML 类型的 Drawable 等资源文件,将会进行文件级的覆盖 • 字符串、颜色值、整型等资源以及 AndroidManifest.xml ,将会进行元素级 的覆盖 • 代码资源,同一个类, buildTypes 、 productFlavors 、 main 中只能存在 一次,否则会有类重复的错误 • 覆盖等级为:buildTypes > productFlavors > main 1. http://ask.android-studio.org/?/article/30
  • 27. Gradle plugin for android 常见task 1. http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Build-Tasks
  • 28. Studio&Gradle 1. http://developer.android.com/tools/building/index.html • Good IDE integration • The IDE doesn’t do a build anymore • Building and Running from Android Studio • Building and Running from Command Line
  • 31. Resources • http://gradle.org/docs/current/userguide/userguide.html • http://rominirani.com/2014/07/28/gradle-tutorial-series-an- overview/ • http://avatarqing.github.io/Gradle-Plugin-User-Guide-Chinese- Verision/introduction/README.html • http://developer.android.com/sdk/installing/studio-build.html • http://apdr.qiniudn.com/index.html