SlideShare uma empresa Scribd logo
1 de 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

Mais conteúdo relacionado

Mais procurados

Modern UI Development With Node.js
Modern UI Development With Node.jsModern UI Development With Node.js
Modern UI Development With Node.jsRyan Anklam
 
Gradle - the Enterprise Automation Tool
Gradle  - the Enterprise Automation ToolGradle  - the Enterprise Automation Tool
Gradle - the Enterprise Automation ToolIzzet Mustafaiev
 
Managing dependencies with gradle
Managing dependencies with gradleManaging dependencies with gradle
Managing dependencies with gradleLiviu Tudor
 
Introduction to Node.js
Introduction to Node.jsIntroduction to Node.js
Introduction to Node.jsVikash Singh
 
React js programming concept
React js programming conceptReact js programming concept
React js programming conceptTariqul islam
 
Git을 조금 더 알아보자!
Git을 조금 더 알아보자!Git을 조금 더 알아보자!
Git을 조금 더 알아보자!Young Kim
 
TypeScript for Java Developers
TypeScript for Java DevelopersTypeScript for Java Developers
TypeScript for Java DevelopersYakov Fain
 
Git 더하기 GitHub(구름IDE 환경)
Git 더하기 GitHub(구름IDE 환경)Git 더하기 GitHub(구름IDE 환경)
Git 더하기 GitHub(구름IDE 환경)Junyoung Lee
 
C#을 사용한 빠른 툴 개발
C#을 사용한 빠른 툴 개발C#을 사용한 빠른 툴 개발
C#을 사용한 빠른 툴 개발흥배 최
 
Introduction to ReactJS
Introduction to ReactJSIntroduction to ReactJS
Introduction to ReactJSKnoldus Inc.
 
Getting started with Next.js
Getting started with Next.jsGetting started with Next.js
Getting started with Next.jsGökhan Sarı
 
Introduction to react native
Introduction to react nativeIntroduction to react native
Introduction to react nativeDani Akash
 
Basic Concept of Node.js & NPM
Basic Concept of Node.js & NPMBasic Concept of Node.js & NPM
Basic Concept of Node.js & NPMBhargav Anadkat
 

Mais procurados (20)

Modern UI Development With Node.js
Modern UI Development With Node.jsModern UI Development With Node.js
Modern UI Development With Node.js
 
Gradle - the Enterprise Automation Tool
Gradle  - the Enterprise Automation ToolGradle  - the Enterprise Automation Tool
Gradle - the Enterprise Automation Tool
 
Managing dependencies with gradle
Managing dependencies with gradleManaging dependencies with gradle
Managing dependencies with gradle
 
MongoDB and Node.js
MongoDB and Node.jsMongoDB and Node.js
MongoDB and Node.js
 
Gradle
GradleGradle
Gradle
 
Java Generics - by Example
Java Generics - by ExampleJava Generics - by Example
Java Generics - by Example
 
Introduction to React JS
Introduction to React JSIntroduction to React JS
Introduction to React JS
 
React js
React jsReact js
React js
 
Introduction to Node.js
Introduction to Node.jsIntroduction to Node.js
Introduction to Node.js
 
React js programming concept
React js programming conceptReact js programming concept
React js programming concept
 
Git을 조금 더 알아보자!
Git을 조금 더 알아보자!Git을 조금 더 알아보자!
Git을 조금 더 알아보자!
 
TypeScript for Java Developers
TypeScript for Java DevelopersTypeScript for Java Developers
TypeScript for Java Developers
 
Git 더하기 GitHub(구름IDE 환경)
Git 더하기 GitHub(구름IDE 환경)Git 더하기 GitHub(구름IDE 환경)
Git 더하기 GitHub(구름IDE 환경)
 
Jdbc_ravi_2016
Jdbc_ravi_2016Jdbc_ravi_2016
Jdbc_ravi_2016
 
C#을 사용한 빠른 툴 개발
C#을 사용한 빠른 툴 개발C#을 사용한 빠른 툴 개발
C#을 사용한 빠른 툴 개발
 
Introduction to ReactJS
Introduction to ReactJSIntroduction to ReactJS
Introduction to ReactJS
 
Reactjs
ReactjsReactjs
Reactjs
 
Getting started with Next.js
Getting started with Next.jsGetting started with Next.js
Getting started with Next.js
 
Introduction to react native
Introduction to react nativeIntroduction to react native
Introduction to react native
 
Basic Concept of Node.js & NPM
Basic Concept of Node.js & NPMBasic Concept of Node.js & NPM
Basic Concept of Node.js & NPM
 

Destaque

簡單上手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
 
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
 
Intents in Android
Intents in AndroidIntents in Android
Intents in Androidma-polimi
 
Mastering Maven 2.0 In 1 Hour V1.3
Mastering Maven 2.0 In 1 Hour V1.3Mastering Maven 2.0 In 1 Hour V1.3
Mastering Maven 2.0 In 1 Hour V1.3Matthew McCullough
 

