codecamp

关于

Chinese translation of the Gradle 2 User Guide . The latest release of Gradle is 2.3, released on February 16, 2015.You can also see the demos of the guide here.This is a GitBook version of the book:http://waylau.gitbooks.io/gradle-2-user-guide/. Let's READ!

中文翻译《Gradle 2 用户指南》。Gradle 最新版本是 2.3 (发布于 2015-2-16)。文本用到的所有例子源码可以在https://github.com/waylau/Gradle-2-User-Guide-Demos 获取到。利用业余时间对此进行翻译,并在原文的基础上,插入配图,图文并茂方便用户理解。如有勘误欢迎指正,点此提问。如有兴趣,也可以参与到本翻译工作中来 :) 另外有 GitBook 的版本方便阅读http://waylau.gitbooks.io/gradle-2-user-guide/

Contact:

第1章 Introduction 介绍
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }