-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·241 lines (192 loc) · 7.39 KB
/
index.html
File metadata and controls
executable file
·241 lines (192 loc) · 7.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Let Gradle build your android app</title>
<meta name="description" content="A framework for easily creating beautiful presentations using HTML">
<meta name="author" content="Hakim El Hattab">
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<link rel="stylesheet" href="css/reveal.min.css">
<link rel="stylesheet" href="css/theme/iterate.css" id="theme">
<!-- For syntax highlighting -->
<link rel="stylesheet" href="lib/css/github.css">
<!-- If the query includes 'print-pdf', use the PDF print sheet -->
<script>
document.write( '<link rel="stylesheet" href="css/print/' + ( window.location.search.match( /print-pdf/gi ) ? 'pdf' : 'paper' ) + '.css" type="text/css" media="print">' );
</script>
<!--[if lt IE 9]>
<script src="lib/js/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<div class="reveal">
<!-- Any section element inside of this container is displayed as a slide -->
<div class="slides">
<section data-state="inverted">
<h2>Let Gradle</h2>
<h3>Build your Android app</h3>
<small>Morten Weel Johnsen @mwjohnse</small>
</br>
<a href="http://xkcd.com/" class="image navigate-down">
<img width="300" height="300" src="http://imgs.xkcd.com/comics/compiling.png">
</a>
<br><small>- xkcd</small>
</section>
<section id="themes">
<h2>Themes</h2>
<p>
Choose theme to view in: <br>
<a href="?theme=sky#/themes">Sky</a> -
<a href="?theme=beige#/themes">Beige</a> -
<a href="?theme=simple#/themes">Simple</a> -
<a href="?theme=serif#/themes">Serif</a> -
<a href="?theme=night#/themes">Night</a> -
<a href="?#/themes">Default</a>
</p>
</section>
<section>
<h2>Motivation</h2>
Avoid these..
<pre><code>
make: *** [android] Error 2
</code></pre>
</section>
<section>
<h2>Why something else? (1)</h2>
<ul>
<li>Current way is complex & error prone</li>
<li>Avoid make all, mm dependencies</li>
<li>Should be easier to run tests</li>
<li>Time to first commit should go faster</li>
<li>Faster </li>
</ul>
</section>
<section>
<h2>Why? (2)</h2>
<ul>
<li>Integration with IntelliJ/Android Studio</li>
<li>Linting</li>
<li>Tests</li>
<li>Easy to use</li>
<li>More control</li>
<li>No need to build dependencies (make, mm)</li>
<li>Automation</li>
<li>Flavours and build variants</li>
</ul>
</section>
<section>
<h2>Gradle structure</h2>
<pre><code data-trim contenteditable style="font-size: 18px; margin-top: 20px;">
conversation application/
└── build.gradle # Contains build script
└── gradlew # Downloads gradle
└── local.properties # sdk.dir= (Path to sdk)
└── wrapper
├── gradle-wrapper.jar
└── gradle-wrapper.properties
</code></pre>
</section>
<section>
<h2>Simple buildscript</h2>
<pre><code data-trim contenteditable style="font-size: 18px; margin-top: 20px;">
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.8.+'
}
}
apply plugin: 'android'
dependencies {
compile fileTree(dir: 'libs', include: '*.jar')
}
android {
compileSdkVersion 19
buildToolsVersion "19.0.0"
}
</code></pre>
</section>
<section>
<h2>Specify sourcesets</h2>
<pre><code data-trim contenteditable style="font-size: 18px; margin-top: 20px;">
#file build.gradle
android {
sourceSets {
main {
manifest.srcFile 'AndroidManifest.xml'
java.srcDirs = ['src/main/java']
resources.srcDirs = ['src']
aidl.srcDirs = ['src']
renderscript.srcDirs = ['src']
res.srcDirs = ['res']
assets.srcDirs = ['assets']
}
</code></pre>
</section>
<section>
<h2>Get started - Demo</h2>
<pre><code data-trim contenteditable style="font-size: 18px; margin-top: 20px;">
$ ./gradlew tasks # Lists all tasks available
$ ./gradlew fetchDepencencies # Fetch static dependencies from jenkins
$ ./gradlew installKeystore # creates java keystore needed to sign apk
$ ./gradlew build
$ ./gradlew installDebug
$ ./gradlew lint
</code></pre>
</section>
<section>
<h2>IntelliJ or Android studio</h2>
<p>
Would go for Android studio as its updated more frequently.
<br>
Altough it might give some more bugs.
</p>
</section>
<section>
<h2> How to setup?</h2>
<p>
Import project as gradle project. <br/>Structure is already defined in gradle.
</p>
</section>
<section>
<blockquote>
“I’ve known people who have not mastered their tools who are good programmers, but not a tool master who remained a mediocre programmer.” – Kent Beck
</blockquote>
</section>
<section>
<h2>Questions?</h2>
</section>
</div>
</div>
<script src="lib/js/head.min.js"></script>
<script src="js/reveal.min.js"></script>
<script>
// Full list of configuration options available here:
// https://github.com/hakimel/reveal.js#configuration
Reveal.initialize({
controls: false,
progress: true,
history: true,
center: true,
rollingLinks: false,
theme: Reveal.getQueryHash().theme, // available themes are in /css/theme
transition: Reveal.getQueryHash().transition || 'linear', // default/cube/page/concave/zoom/linear/fade/none
// Optional libraries used to extend on reveal.js
dependencies: [
{ src: 'lib/js/classList.js', condition: function() { return !document.body.classList; } },
{ src: 'plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: 'plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: 'plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } },
{ src: 'plugin/zoom-js/zoom.js', async: true, condition: function() { return !!document.body.classList; } },
{ src: 'plugin/notes/notes.js', async: true, condition: function() { return !!document.body.classList; } }
// { src: 'plugin/leap/leap.js', async: true }
// { src: 'plugin/search/search.js', async: true, condition: function() { return !!document.body.classList; } }
// { src: 'plugin/remotes/remotes.js', async: true, condition: function() { return !!document.body.classList; } }
]
});
</script>
</body>
</html>