Destaque (20)

簡單上手Android studio
簡單上手Android studio簡單上手Android studio
簡單上手Android studio
 
Android gradle 从入门到gg 0
Android gradle 从入门到gg 0Android gradle 从入门到gg 0
Android gradle 从入门到gg 0
 
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
 
Mastering Maven 2.0 In 1 Hour V1.3
Mastering Maven 2.0 In 1 Hour V1.3Mastering Maven 2.0 In 1 Hour V1.3
Mastering Maven 2.0 In 1 Hour V1.3
 

Semelhante a 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
 

Semelhante a 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
 

Último

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
 
%in Rustenburg+277-882-255-28 abortion pills for sale in Rustenburg
%in Rustenburg+277-882-255-28 abortion pills for sale in Rustenburg%in Rustenburg+277-882-255-28 abortion pills for sale in Rustenburg
%in Rustenburg+277-882-255-28 abortion pills for sale in Rustenburgmasabamasaba
 
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfonteinmasabamasaba
 
AI & Machine Learning Presentation Template
AI & Machine Learning Presentation TemplateAI & Machine Learning Presentation Template
AI & Machine Learning Presentation TemplatePresentation.STUDIO
 
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...masabamasaba
 
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
 
8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech students8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech studentsHimanshiGarg82
 
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...masabamasaba
 
%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
 
WSO2CON2024 - It's time to go Platformless
WSO2CON2024 - It's time to go PlatformlessWSO2CON2024 - It's time to go Platformless
WSO2CON2024 - It's time to go PlatformlessWSO2
 
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024VictoriaMetrics
 
VTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learnVTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learnAmarnathKambale
 
WSO2CON 2024 - Does Open Source Still Matter?
WSO2CON 2024 - Does Open Source Still Matter?WSO2CON 2024 - Does Open Source Still Matter?
WSO2CON 2024 - Does Open Source Still Matter?WSO2
 
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
 
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
 
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...masabamasaba
 
%in Harare+277-882-255-28 abortion pills for sale in Harare
%in Harare+277-882-255-28 abortion pills for sale in Harare%in Harare+277-882-255-28 abortion pills for sale in Harare
%in Harare+277-882-255-28 abortion pills for sale in Hararemasabamasaba
 
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...panagenda
 
Artyushina_Guest lecture_YorkU CS May 2024.pptx
Artyushina_Guest lecture_YorkU CS May 2024.pptxArtyushina_Guest lecture_YorkU CS May 2024.pptx
Artyushina_Guest lecture_YorkU CS May 2024.pptxAnnaArtyushina1
 

Último (20)

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
 
%in Rustenburg+277-882-255-28 abortion pills for sale in Rustenburg
%in Rustenburg+277-882-255-28 abortion pills for sale in Rustenburg%in Rustenburg+277-882-255-28 abortion pills for sale in Rustenburg
%in Rustenburg+277-882-255-28 abortion pills for sale in Rustenburg
 
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
%in kaalfontein+277-882-255-28 abortion pills for sale in kaalfontein
 
AI & Machine Learning Presentation Template
AI & Machine Learning Presentation TemplateAI & Machine Learning Presentation Template
AI & Machine Learning Presentation Template
 
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...
%+27788225528 love spells in Toronto Psychic Readings, Attraction spells,Brin...
 
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...
 
8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech students8257 interfacing 2 in microprocessor for btech students
8257 interfacing 2 in microprocessor for btech students
 
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
%+27788225528 love spells in Knoxville Psychic Readings, Attraction spells,Br...
 
%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
 
WSO2CON2024 - It's time to go Platformless
WSO2CON2024 - It's time to go PlatformlessWSO2CON2024 - It's time to go Platformless
WSO2CON2024 - It's time to go Platformless
 
Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
Abortion Pill Prices Tembisa [(+27832195400*)] 🏥 Women's Abortion Clinic in T...
 
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
Large-scale Logging Made Easy: Meetup at Deutsche Bank 2024
 
VTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learnVTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learn
 
WSO2CON 2024 - Does Open Source Still Matter?
WSO2CON 2024 - Does Open Source Still Matter?WSO2CON 2024 - Does Open Source Still Matter?
WSO2CON 2024 - Does Open Source Still Matter?
 
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...
 
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
 
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
%+27788225528 love spells in Colorado Springs Psychic Readings, Attraction sp...
 
%in Harare+277-882-255-28 abortion pills for sale in Harare
%in Harare+277-882-255-28 abortion pills for sale in Harare%in Harare+277-882-255-28 abortion pills for sale in Harare
%in Harare+277-882-255-28 abortion pills for sale in Harare
 
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
 
Artyushina_Guest lecture_YorkU CS May 2024.pptx
Artyushina_Guest lecture_YorkU CS May 2024.pptxArtyushina_Guest lecture_YorkU CS May 2024.pptx
Artyushina_Guest lecture_YorkU CS May 2024.pptx
 

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