SlideShare ist ein Scribd-Unternehmen logo
1 von 32
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

Weitere ähnliche Inhalte

Was ist angesagt?

Java collections concept
Java collections conceptJava collections concept
Java collections conceptkumar gaurav
 
JAVASCRIPT PPT [Autosaved].pptx
JAVASCRIPT PPT [Autosaved].pptxJAVASCRIPT PPT [Autosaved].pptx
JAVASCRIPT PPT [Autosaved].pptxAchieversITAravind
 
Android+init+process
Android+init+processAndroid+init+process
Android+init+processHong Jae Kwon
 
Fast-paced Introduction to Android Internals
Fast-paced Introduction to Android InternalsFast-paced Introduction to Android Internals
Fast-paced Introduction to Android InternalsHamilton Turner
 
Android for Embedded Linux Developers
Android for Embedded Linux DevelopersAndroid for Embedded Linux Developers
Android for Embedded Linux DevelopersOpersys inc.
 
Android activity
Android activityAndroid activity
Android activityKrazy Koder
 
Kotlin Coroutines. Flow is coming
Kotlin Coroutines. Flow is comingKotlin Coroutines. Flow is coming
Kotlin Coroutines. Flow is comingKirill Rozov
 
Lecture 5 sorting and searching
Lecture 5   sorting and searchingLecture 5   sorting and searching
Lecture 5 sorting and searchingNada G.Youssef
 
Understanding the Dalvik bytecode with the Dedexer tool
Understanding the Dalvik bytecode with the Dedexer toolUnderstanding the Dalvik bytecode with the Dedexer tool
Understanding the Dalvik bytecode with the Dedexer toolGabor Paller
 
javascript-cheat-sheet-v1_1
javascript-cheat-sheet-v1_1javascript-cheat-sheet-v1_1
javascript-cheat-sheet-v1_1brecke
 
Android SDK Tutorial | Edureka
Android SDK Tutorial | EdurekaAndroid SDK Tutorial | Edureka
Android SDK Tutorial | EdurekaEdureka!
 
Understanding the Android System Server
Understanding the Android System ServerUnderstanding the Android System Server
Understanding the Android System ServerOpersys inc.
 

Was ist angesagt? (20)

Java collections concept
Java collections conceptJava collections concept
Java collections concept
 
JAVASCRIPT PPT [Autosaved].pptx
JAVASCRIPT PPT [Autosaved].pptxJAVASCRIPT PPT [Autosaved].pptx
JAVASCRIPT PPT [Autosaved].pptx
 
Android+init+process
Android+init+processAndroid+init+process
Android+init+process
 
Kotlin on android
Kotlin on androidKotlin on android
Kotlin on android
 
Fast-paced Introduction to Android Internals
Fast-paced Introduction to Android InternalsFast-paced Introduction to Android Internals
Fast-paced Introduction to Android Internals
 
Building with Gradle
Building with GradleBuilding with Gradle
Building with Gradle
 
Android Fragment
Android FragmentAndroid Fragment
Android Fragment
 
Android for Embedded Linux Developers
Android for Embedded Linux DevelopersAndroid for Embedded Linux Developers
Android for Embedded Linux Developers
 
Maven
MavenMaven
Maven
 
Android activity
Android activityAndroid activity
Android activity
 
Kotlin Coroutines. Flow is coming
Kotlin Coroutines. Flow is comingKotlin Coroutines. Flow is coming
Kotlin Coroutines. Flow is coming
 
Lecture 5 sorting and searching
Lecture 5   sorting and searchingLecture 5   sorting and searching
Lecture 5 sorting and searching
 
Understanding the Dalvik bytecode with the Dedexer tool
Understanding the Dalvik bytecode with the Dedexer toolUnderstanding the Dalvik bytecode with the Dedexer tool
Understanding the Dalvik bytecode with the Dedexer tool
 
Java 8 lambda
Java 8 lambdaJava 8 lambda
Java 8 lambda
 
javascript-cheat-sheet-v1_1
javascript-cheat-sheet-v1_1javascript-cheat-sheet-v1_1
javascript-cheat-sheet-v1_1
 
Embedded Android : System Development - Part III (Audio / Video HAL)
Embedded Android : System Development - Part III (Audio / Video HAL)Embedded Android : System Development - Part III (Audio / Video HAL)
Embedded Android : System Development - Part III (Audio / Video HAL)
 
Android SDK Tutorial | Edureka
Android SDK Tutorial | EdurekaAndroid SDK Tutorial | Edureka
Android SDK Tutorial | Edureka
 
Flutter beyond hello world
Flutter beyond hello worldFlutter beyond hello world
Flutter beyond hello world
 
Understanding the Android System Server
Understanding the Android System ServerUnderstanding the Android System Server
Understanding the Android System Server
 
Linux kernel
Linux kernelLinux kernel
Linux kernel
 

Andere mochten auch

簡單上手Android studio
簡單上手Android studio簡單上手Android studio
簡單上手Android studio琨堯 林
 
