详细android gradle 只编译realse版本

大部分来自于

http://developer.android.com/sdk/installing/studio-build.html

gradle build 会生成默认的debug版本 和 release 版本

gradle assemblerelease  不生成debug版本,只生成release版本

gradle assembledebug  不生成release版本,只生成debug版本

可以在下面的命令显示出得结果中看到版本的意思。

查看所有的task ,命令 :

gradle tasks

osdeMacBook-Pro:app os$ gradle tasks

:app:tasks

------------------------------------------------------------

All tasks runnable from project :app

------------------------------------------------------------

Android tasks

-------------

androidDependencies - Displays the Android dependencies of the project

signingReport - Displays the signing info for each variant

Build tasks

-----------

assemble - Assembles all variants of all applications and secondary packages.

assembleDebug - Assembles all Debug builds

assembleHiapk - Assembles all Hiapk builds

assembleHiapkDebug - Assembles the Debug build for flavor Hiapk

assembleHiapkDebugTest - Assembles the Test build for the HiapkDebug build

assembleHiapkRelease - Assembles the Release build for flavor Hiapk

assemblePlaystore - Assembles all Playstore builds

assemblePlaystoreDebug - Assembles the Debug build for flavor Playstore

assemblePlaystoreDebugTest - Assembles the Test build for the PlaystoreDebug build

assemblePlaystoreRelease - Assembles the Release build for flavor Playstore

assembleRelease - Assembles all Release builds

assembleTest - Assembles all the Test applications

build - Assembles and tests this project.

buildDependents - Assembles and tests this project and all projects that depend on it.

buildNeeded - Assembles and tests this project and all projects it depends on.

clean - Deletes the build directory.

Help tasks

----------

components - Displays the components produced by project ‘:app‘.

dependencies - Displays all dependencies declared in project ‘:app‘.

dependencyInsight - Displays the insight into a specific dependency in project ‘:app‘.

help - Displays a help message

projects - Displays the sub-projects of project ‘:app‘.

properties - Displays the properties of project ‘:app‘.

tasks - Displays the tasks runnable from project ‘:app‘.

Install tasks

-------------

installHiapkDebug - Installs the Debug build for flavor Hiapk

installHiapkDebugTest - Installs the Test build for the HiapkDebug build

installHiapkRelease - Installs the Release build for flavor Hiapk

installPlaystoreDebug - Installs the Debug build for flavor Playstore

installPlaystoreDebugTest - Installs the Test build for the PlaystoreDebug build

installPlaystoreRelease - Installs the Release build for flavor Playstore

uninstallAll - Uninstall all applications.

uninstallHiapkDebug - Uninstalls the Debug build for flavor Hiapk

uninstallHiapkDebugTest - Uninstalls the Test build for the HiapkDebug build

uninstallHiapkRelease - Uninstalls the Release build for flavor Hiapk

uninstallPlaystoreDebug - Uninstalls the Debug build for flavor Playstore

uninstallPlaystoreDebugTest - Uninstalls the Test build for the PlaystoreDebug build

uninstallPlaystoreRelease - Uninstalls the Release build for flavor Playstore

Verification tasks

------------------

check - Runs all checks.

connectedAndroidTest - Installs and runs instrumentation tests for all flavors on connected devices.

connectedAndroidTestHiapkDebug - Installs and runs the tests for Build ‘hiapkDebug‘ on connected devices.

connectedAndroidTestPlaystoreDebug - Installs and runs the tests for Build ‘playstoreDebug‘ on connected devices.

connectedCheck - Runs all device checks on currently connected devices.

deviceAndroidTest - Installs and runs instrumentation tests using all Device Providers.

deviceCheck - Runs all device checks using Device Providers and Test Servers.

lint - Runs lint on all variants.

lintHiapkDebug - Runs lint on the HiapkDebug build

lintHiapkRelease - Runs lint on the HiapkRelease build

lintPlaystoreDebug - Runs lint on the PlaystoreDebug build

lintPlaystoreRelease - Runs lint on the PlaystoreRelease build

Other tasks

-----------

compileHiapkDebugSources

compileHiapkDebugTestSources

compileHiapkReleaseSources

compilePlaystoreDebugSources

compilePlaystoreDebugTestSources

compilePlaystoreReleaseSources

Rules

-----

Pattern: clean<TaskName>: Cleans the output files of a task.

Pattern: build<ConfigurationName>: Assembles the artifacts of a configuration.

Pattern: upload<ConfigurationName>: Assembles and uploads the artifacts belonging to a configuration.

To see all tasks and more detail, run with --all.

BUILD SUCCESSFUL

Total time: 8.967 secs

然后,在build tasks 中选取需要单独bulid的命令

有中文翻译版本在这,gradle编译

时间: 2024-10-08 10:29:25

详细android gradle 只编译realse版本的相关文章

React Native Android Gradle 编译流程浅析

[工匠若水 http://blog.csdn.net/yanbober 未经允许严禁转载,请尊重作者劳动成果.私信联系我] 1 背景 前面已经发车了一篇<React Native Android 从学车到补胎和成功发车经历>,接着就该好好琢磨一下 React Native 周边了,没看第一篇的可以先去看看:这里我们先从 React Native 的 Android 编译来简单揭晓一下 React Native 在集成的过程中到底干了哪些不可告人的坏事:由于我们项目准备以 Gradle 形式接入

Android Gradle 配置 [转]

转载自:http://pybeta.com/2016/06/about-gradle/ Android Gradle配置 编译加速 在gradle.properties中配置 1 org.gradle.configureondemand=true #demand 2 org.gradle.daemon=true #单独的守护进程 3 org.gradle.parallel=true #串行编译 4 org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m

Gradle Android最新自动化编译脚本教程

转自:http://blog.csdn.net/changemyself/article/details/39927381 一.前言 Gradle 是以 Groovy 语言为基础,面向Java应用为主.基于DSL(领域特定语言)语法的自动化构建工具. 上面这句话我觉得写得很官方,大家只需知道Gradle可以用来android开发中进行多个项目依赖的自动化编译脚本,知道这点也就知道我们使用它的目的: 为什么不使用Ant做自动化编译脚本,因为ant上手快,但是维护起来太不方便了,有了Gradle你可

Android应用开发编译框架流程与IDE及Gradle概要

1 背景 建议阅读本文之前先阅读<Android Studio入门到精通>和<Groovy脚本基础全攻略>及<Gradle脚本基础全攻略>三篇博客作为背景知识,这样才能更好.更系统的串起来.本文的核心就是下图: 关于Gradle的Android插件本文不会过多的说明,只给一个抛砖引玉的提示,详细使用参见文档API及Gradle配置,其实个性化的构建配置一般都是Gradle与Groovy的编写,与Android插件没太多关系,所以重点还在Groovy与Gradle构建.

Gradle Android最新自动化编译脚本教程(提供demo源码)

一.前言 Gradle 是以 Groovy 语言为基础,面向Java应用为主.基于DSL(领域特定语言)语法的自动化构建工具. 上面这句话我觉得写得很官方,大家只需知道Gradle可以用来android开发中进行多个项目依赖的自动化编译脚本,知道这点也就知道我们使用它的目的: 为什么不使用Ant做自动化编译脚本,因为ant上手快,但是维护起来太不方便了,有了Gradle你可以跟项目组的同事说,用Ant的孩子们别苦逼的维护了,赶紧换成gradle吧. 本文面向gradle新手或者以前使用过grad

转 - Android Studio 低版本Gradle升级到高版本时常见问题

来自: http://blog.csdn.net/feiniao8651/article/details/44652753 今天拿到一个用低版本Gradle的编译的Android工程,gradle对版本的向下兼容做的不太好,因此在高版本Gradle的电脑上会出很多问题. 1. Error:The project is using an unsupported version of the Android Gradle plug-in (0.12.2). The recommended versi

Android Gradle编译学习日记之一(搭建 Gradle 环境以及编译 Android 应用)

大家如果喜欢我的博客,请关注一下我的微博,请点击这里(http://weibo.com/kifile),谢谢 转载请标明出处(http://blog.csdn.net/kifile),再次感谢 Google 在最近正式推出了 Android Studio 1.0版本,开发者首页的默认开发工具也已经更改成了 Android Studio,我想我们是时候全面转型到 Android Studio 开发了. 其实抛开界面因素,Android Studio 与 Eclipse ADT 构建 Android

Android Gradle Plugin指南(五)——Build Variants(构建变种版本)

原文地址:http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Build-Variants 6. Build Variants(构建变种版本) 新构建系统的一个目标就是允许为同一个应用创建不同的版本. 这里有两个主要的使用情景: 1.同一个应用的不同版本.例如一个免费的版本和一个收费的专业版本. 2.同一个应用需要打包成不同的apk以发布Google Play Store.查看http://developer.an

Android Gradle编译学习日记之二(使用 Gradle 编译 Eclipse,引入依赖资源以及迁移 Android Studio)

大家如果喜欢我的博客,请关注一下我的微博,请点击这里(http://weibo.com/kifile),谢谢 转载请标明出处(http://blog.csdn.net/kifile),再次感谢 Android Gradle编译学习日记(基于 Android Studio 1.0): Android Gradle编译学习日记之一(搭建 Gradle 环境以及编译 Android 应用) 在上一篇文章中,我简单介绍了一个 Gradle 环境变量的搭建,以及如何使用 Gradle 编译 Android