Android gradle 从入门到gg 0
Android gradle 从入门到gg 0Android gradle 从入门到gg 0
Android gradle 从入门到gg 0Jun Liu
 
Android - Background operation
Android - Background operationAndroid - Background operation
Android - Background operationMatteo Bonifazi
 
Android Fundamentals - Day 2
Android Fundamentals - Day 2Android Fundamentals - Day 2
Android Fundamentals - Day 2Mohammad Tarek
 
Android app fundamentals
Android app fundamentalsAndroid app fundamentals
Android app fundamentalsAmr Salman
 
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 libraryKaushal Dhruw
 
Gradle for Android Developers
Gradle for Android DevelopersGradle for Android Developers
Gradle for Android DevelopersJosiah 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-overviewKevin He
 
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 & BeyondKaushal Dhruw
 
Gradle & Android Studio - Introduction
Gradle & Android Studio - IntroductionGradle & Android Studio - Introduction
Gradle & Android Studio - IntroductionKevin Pelgrims
 
Android Application Fundamentals
Android Application FundamentalsAndroid Application Fundamentals
Android Application FundamentalsVikalp Jain
 
New to android studio
New to android studioNew to android studio
New to android studioEngine Bai
 
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 DevelopmentDavid Wu
 

Andere mochten auch (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
 
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
 
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
 

Ähnlich wie 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 gradleSwain Loda
 
Gradle enabled android project
Gradle enabled android projectGradle enabled android project
Gradle enabled android projectShaka 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 FlavorsStefan Martynkiw
 
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 worldRoberto Pérez Alcolea
 
Gradle 2.Breaking stereotypes
Gradle 2.Breaking stereotypesGradle 2.Breaking stereotypes
Gradle 2.Breaking stereotypesStrannik_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.pdfohupalo
 
Modern Web-site Development Pipeline
Modern Web-site Development PipelineModern Web-site Development Pipeline
Modern Web-site Development PipelineGlobalLogic 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 MavenMert Çalışkan
 
Gocd – Kubernetes/Nomad Continuous Deployment
Gocd – Kubernetes/Nomad Continuous DeploymentGocd – Kubernetes/Nomad Continuous Deployment
Gocd – Kubernetes/Nomad Continuous DeploymentLeandro Totino Pereira
 
Intelligent Projects with Maven - DevFest Istanbul
Intelligent Projects with Maven - DevFest IstanbulIntelligent Projects with Maven - DevFest Istanbul
Intelligent Projects with Maven - DevFest IstanbulMert Çalışkan
 
Сергей Моренец: "Gradle. Write once, build everywhere"
Сергей Моренец: "Gradle. Write once, build everywhere"Сергей Моренец: "Gradle. Write once, build everywhere"
Сергей Моренец: "Gradle. Write once, build everywhere"Provectus
 
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 allBonitasoft
 
From GitHub Source to GitHub Release: Free CICD Pipelines For JavaFX Apps
From GitHub Source to GitHub Release: Free CICD Pipelines For JavaFX AppsFrom GitHub Source to GitHub Release: Free CICD Pipelines For JavaFX Apps
From GitHub Source to GitHub Release: Free CICD Pipelines For JavaFX AppsBruno Borges
 

Ähnlich wie 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!
 
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
 
From GitHub Source to GitHub Release: Free CICD Pipelines For JavaFX Apps
From GitHub Source to GitHub Release: Free CICD Pipelines For JavaFX AppsFrom GitHub Source to GitHub Release: Free CICD Pipelines For JavaFX Apps
From GitHub Source to GitHub Release: Free CICD Pipelines For JavaFX Apps
 

Kürzlich hochgeladen

OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...Shane Coughlan
 
10 Trends Likely to Shape Enterprise Technology in 2024
10 Trends Likely to Shape Enterprise Technology in 202410 Trends Likely to Shape Enterprise Technology in 2024
10 Trends Likely to Shape Enterprise Technology in 2024Mind IT Systems
 
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...SelfMade bd
 
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...Steffen Staab
 
A Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docxA Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docxComplianceQuest1
 
Payment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdf
Payment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdfPayment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdf
Payment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdfkalichargn70th171
 
Chinsurah Escorts ☎️8617697112 Starting From 5K to 15K High Profile Escorts ...
Chinsurah Escorts ☎️8617697112  Starting From 5K to 15K High Profile Escorts ...Chinsurah Escorts ☎️8617697112  Starting From 5K to 15K High Profile Escorts ...
Chinsurah Escorts ☎️8617697112 Starting From 5K to 15K High Profile Escorts ...Nitya salvi
 
Sector 18, Noida Call girls :8448380779 Model Escorts | 100% verified
Sector 18, Noida Call girls :8448380779 Model Escorts | 100% verifiedSector 18, Noida Call girls :8448380779 Model Escorts | 100% verified
Sector 18, Noida Call girls :8448380779 Model Escorts | 100% verifiedDelhi Call girls
 
The title is not connected to what is inside
The title is not connected to what is insideThe title is not connected to what is inside
The title is not connected to what is insideshinachiaurasa2
 
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrainmasabamasaba
 
The Top App Development Trends Shaping the Industry in 2024-25 .pdf
The Top App Development Trends Shaping the Industry in 2024-25 .pdfThe Top App Development Trends Shaping the Industry in 2024-25 .pdf
The Top App Development Trends Shaping the Industry in 2024-25 .pdfayushiqss
 
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️Delhi Call girls
 
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
Direct Style Effect Systems -The Print[A] Example- A Comprehension AidDirect Style Effect Systems -The Print[A] Example- A Comprehension Aid
Direct Style Effect Systems - The Print[A] Example - A Comprehension AidPhilip Schwarz
 
Exploring the Best Video Editing App.pdf
Exploring the Best Video Editing App.pdfExploring the Best Video Editing App.pdf
Exploring the Best Video Editing App.pdfproinshot.com
 
Pharm-D Biostatistics and Research methodology
Pharm-D Biostatistics and Research methodologyPharm-D Biostatistics and Research methodology
Pharm-D Biostatistics and Research methodologyAnusha Are
 
AI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
AI Mastery 201: Elevating Your Workflow with Advanced LLM TechniquesAI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
AI Mastery 201: Elevating Your Workflow with Advanced LLM TechniquesVictorSzoltysek
 
Unlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language ModelsUnlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language Modelsaagamshah0812
 
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisamasabamasaba
 
BUS PASS MANGEMENT SYSTEM USING PHP.pptx
BUS PASS MANGEMENT SYSTEM USING PHP.pptxBUS PASS MANGEMENT SYSTEM USING PHP.pptx
BUS PASS MANGEMENT SYSTEM USING PHP.pptxalwaysnagaraju26
 
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️Delhi Call girls
 

Kürzlich hochgeladen (20)

OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
OpenChain - The Ramifications of ISO/IEC 5230 and ISO/IEC 18974 for Legal Pro...
 
10 Trends Likely to Shape Enterprise Technology in 2024
10 Trends Likely to Shape Enterprise Technology in 202410 Trends Likely to Shape Enterprise Technology in 2024
10 Trends Likely to Shape Enterprise Technology in 2024
 
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
 
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
Shapes for Sharing between Graph Data Spaces - and Epistemic Querying of RDF-...
 
A Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docxA Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docx
 
Payment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdf
Payment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdfPayment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdf
Payment Gateway Testing Simplified_ A Step-by-Step Guide for Beginners.pdf
 
Chinsurah Escorts ☎️8617697112 Starting From 5K to 15K High Profile Escorts ...
Chinsurah Escorts ☎️8617697112  Starting From 5K to 15K High Profile Escorts ...Chinsurah Escorts ☎️8617697112  Starting From 5K to 15K High Profile Escorts ...
Chinsurah Escorts ☎️8617697112 Starting From 5K to 15K High Profile Escorts ...
 
Sector 18, Noida Call girls :8448380779 Model Escorts | 100% verified
Sector 18, Noida Call girls :8448380779 Model Escorts | 100% verifiedSector 18, Noida Call girls :8448380779 Model Escorts | 100% verified
Sector 18, Noida Call girls :8448380779 Model Escorts | 100% verified
 
The title is not connected to what is inside
The title is not connected to what is insideThe title is not connected to what is inside
The title is not connected to what is inside
 
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
 
The Top App Development Trends Shaping the Industry in 2024-25 .pdf
The Top App Development Trends Shaping the Industry in 2024-25 .pdfThe Top App Development Trends Shaping the Industry in 2024-25 .pdf
The Top App Development Trends Shaping the Industry in 2024-25 .pdf
 
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
 
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
Direct Style Effect Systems -The Print[A] Example- A Comprehension AidDirect Style Effect Systems -The Print[A] Example- A Comprehension Aid
Direct Style Effect Systems - The Print[A] Example - A Comprehension Aid
 
Exploring the Best Video Editing App.pdf
Exploring the Best Video Editing App.pdfExploring the Best Video Editing App.pdf
Exploring the Best Video Editing App.pdf
 
Pharm-D Biostatistics and Research methodology
Pharm-D Biostatistics and Research methodologyPharm-D Biostatistics and Research methodology
Pharm-D Biostatistics and Research methodology
 
AI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
AI Mastery 201: Elevating Your Workflow with Advanced LLM TechniquesAI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
AI Mastery 201: Elevating Your Workflow with Advanced LLM Techniques
 
Unlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language ModelsUnlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language Models
 
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
 
BUS PASS MANGEMENT SYSTEM USING PHP.pptx
BUS PASS MANGEMENT SYSTEM USING PHP.pptxBUS PASS MANGEMENT SYSTEM USING PHP.pptx
BUS PASS MANGEMENT SYSTEM USING PHP.pptx
 
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
 

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