chiark / gitweb /
New metadata field: Vercode Operation
[fdroidserver.git] / docs / fdroid.texi
1 \input texinfo   @c -*-texinfo-*-
2 @c %**start of header
3 @setfilename fdroid.info
4 @settitle F-Droid Server Manual
5 @c %**end of header
6
7 @copying
8 This manual is for the F-Droid repository server tools.
9
10 Copyright @copyright{} 2010, 2011, 2012, 2013 Ciaran Gultnieks
11
12 Copyright @copyright{} 2011 Henrik Tunedal, Michael Haas, John Sullivan
13
14 Copyright @copyright{} 2013 David Black, Daniel Martí
15
16 @quotation
17 Permission is granted to copy, distribute and/or modify this document
18 under the terms of the GNU Free Documentation License, Version 1.3
19 or any later version published by the Free Software Foundation;
20 with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.
21 A copy of the license is included in the section entitled "GNU
22 Free Documentation License".
23 @end quotation
24 @end copying
25
26 @titlepage
27 @title F-Droid Server Manual
28 @author Ciaran Gultnieks and the F-Droid project
29 @page
30 @vskip 0pt plus 1filll
31 @insertcopying
32
33 @end titlepage
34
35 @contents
36
37 @ifnottex
38 @node Top
39 @top F-Droid Server
40
41 @insertcopying
42 @end ifnottex
43
44 @menu
45 * Overview::
46 * System Requirements::
47 * Setup::
48 * Simple Binary Repository::
49 * Building Applications::
50 * Importing Applications::
51 * Metadata::
52 * Update Processing::
53 * Build Server::
54 * Signing::
55 * GNU Free Documentation License::
56 * Index::
57 @end menu
58
59 @node Overview
60 @chapter Overview
61
62 The F-Droid server tools provide various scripts and tools that are used
63 to maintain the main F-Droid application repository. You can use these same
64 tools to create your own additional or alternative repository for publishing,
65 or to assist in creating, testing and submitting metadata to the main
66 repository.
67
68
69 @node System Requirements
70 @chapter System Requirements
71
72 @cindex installation
73
74 The system requirements for using the tools will vary depending on your
75 intended usage. At the very least, you'll need:
76
77 @itemize @bullet
78 @item
79 GNU/Linux
80 @item
81 Python 2.x
82 @item
83 The Android SDK Tools and Build-tools. 
84 Note that F-Droid does not assume that you have the Android SDK in your 
85 @code{PATH}: these directories will be specified in your repository 
86 configuration. Recent revisions of the SDK have @code{aapt} located in 
87 android-sdk/build-tools/ and it may be necessary to make a symlink to it in 
88 android-sdk/platform-tools/
89 @end itemize
90
91 If you intend to build applications from source you'll also need most, if not
92 all, of the following:
93
94 @itemize @bullet
95 @item
96 All SDK platforms requested by the apps you want to build
97 (The Android SDK is made available by Google under a proprietary license but
98 within that, the SDK platforms, support library and some other components are 
99 under the Apache license and source code is provided. 
100 Google APIs, used for building apps using Google Maps, are free to the extent 
101 that the library comes pre-installed on the device.
102 Google Play Services, Google Admob and others are proprietary and shouldn't be
103 included in the main F-Droid repository.)
104 @item
105 A version of the Android NDK
106 @item
107 Ant
108 @item
109 Ant Contrib Tasks (Debian package ant-contrib)
110 @item
111 Maven (Debian package maven)
112 @item
113 JavaCC (Debian package javacc)
114 @item
115 JDK (Debian package openjdk-6-jdk): openjdk-6 is recommended though openjdk-7
116 should work too
117 @item
118 VCS clients: svn, git, git-svn, hg, bzr
119 @item
120 Miscellaneous packages listed in 
121 buildserver/cookbooks/fdroidbuild-general/recipes/default.rb
122 of the F-Droid server repository
123 @item
124 A keystore for holding release keys. (Safe, secure and well backed up!)
125 @end itemize
126
127 If you intend to use the 'Build Server' system, for secure and clean builds
128 (highly recommended), you will also need:
129
130 @itemize @bullet
131 @item
132 VirtualBox (debian package virtualbox)
133 @item
134 Ruby (debian packages ruby and rubygems)
135 @item
136 Vagrant (gem install vagrant)
137 @item
138 Paramiko (debian package python-paramiko)
139 @item
140 Imaging (debian package python-imaging)
141 @item
142 Magic (debian package python-magic)
143 @end itemize
144
145
146 @node Setup
147 @chapter Setup
148
149 @cindex setup, installation
150
151 Because the tools and data will always change rapidly, you will almost
152 certainly want to work from a git clone of the tools at this stage. To
153 get started:
154
155 @example
156 git clone git://gitorious.org/f-droid/fdroidserver.git
157 @end example
158
159 You now have lots of stuff in the fdroidserver directory, but the most
160 important is the 'fdroid' command script which you run to perform all tasks.
161 This script is always run from a repository data directory, so the
162 most sensible thing to do next is to put your new fdroidserver directory
163 in your @code{PATH}.
164
165 @section Data
166
167 To do anything, you'll need at least one repository data directory. It's
168 from this directory that you run the @code{fdroid} command to perform all
169 repository management tasks. You can either create a brand new one, or
170 grab a copy of the data used by the main F-Droid repository:
171
172 @example
173 git clone git://gitorious.org/f-droid/fdroiddata.git
174 @end example
175
176 Regardless of the intended usage of the tools, you will always need to set
177 up some basic configuration details. This is done by creating a file called
178 @code{config.py} in the data directory. You should do this by copying the
179 example file (@code{config.sample.py}) from the fdroidserver project to your
180 data directory and then editing according to the instructions within.
181
182 Once configured in this way, all the functionality of the tools is accessed
183 by running the @code{fdroid} command. Run it on its own to get a list of the
184 available sub-commands.
185
186 You can follow any command with @code{--help} to get a list of additional
187 options available for that command.
188
189 @example
190 fdroid update --help
191 @end example
192
193
194 @node Simple Binary Repository
195 @chapter Simple Binary Repository
196
197 @cindex binary
198
199 If you want to maintain a simple repository hosting only binary APKs obtained
200 and compiled elsewhere, the process is quite simple:
201
202 @enumerate
203 @item
204 Set up the server tools, as described in Setup.
205 @item
206 Make a directory for your repository. This is the directory from which you
207 will do all the work with your repository. Create a config file there, called
208 @code{config.py}, by copying the @code{config.sample.py} from the server
209 project and editing it.
210 @item
211 Within that, make a directory called @code{repo} and put APK files in it.
212 @item
213 Run @code{fdroid update}.
214 @item
215 If it reports that any metadata files are missing, you can create them
216 in the @code{metadata} directory and run it again.
217 @item
218 To ease creation of metadata files, run @code{fdroid update} with the @code{-c}
219 option. It will create 'skeleton' metadata files that are missing, and you can
220 then just edit them and fill in the details.
221 @item
222 Then, if you've changed things, run @code{fdroid update} again.
223 @item
224 Running @code{fdroid update} adds an Icons directory into the repo directory,
225 and also creates the repository index (index.xml, and also index.jar if you've
226 configured the system to use a signed index).
227 @item
228 Publish the resulting contents of the @code{repo} directory to your web server.
229 @end enumerate
230
231 Following the above process will result in a @code{repo} directory, which you
232 simply need to push to any HTTP (or preferably HTTPS) server to make it
233 accessible.
234
235 While some information about the applications (and versions thereof) is
236 retrieved directly from the APK files, most comes from the corresponding file
237 in the @code{metadata} directory. The metadata file covering ALL versions of a
238 particular application is named @code{package.id.txt} where package.id is the
239 unique identifier for that package.
240
241 See the Metadata chapter for details of what goes in the metadata file. All
242 fields are relevant for binary APKs, EXCEPT for 'Build Version' entries, which
243 should be omitted.
244
245
246 @node Building Applications
247 @chapter Building Applications
248
249 Instead of (or as well as) including binary APKs from external sources in a
250 repository, you can build them directly from the source code.
251
252 Using this method, it is is possible to verify that the application builds
253 correctly, corresponds to the source code, and contains only free software.
254 Unforunately, in the Android world, it seems to be very common for an
255 application supplied as a binary APK to present itself as Free Software
256 when in fact some or all of the following are true:
257
258 @enumerate
259 @item
260 The source code (either for a particular version, or even all versions!) is
261 unavailable or incomplete.
262 @item
263 The source code is not capable of producing the actual binary supplied.
264 @item
265 The 'source code' contains binary files of unknown origin, or with proprietary
266 licenses.
267 @end enumerate
268
269 For this reason, source-built applications are the preferred method for the
270 main F-Droid repository, although occasionally for technical or historical
271 reasons, exceptions are made to this policy.
272
273 When building applications from source, it should be noted that you will be
274 signing them (all APK files must be signed to be installable on Android) with
275 your own key. When an application is already installed on a device, it is not
276 possible to upgrade it in place to a new version signed with a different key
277 without first uninstalling the original. This may present an inconvenience to
278 users, as the process of uninstalling loses any data associated with the
279 previous installation.
280
281 The process for managing a repository for built-from-source applications is
282 very similar to that described in the Simple Binary Repository chapter,
283 except now you need to:
284
285 @enumerate
286 @item
287 Include Build Version entries in the metadata files.
288 @item
289 Run @code{fdroid build} to build any applications that are not already built.
290 @item
291 Run @code{fdroid publish} to finalise packaging and sign any APKs that have
292 been built.
293 @end enumerate
294
295
296 @section More about "fdroid build"
297
298 When run without any parameters, @code{fdroid build} will build any and all
299 versions of applications that you don't already have in the @code{repo}
300 directory (or more accurately, the @code{unsigned} directory). There are various
301 other things you can do. As with all the tools, the @code{--help} option is
302 your friend, but a few annotated examples and discussion of the more common
303 usage modes follows:
304
305 To build a single version of a single application, you could run the
306 following:
307
308 @example
309 ./fdroid build --package=org.fdroid.fdroid --vercode 16
310 @end example
311
312 This attempts to build version code 16 (which is version 0.25) of the F-Droid
313 client. Many of the tools recognise this @code{--package} parameter, allowing
314 their activity to be limited to just a single package.
315
316 If the build above was successful, two files will have been placed in the
317 @code{unsigned} directory:
318
319 @example
320 org.fdroid.fdroid_16.apk
321 org.fdroid.fdroid_16_src.tar.gz
322 @end example
323
324 The first is the (unsigned) APK. You could sign this with a debug key and push
325 it direct to your device or an emulator for testing. The second is a source
326 tarball containing exactly the source that was used to generate the binary.
327
328 If you were intending to publish these files, you could then run:
329
330 @example
331 ./fdroid publish
332 @end example
333
334 The source tarball would move to the @code{repo} directory (which is the
335 directory you would push to your web server). A signed and zip-aligned version
336 of the APK would also appear there, and both files would be removed from the
337 @code{unsigned} directory.
338
339 If you're building purely for the purposes of testing, and not intending to
340 push the results to a repository, at least yet, the @code{--test} option can be
341 used to direct output to the @code{tmp} directory instead of @code{unsigned}.
342 A similar effect could by achieved by simply deleting the output files from
343 @code{unsigned} after the build, but with the risk of forgetting to do so!
344
345 Along similar lines (and only in conjunction with @code{--test}, you can use
346 @code{--force} to force a build of a Disabled application, where normally it 
347 would be completely ignored. Similarly a version that was found to contain 
348 ELFs or known non-free libraries can be forced to build. See also — 
349 scanignore= in the Build Version section.
350
351 If the build was unsuccessful, you can find out why by looking at the output 
352 in the logs/ directory. If that isn't illuminating, try building the app the 
353 regular way, step by step: android update project, ndk-build, ant debug.
354
355 Note that source code repositories often contain prebuilt libraries. If the 
356 app is being considered for the main F-Droid repository, it is important that 
357 all such prebuilts are built either via the metadata or by a reputable third 
358 party.
359
360
361 @section Direct Installation
362
363 You can also build and install directly to a connected device or emulator using
364 the @code{--install} switch. If you do this without using @code{--package} and
365 @code{--vercode} then all versions of all packages will be installed (with each
366 individual version overwriting the previous!). In most cases, this will not be
367 what you want to do, so execution will stop straight away. However, you can
368 override this if you're sure that's what you want, by using @code{--all}.
369 Note that currently, no sanity checks are performed with this mode, so that if 
370 the version is incorrect or that if the package name is different, you won't 
371 be informed.
372
373
374 @node Importing Applications
375 @chapter Importing Applications
376
377 To help with starting work on including a new application, @code{fdroid import}
378 will take a URL and optionally some other parameters, and attempt to construct
379 as much information as possible by analysing the source code. Basic usage is:
380
381 @example
382 ./fdroid import --url=http://address.of.project
383 @end example
384
385 For this to work, the URL must point to a project format that the script
386 understands. Currently this is limited to one of the following:
387
388 @enumerate
389 @item
390 Gitorious - @code{https://gitorious.org/PROJECTNAME/REPONAME}
391 @item
392 Github - @code{https://github.com/USER/PROJECT}
393 @item
394 Google Code - @code{http://code.google.com/p/PROJECT/}
395 Supports git, svn and hg repos.
396
397 Some Google Code projects have multiple repositories, identified by a
398 dropdown list on the @code{source/checkout} page. To access one other than
399 the default, specify its name using the @code{--repo} switch.
400 @item
401 Bitbucket - @code{https://bitbucket.org/USER/PROJECT/}
402 @item
403 Git - @code{git://REPO}
404 @end enumerate
405
406 Depending on the project type, more or less information may be gathered. For
407 example, the license will be retrieved from a Google Code project, but not a
408 GitHub one. A bare repo url, such as the git:// one, is the least preferable
409 optional of all, since you will have to enter much more information manually.
410
411 If the import is successful, a metadata file will be created. You will need to
412 edit this further to check the information, and fill in the blanks.
413
414 If it fails, you'll be told why. If it got as far as retrieving the source
415 code, you can inspect it further by looking in @code{tmp/importer} where a full
416 checkout will exist.
417
418 A frequent cause of initial failure is that the project directory is actually
419 a subdirectory in the repository. In this case, run the importer again using
420 the @code{--subdir} option to tell it where. It will not attempt to determine
421 this automatically, since there may be several options.
422
423
424 @node Metadata
425 @chapter Metadata
426
427 @cindex metadata
428
429 Information used by update.py to compile the public index comes from two
430 sources:
431
432 @enumerate
433 @item
434 the APK files in the repo directory, and
435 @item
436 the metadata files in the metadata directory.
437 @end enumerate
438
439 The metadata files are simple, easy to edit text files, always named as the
440 application's package ID with '.txt' appended.
441
442 Note that although the metadata files are designed to be easily read and
443 writable by humans, they are also processed and written by various scripts.
444 They are capable of rewriting the entire file when necessary. Even so,
445 the structure and comments will be preserved correctly, although the order
446 of fields will be standardised. (In the event that the original file was
447 in a different order, comments are considered as being attached to the field
448 following them). In fact, you can standardise all the metadata in a single
449 command, without changing the functional content, by running:
450
451 @example
452 fdroid rewritemetadata
453 @end example
454
455 The following sections describe the fields recognised within the file.
456
457 @menu
458 * Category::
459 * License::
460 * Name::
461 * Auto Name::
462 * Web Site::
463 * Source Code::
464 * Issue Tracker::
465 * Donate::
466 * FlattrID::
467 * Bitcoin::
468 * Litecoin::
469 * Summary::
470 * Description::
471 * Repo Type::
472 * Repo::
473 * Build Version::
474 * AntiFeatures::
475 * Disabled::
476 * Requires Root::
477 * Archive Policy::
478 * Update Check Mode::
479 * Vercode Operation::
480 * Update Check Data::
481 * Auto Update Mode::
482 * Current Version::
483 * Current Version Code::
484 * No Source Since::
485 @end menu
486
487 @node Category
488 @section Category
489
490 A single category for the application to be placed in. There is no fixed list
491 of categories - both the client and the web site will automatically show any
492 categories that exist in any applications. However, if your metadata is
493 intended for the main F-Droid repository, you should use one of the existing
494 categories (look at the site/client), or discuss the proposal to add
495 a new one.
496
497 Additional categories can be specified, by using ';' as a separator. In this
498 case the first is the primary category, and the only one that will be seen by
499 clients that only understand one.
500
501 @node License
502 @section License
503
504 @cindex license
505
506 The overall license for the application, or in certain cases, for the 
507 source code only. 
508
509 Common values: 
510
511 @itemize @bullet
512
513 @item
514 @samp{GPLv2}
515 GNU GPL version 2
516
517 @item
518 @samp{GPLv2+}
519 GNU GPL version 2 or later
520
521 @item
522 @samp{GPLv3}
523 GNU GPL version 3
524
525 @item
526 @samp{GPLv3+}
527 GNU GPL version 3 or later
528
529 @item
530 @samp{GPL}
531 An unspecified GPL version. Use this only as a last resort or if there is 
532 some confusion over compatiblity of component licenses: particularly the use of 
533 Apache libraries with GPLv2 source code.
534
535 @item
536 @samp{AGPL}
537 Afferro GPL version 3.
538
539 @item
540 @samp{Apache2}
541 Apache 2
542
543 @item
544 @samp{MIT}
545 MIT X11 license
546
547 @item
548 @samp{BSD}
549 BSD license - the original '4-clause' version.
550
551 @item
552 @samp{NewBSD}
553 BSD license - the new, or modified, version.
554
555 @end itemize
556
557 @node Auto Name
558 @section Auto Name
559
560 @cindex Auto Name
561
562 The name of the application as can best be retrieved from the source code.
563 This is done so that the commitupdates script can put a familiar name in the
564 description of commits created when a new update of the application is
565 found. The Auto Name entry is generated automatically when @code{fdroid
566 checkupdates} is run.
567
568 @node Name
569 @section Name
570
571 @cindex Name
572
573 The name of the application. Normally, this field should not be present since 
574 the application's correct name is retrieved from the APK file. However, in a 
575 situation where an APK contains a bad or missing application name, it can be 
576 overridden using this. Note that this only overrides the name in the list of 
577 apps presented in the client; it doesn't changed the name or application label
578 in the source code.
579
580 @node Web Site
581 @section Web Site
582
583 @cindex Web Site
584
585 The URL for the application's web site.
586
587 @node Source Code
588 @section Source Code
589
590 @cindex Source Code
591
592 The URL to view or obtain the application's source code. This should be
593 something human-friendly. Machine-readable source-code is covered in the
594 'Repo' field.
595
596 @node Issue Tracker
597 @section Issue Tracker
598
599 @cindex Issue Tracker
600
601 The URL for the application's issue tracker. Optional, since not all
602 applications have one.
603
604 @node Donate
605 @section Donate
606
607 @cindex Donate
608
609 The URL to donate to the project. This should be the project's donate page
610 if it has one.
611
612 It is possible to use a direct PayPal link here, if that is all that is
613 available. However, bear in mind that the developer may not be aware of
614 that direct link, and if they later changed to a different PayPal account,
615 or the PayPal link format changed, things could go wrong. It is always
616 best to use a link that the developer explicitly makes public, rather than
617 something that is auto-generated 'button code'.
618
619 @node FlattrID
620 @section FlattrID
621
622 @cindex FlattrID
623
624 The project's Flattr (http://flattr.com) ID, if it has one. This should be
625 a numeric ID, such that (for example) https://flattr.com/thing/xxxx leads
626 directly to the page to donate to the project.
627
628 @node Bitcoin
629 @section Bitcoin
630
631 @cindex Bitcoin
632
633 A bitcoin address for donating to the project.
634
635 @node Litecoin
636 @section Litecoin
637
638 @cindex Litecoin
639
640 A litecoin address for donating to the project.
641
642 @node Summary
643 @section Summary
644
645 @cindex Summary
646
647 A brief summary of what the application is. Since the summary is only allowed 
648 one line on the list of the F-Droid client, keeping it to within 32 characters 
649 will ensure it fits even on the smallest screens.
650
651 @node Description
652 @section Description
653
654 @cindex Description
655
656 A full description of the application, relevant to the latest version. 
657 This can span multiple lines (which should be kept to a maximum of 80 
658 characters), and is terminated by a line containing a single '.'.
659
660 Basic MediaWiki-style formatting can be used. Leaving a blank line starts a
661 new paragraph. Surrounding text with @code{''} make it italic, and with
662 @code{'''} makes it bold.
663
664 You can link to another app in the repo by using @code{[[app.id]]}. The link
665 will be made appropriately whether in the Android client, the web repo
666 browser or the wiki. The link text will be the apps name.
667
668 Links to web addresses can be done using @code{[http://example.com Text]}.
669
670 Bulletted lists are done by simply starting each item with a @code{*} on
671 a new line, and numbered lists are the same but using @code{#}. There is
672 currently no support for nesting lists - you can have one level only.
673
674 It can be helpful to note information pertaining to updating from an 
675 earlier version; whether the app contains any prebuilts built by the 
676 upstream developers or whether non-free elements were removed; whether the 
677 app is in rapid development or whether the latest version lags behind the 
678 current version; whether the app supports multiple architectures or whether 
679 there is a maximum SDK specified (such info not being recorded in the index).
680
681 @node Repo Type
682 @section Repo Type
683
684 @cindex Repo Type
685
686 The type of repository - for automatic building from source. If this is not
687 specified, automatic building is disabled for this application. Possible
688 values are:
689
690 @itemize @bullet
691 @item
692 @samp{git}
693 @item
694 @samp{svn}
695 @item
696 @samp{git-svn}
697 @item
698 @samp{hg}
699 @item
700 @samp{bzr}
701 @item
702 @samp{srclib}
703 @end itemize
704 @node Repo
705 @section Repo
706
707 @cindex Repo
708
709 The repository location. Usually a git: or svn: URL, for example.
710
711 The git-svn option connects to an SVN repository, and you specify the URL in
712 exactly the same way, but git is used as a back-end. This is preferable for
713 performance reasons, and also because a local copy of the entire history is
714 available in case the upstream repository disappears. (It happens!). In
715 order to use Tags as update check mode for this VCS type, the URL must have
716 the tags= special argument set. Likewise, if you intend to use the
717 RepoManifest/branch scheme, you would want to specify branches= as well.
718 Finally, trunk= can also be added. All these special arguments will be passed
719 to "git svn" in order, and their values must be relative paths to the svn repo
720 root dir.
721 Here's an example of a complex git-svn Repo URL:
722 http://svn.code.sf.net/p/project/code/svn;trunk=trunk;tags=tags;branches=branches
723
724 For a Subversion repo that requires authentication, you can precede the repo
725 URL with username:password@ and those parameters will be passed as @option{--username}
726 and @option{--password} to the SVN checkout command. (This now works for both
727 svn and git-svn)
728
729 If the Repo Type is @code{srclib}, then you must specify the name of the
730 according srclib .txt file. For example if @code{scrlibs/FooBar.txt} exist
731 and you want to use this srclib, then you have to set Repo to
732 @code{FooBar}.
733
734 @node Build Version
735 @section Build Version
736
737 @cindex Build Version
738
739 Any number of these fields can be present, each specifying a version to
740 automatically build from source. The value is a comma-separated list.
741 For example:
742
743 @samp{Build Version:0.12,3,651696a49be2cd7db5ce6a2fa8185e31f9a20035}
744
745 The above specifies to build version 0.12, which has a version code of 3.
746 The third parameter specifies the tag, commit or revision number from
747 which to build it in the source repository.
748
749 In addition to the three, always required, parameters described above,
750 further parameters can be added (in name=value format) to apply further
751 configuration to the build. These are (roughly in order of application):
752
753 @table @code
754
755 @item disable=<message>
756 Disables this build, giving a reason why. (For backwards compatibility, this
757 can also be achieved by starting the commit ID with '!')
758
759 The purpose of this feature is to allow non-buildable releases (e.g. the source
760 is not published) to be flagged, so the scripts don't generate repeated
761 messages about them. (And also to record the information for review later).
762 If an apk has already been built, disabling causes it to be deleted once 
763 @code{fdroid update} is run; this is the procedure if ever a version has to 
764 be replaced.
765
766 @item subdir=<path>
767 Specifies to build from a subdirectory of the checked out source code.
768 Normally this directory is changed to before building,
769
770 @item submodules=yes
771 Use if the project (git only) has submodules - causes git submodule
772 init and update to be executed after the source is cloned.
773
774 @item init=xxxx
775 As for 'prebuild', but runs on the source code BEFORE any other processing
776 takes place.
777
778 You can use $$SDK$$, $$NDK$$ and $$MVN3$$ to substitute the paths to the
779 android SDK and NDK directories, and maven 3 executable respectively.
780
781 @item oldsdkloc=yes
782 The sdk location in the repo is in an old format, or the build.xml is
783 expecting such. The 'new' format is sdk.dir while the VERY OLD format
784 is sdk-location. Typically, if you get a message along the lines of:
785 "com.android.ant.SetupTask cannot be found" when trying to build, then
786 try enabling this option.
787
788 @item target=<target>
789 Specifies a particular SDK target for compilation, overriding the 
790 project.properties of the app and possibly sub-projects. Note that this does 
791 not change the target SDK in the AndroidManifest.xml — the level of features 
792 that can be included in the build. This is likely to cause the whole build.xml 
793 to be rewritten, which is fine if it's a 'standard' android file or doesn't 
794 already exist, but not a good idea if it's heavily customised. If you get an 
795 error about invalid target, first try @code{init=rm -rf bin/}; otherwise this 
796 parameter should do the trick.
797
798 Please note that gradle builds should be using compilesdk=.
799
800 @item compilesdk=<level>
801 Practically accomplishes the same that target= does when used in ant and maven
802 projects. compilesdk= is used rather than target= so as to not cause any more
803 confusion. It only takes effect on gradle builds in the build.gradle file,
804 thus using it in any other case is not wise.
805
806 @item update=xxx
807 By default, 'android update project' is used to generate or update the
808 build.xml file. Specifying update=no bypasses that.
809
810 Specifiying update=force forces rebuilding of the build.xml file at the
811 same time - this is frequently needed with r14 of the Android platform
812 tools. Be aware of any customisations in build.xml when using
813 update=force.
814
815 Otherwise, value can be a semicolon-separated list of directories in
816 which to run 'android update project' relative to the main
817 application directory (which may include '@code{subdir}' parameter).
818 Default value is '@code{.}', and passing non-default value may be
819 useful for multi-component projects. Note that @code{--subprojects}
820 switch is automatically passed to 'android update project', so using
821 explicit list may be needed only for peculiar source layouts.
822
823 @item encoding=xxxx
824 Adds a java.encoding property to local.properties with the given
825 value. Generally the value will be 'utf-8'. This is picked up by the
826 SDK's ant rules, and forces the Java compiler to interpret source
827 files with this encoding. If you receive warnings during the compile
828 about character encodings, you probably need this.
829
830 @item forceversion=yes
831 If specified, the package version in AndroidManifest.xml is replaced
832 with the version name for the build as specified in the metadata.
833
834 This is useful for cases when upstream repo failed to update it for
835 specific tag; to build an arbitrary revision; to make it apparent that 
836 the version differs significantly from upstream; or to make it apparent 
837 which architecture or platform the apk is designed to run on.
838
839 @item forcevercode=yes
840 If specified, the package version code in the AndroidManifest.xml is
841 replaced with the version code for the build. See also forceversion.
842
843 @item rm=<relpath1;relpath2;...>
844 Specifies the relative paths of files or directories to delete before
845 the build is done. The paths are relative to the base of the build
846 directory - i.e. the root of the directory structure checked out from
847 the source respository - not necessarily the directory that contains
848 AndroidManifest.xml.
849
850 Multiple files/directories can be specified by separating them with ';'.
851 Directories will be recursively deleted.
852
853 @item fixtrans=yes
854 Modifies any instances of string resources that use multiple
855 formatting arguments, but don't use positional notation. For example,
856 "Hello %s, %d" becomes "Hello %1$s, %2$d". Newer versions of the
857 Android platform tools enforce this sensible standard. If you get
858 error messages relating to that, you need to enable this.
859
860 @item fixapos=yes
861 Like fixtrans, but deals with an even older issue relating to
862 'unescaped apostrophes' in translation strings.
863
864 @item extlibs=a;b;c
865 Specifies a list of external libraries (jar files) from the
866 @code{build/extlib} library, which will be placed in the @code{libs} directory
867 of the project. Separate items with semicolons.
868
869 @item srclibs=a@@r;b@@r1;
870 Specifies a list of source libraries or Android projects. Separate items with 
871 semicolons, and each item is of the form name@@rev where name is the predefined 
872 source library name and rev is the revision or tag in source control to use. 
873
874 Each srclib has a metadata file under srclibs/ in the repository directory, 
875 and the source code is stored in build/srclib/. 
876 Repo Type: and Repo: are specified in the same way as for apps; Subdir: can be 
877 a comma separated list, for when directories are renamed by upstream; Update 
878 Project: updates the projects in the working directory and one level down; 
879 Prepare: can be used for any kind of preparation: in particular if you need to 
880 update the project with a particular target. You can then also use $$name$$ in 
881 the init/prebuild/build command to substitute the relative path to the library 
882 directory, but it could need tweaking if you've changed into another directory.
883
884 @item patch=x
885 Apply patch(es). 'x' names one (or more - comma-seperated)
886 files within a directory below the metadata, with the same
887 name as the metadata file but without the extension. Each of
888 these patches is applied to the code in turn.
889
890 @item prebuild=xxxx
891 Specifies a shell command (or commands - chain with &&) to run before
892 the build takes place. Backslash can be used as an escape character to
893 insert literal commas, or as the last character on a line to join that
894 line with the next. It has no special meaning in other contexts; in
895 particular, literal backslashes should not be escaped.
896
897 The command runs using bash.
898
899 Note that nothing should be build during this prebuild phase - scanning
900 of the code and building of the source tarball, for example, take place
901 after this. For custom actions that actually build things, use 'build'
902 instead.
903
904 You can use $$name$$ to substitute the path to a referenced srclib - see
905 the @code{srclib} directory for details of this.
906
907 You can use $$SDK$$, $$NDK$$ and $$MVN3$$ to substitute the paths to the
908 android SDK and NDK directories, and maven 3 executable respectively e.g. 
909 for when you need to run @code{android update project} explicitly.
910
911 @item initfun=yes
912 Enables a selection of mad hacks to make com.funambol.android build.
913 Probably not useful for any other application.
914
915 @item scanignore=path1;path2;...
916 Enables one or more files/paths to be exlcuded from the scan process.
917 This should only be used where there is a very good reason, and
918 probably accompanied by a comment explaining why it is necessary.
919
920 When scanning, files whose relative paths start with any of the paths
921 given here are ignored.
922
923 @item build=xxxx
924 As for 'prebuild', but runs during the actual build phase (but before the
925 main ant/maven build). Use this only for actions that do actual building.
926 Any prepartion of the source code should be done using 'init' or 'prebuild'.
927
928 Any building that takes place before build= will be ignored, as either ant,
929 mvn or gradle will be executed to clean the build environment right before
930 build= (or the final build) is run.
931
932 You can use $$SDK$$, $$NDK$$ and $$MVN3$$ to substitute the paths to the
933 android SDK and NDK directories, and maven 3 executable respectively.
934
935 @item buildjni=[yes|no|<dir list>]
936 Enables building of native code via the ndk-build script before doing
937 the main ant build. The value may be a list of directories relative
938 to the main application directory in which to run ndk-build, or 'yes'
939 which corresponds to '.' . Using explicit list may be useful to build
940 multi-component projects.
941
942 The build and scan processes will complain (refuse to build) if this
943 parameter is not defined, but there is a @code{jni} directory present.
944 If the native code is being built by other means, you can specify
945 @code{no} here to avoid that. However, if the native code is actually
946 not required, remove the directory instead (using @code{prebuild} for
947 example).
948
949 @item gradle=<flavour>[@@<dir>]
950 Build with gradle instead of ant, specifying what flavour to assemble.
951 If <flavour> is 'yes', 'main' or empty, no flavour will be used. Note
952 that this will not work on projects with flavours, since it will build
953 all flavours and there will be no 'main' build.
954 If @@<dir> is attached to <flavour>, then the gradle tasks will be run in that
955 directory. This might be necessary if gradle needs to be run in the parent
956 directory, in which case one would use 'gradle=<flavour>@..'.
957
958 @item maven=yes[@@<dir>]
959 Build with maven instead of ant. Like gradle, an extra @@<dir> tells f-droid
960 to run maven inside that relative subdirectory.
961
962 @item preassemble=<task1> <task2>
963 Space-separated list of gradle tasks to be run before the assemble task
964 in a gradle project build.
965
966 @item bindir=<path>
967 Normally the build output (apk) is expected to be in the bin
968 subdirectory below the ant build files. If the project is configured
969 to put it elsewhere, that can be specified here, relative to the base
970 of the checked out repo. Not yet implemented for gradle.
971
972 @item antcommand=xxx
973 Specify an alternate ant command (target) instead of the default
974 'release'. It can't be given any flags, such as the path to a build.xml.
975
976 @item novcheck=yes 
977 Don't check that the version name and code in the resulting apk are
978 correct by looking at the build output - assume the metadata is
979 correct. This takes away a useful level of sanity checking, and should
980 only be used if the values can't be extracted.
981
982 @end table
983
984 Another example, using extra parameters:
985
986 @samp{Build Version:1.09.03,10903,45,subdir=Timeriffic,oldsdkloc=yes}
987
988 @node AntiFeatures
989 @section AntiFeatures
990
991 @cindex AntiFeatures
992
993 This is optional - if present, it contains a comma-separated list of any of
994 the following values, describing an anti-feature the application has. 
995 Even though such apps won't be displayed unless a settings box is ticked, 
996 it is a good idea to mention the reasons for the anti-feature(s) in the 
997 description:
998
999 @itemize @bullet
1000
1001 @item
1002 @samp{Ads} - the application contains advertising.
1003
1004 @item
1005 @samp{Tracking} - the application tracks and reports your activity to
1006 somewhere without your consent. It's commonly used for when developers 
1007 obtain crash logs without the user's consent, or when an app is useless 
1008 without some kind of authentication.
1009
1010 @item
1011 @samp{NonFreeNet} - the application relies on computational services that 
1012 are impossible to replace or that the replacement cannot be connected to 
1013 without major changes to the app.
1014
1015 @item
1016 @samp{NonFreeAdd} - the application promotes non-Free add-ons, such that the 
1017 app is effectively an advert for other non-free software and such software is 
1018 not clearly labelled as such.
1019
1020 @item
1021 @samp{NonFreeDep} - the application depends on a non-Free application (e.g.
1022 Google Maps) - i.e. it requires it to be installed on the device, but does not
1023 include it.
1024
1025 @end itemize
1026
1027 @node Disabled
1028 @section Disabled
1029
1030 @cindex Disabled
1031
1032 If this field is present, the application does not get put into the public
1033 index. This allows metadata to be retained while an application is temporarily
1034 disabled from being published. The value should be a description of why the
1035 application is disabled. No apks or source code archives are deleted: to purge 
1036 an apk see the Build Version section or delete manually for developer builds. 
1037 The field is therefore used when an app has outlived it's usefulness, because 
1038 the source tarball is retained.
1039
1040 @node Requires Root
1041 @section Requires Root
1042
1043 @cindex Requires Root
1044
1045 Set this optional field to "Yes" if the application requires root
1046 privileges to be usable. This lets the client filter it out if the
1047 user so desires. Whether root is required or not, it is good to give 
1048 a paragraph in the description to the conditions on which root may be 
1049 asked for and the reason for it.
1050
1051 @node Update Check Mode
1052 @section Update Check Mode
1053
1054 @cindex Update Check Mode
1055
1056 This determines the method using for determining when new releases are
1057 available - in other words, the updating of the Current Version and Current
1058 Version Code fields in the metadata by the @code{fdroid checkupdates} process.
1059
1060 Valid modes are:
1061
1062 @itemize
1063 @item
1064 @code{None} - No checking is done because there's no appropriate automated way
1065 of doing so. Updates should be checked for manually. Use this, for example, 
1066 when deploying betas or patched versions; when builds are done in a directory 
1067 different to where the AndroidManifest.xml is; if the developers use the 
1068 gradle build system and store version info in a separate file; if the 
1069 developers make a new branch for each release and don't make tags; or if you've 
1070 changed the package name or version code logic.
1071 @item
1072 @code{Static} - No checking is done - either development has ceased or new versions
1073 are not desired. This method is also used when there is no other checking method 
1074 available and the upstream developer keeps us posted on new versions.
1075 @item
1076 @code{RepoManifest} - At the most recent commit, the AndroidManifest.xml file 
1077 is looked for in the directory where it was found in the the most recent build.
1078 The appropriateness of this method depends on the development process used by 
1079 the application's developers. You should not specify this method unless you're 
1080 sure it's appropriate. For example, some developers bump the version when 
1081 commencing development instead of when publishing.
1082 It will return an error if the AndroidManifest.xml has moved to a different 
1083 directory or if the package name has changed. 
1084 The current version that it gives may not be accurate, since not all 
1085 versions are fit to be published. Therefore, before building, it is often 
1086 necessary to check if the current version has been published somewhere by the 
1087 upstream developers, either by checking for apks that they distribute or for 
1088 tags in the source code repository. 
1089
1090 It currently works for every repository type to different extents, except 
1091 the srclib repo type. For git, git-svn and hg repo types, you may use 
1092 "RepoManifest/yourbranch" as UCM so that "yourbranch" would be the branch used 
1093 in place of the default one.  The default values are "master" for git, 
1094 "default" for hg and none for git-svn (it stays in the same branch). 
1095 On the other hand, branch support hasn't been implemented yet in bzr and svn, 
1096 but RepoManifest may still be used without it.
1097 @item
1098 @code{RepoTrunk} - For svn and git-svn repositories, especially those who
1099 don't have a bundled AndroidManifest.xml file, the Tags and RepoManifest
1100 checks will not work, since there is no version information to obtain. But,
1101 for those apps who automate their build process with the commit ref that HEAD
1102 points to, RepoTrunk will set the Current Version and Current Version Code to
1103 that number.
1104 @item
1105 @code{Tags} - The AndroidManifest.xml file in all tagged revisions in the
1106 source repository is checked, looking for the highest version code. The
1107 appropriateness of this method depends on the development process used by the
1108 application's developers. You should not specify this method unless you're sure
1109 it's appropriate. It shouldn't be used if the developers like to tag betas or 
1110 are known to forget to tag releases. Like RepoManifest, it will not return the 
1111 correct value if the directory containing the AndroidManifest.xml has moved.
1112 Despite these caveats, it is the often the favourite update check mode. 
1113
1114 It currently only works for git, hg, bzr and git-svn repositories. In the case
1115 of the latter, the repo URL must encode the path to the trunk and tags or else
1116 no tags will be found.
1117 @item
1118 @code{HTTP} - HTTP requests are used to determine the current version code and
1119 version name. This is controlled by the @code{Update Check Data} field, which
1120 is of the form @code{urlcode|excode|urlver|exver}.
1121
1122 Firstly, if @code{urlcode} is non-empty, the document from that URL is
1123 retrieved, and matched against the regular expression @code{excode}, with the
1124 first group becoming the version code.
1125
1126 Secondly, if @code{urlver} is non-empty, the document from that URL is
1127 retrieved, and matched against the regular expression @code{exver}, with the
1128 first group becoming the version name. The @code{urlver} field can be set to
1129 simply '.' which says to use the same document returned for the version code
1130 again, rather than retrieving a different one.
1131 @end itemize
1132
1133 @node Update Check Data
1134 @section Update Check Data
1135
1136 @cindex Update Check Data
1137
1138 Used in conjunction with @code{Update Check Mode} for certain modes.
1139
1140 @node Vercode Operation
1141 @section Vercode Operation
1142
1143 @cindex Vercode Operation
1144
1145 Operation to be applied to the vercode obtained by the defined @code{Update
1146 Check Mode}. @code{%c} will be replaced by the actual vercode, and the whole
1147 string will be passed to python's @code{eval} function.
1148
1149 Especially useful with apps that we want to compile for different ABIs, but
1150 whose vercodes don't always have trailing zeros. With @code{Vercode Operation}
1151 set at something like @code{%c*10 + 4}, we will be able to track updates and
1152 build three different versions of every upstream version.
1153
1154 @node Archive Policy
1155 @section Archive Policy
1156
1157 @cindex Archive Policy
1158
1159 This determines the policy for moving old versions of an app to the archive
1160 repo, if one is configured. The configuration sets a default maximum number
1161 of versions kept in the main repo, after which older ones are moved to the
1162 archive. This app-specific policy setting can override that.
1163
1164 Currently the only supported format is "n versions", where n is the number
1165 of versions to keep.
1166
1167 @node Auto Update Mode
1168 @section Auto Update Mode
1169
1170 @cindex Auto Update Mode
1171
1172 This determines the method using for auto-generating new builds when new 
1173 releases are available - in other words, adding a new Build Version line to the 
1174 metadata.
1175 This happens in conjunction with the 'Update Check Mode' functionality - i.e.
1176 when an update is detected by that, it is also processed by this.
1177
1178 Valid modes are:
1179
1180 @itemize
1181 @item
1182 @code{None} - No auto-updating is done
1183 @item
1184 @code{Version} - Identifies the target commit (i.e. tag) for the new build based
1185 on the given version specification, which is simply text in which %v and %c are
1186 replaced with the required version name and version code respectively.
1187
1188 For example, if an app always has a tag "2.7.2" corresponding to version 2.7.2,
1189 you would simply specify "Version %v". If an app always has a tag "ver_1234"
1190 for a version with version code 1234, you would specify "Version ver_%c".
1191
1192 Additionally, a suffix can be added to the version name at this stage, to
1193 differentiate F-Droid's build from the original. Continuing the first example
1194 above, you would specify that as "Version +-fdroid %v" - "-fdroid" is the suffix.
1195 @end itemize
1196
1197
1198 @node Current Version
1199 @section Current Version
1200
1201 @cindex Current Version
1202
1203 The name of the version that is current. There may be newer versions of the
1204 application than this (e.g. betas), and there will almost certainly be older
1205 ones. This should be the one that is recommended for general use. 
1206 In the event that there is no source code for the current version, or that 
1207 non-free libraries are being used, this would ideally be the latest 
1208 version that is still free, though it may still be expedient to 
1209 retain the automatic update check — see No Source Since.
1210
1211 This field is normally automatically updated - see Update Check Mode.
1212
1213 @node Current Version Code
1214 @section Current Version Code
1215
1216 @cindex Current Version Code
1217
1218 The version code corresponding to the Current Version field. Both these fields
1219 must be correct and matching although it's the current version code that's
1220 used by Android to determine version order and by F-Droid client to determine
1221 which version should be recommended.
1222
1223 This field is normally automatically updated - see Update Check Mode.
1224
1225 @node No Source Since
1226 @section No Source Since
1227
1228 @cindex No Source Since
1229
1230 In case we are missing the source code for the Current Version reported by
1231 Upstream, or that non-free elements have been introduced, this defines the 
1232 first version that began to miss source code.
1233 Apps that are missing source code for just one or a few versions, but provide
1234 source code for newer ones are not to be considered here - this field is
1235 intended to illustrate which apps do not currently distribute source code, and
1236 since when have they been doing so.
1237
1238 @node Update Processing
1239 @chapter Update Processing
1240
1241 @section Detecting
1242
1243 There are various mechanisms in place for automatically detecting that updates
1244 are available for applications, with the @code{Update Check Mode} field in the
1245 metadata determining which method is used for a particular application.
1246
1247 Running the @code{fdroid checkupdates} command will apply this method to each
1248 application in the repository and update the @code{Current Version} and
1249 @code{Current Version Code} fields in the metadata accordingly.
1250
1251 As usual, the @code{-p} option can be used with this, to restrict processing
1252 to a particular application.
1253
1254 Note that this only updates the metadata such that we know what the current
1255 published/recommended version is. It doesn't make that version available in
1256 the repository - for that, see the next section.
1257
1258 @section Adding
1259
1260 Adding updates (i.e. new versions of applications already included in the
1261 repository) happens in two ways. The simple case is applications where the
1262 APK files are binaries, retrieved from a developer's published build. In this
1263 case, all that's required is to place the new binary in the @code{Repo}
1264 directory, and the next run of @code{fdroid update} will pick it up.
1265
1266 For applications built from source, it is necessary to add a new
1267 @code{Build Version} line to the metadata file. At the very least, the version
1268 name, version code and commit will be different. It is also possible that the
1269 additional build flags will change between versions.
1270
1271 For processing multiple updates in the metadata at once, it can be useful to
1272 run @code{fdroid update --interactive}. This will check all the applications
1273 in the repository, and where updates are required you will be prompted to
1274 [E]dit the metadata, [I]gnore the update, or [Q]uit altogether.
1275
1276 @node Build Server
1277 @chapter Build Server
1278
1279 The Build Server system isolates the builds for each package within a clean,
1280 isolated and secure throwaway virtual machine environment.
1281
1282 @section Overview
1283
1284 Building applications in this manner on a large scale, especially with the
1285 involvement of automated and/or unattended processes, could be considered
1286 a dangerous pastime from a security perspective. This is even more the case
1287 when the products of the build are also distributed widely and in a
1288 semi-automated ("you have updates available") fashion.
1289
1290 Assume that an upstream source repository is compromised. A small selection
1291 of things that an attacker could do in such a situation:
1292
1293 @enumerate
1294 @item
1295 Use custom ant build steps to execute virtually anything as the user doing
1296 the build.
1297 @item
1298 Access the keystore.
1299 @item
1300 Modify the built apk files or source tarballs for other applications in the
1301 repository.
1302 @item
1303 Modify the metadata (which includes build scripts, which again, also includes
1304 the ability to execute anything) for other applications in the repository.
1305 @end enumerate
1306
1307 Through complete isolation, the repurcussions are at least limited to the
1308 application in question. Not only is the build environment fresh for each
1309 build, and thrown away afterwards, but it is also isolated from the signing
1310 environment.
1311
1312 Aside from security issues, there are some applications which have strange
1313 requirements such as custom versions of the NDK. It would be impractical (or
1314 at least extremely messy) to start modifying and restoring the SDK on a
1315 multi-purpose system, but within the confines of a throwaway single-use
1316 virtual machine, anything is possible.
1317
1318 All this is in addition to the obvious advantage of having a standardised
1319 and completely reproducible environment in which builds are made. Additionally,
1320 it allows for specialised custom build environments for particular
1321 applications.
1322
1323 @section Setting up a build server
1324
1325 In addition to the basic setup previously described, you will also need
1326 a Vagrant-compatible Ubuntu Raring base box called 'raring32' (or raring64
1327 for a 64-bit VM, if you want it to be much slower, and require more disk
1328 space).
1329
1330 You can use a different version or distro for the base box, so long as you
1331 don't expect any help making it work. One thing to be aware of is that
1332 working copies of source trees are moved from the host to the guest, so
1333 for example, having subversion v1.6 on the host and v1.7 on the guest
1334 would fail.
1335
1336 Unless you're very trusting. you should create one of these for yourself
1337 from verified standard Ubuntu installation media. However, you could skip
1338 over the next few paragraphs (and sacrifice some security) by downloading 
1339 @url{https://f-droid.org/raring32.box} or @url{https://f-droid.org/raring64.box}.
1340
1341 Documentation for creating a base box can be found at
1342 @url{http://docs.vagrantup.com/v1/docs/base_boxes.html}.
1343
1344 In addition to carefully following the steps described there, you should
1345 consider the following:
1346
1347 @enumerate
1348 @item
1349 It is advisable to disable udev network device persistence, otherwise any
1350 movement of the VM between machines, or reconfiguration, will result in
1351 broken networking.
1352
1353 For a Debian/Ubuntu default install, just
1354 @code{touch /etc/udev/rules.d/75-persistent-net-generator.rules} to turn
1355 off rule generation, and at the same time, get rid of any rules it's
1356 already created in @code{/etc/udev/rules.d/70-persistent-net.rules}.
1357 @item
1358 Unless you want the VM to become totally inaccessible following a failed
1359 boot, you need to set @code{GRUB_RECORDFAIL_TIMEOUT} to a value other than
1360 -1 in @code{/etc/grub/default} and then run @code{update-grub}.
1361 @end enumerate
1362
1363 You may also want to edit @code{buildserver/Vagrantfile} - in particular
1364 there is a path for retrieving the base box if it doesn't exist, and an
1365 apt proxy definition, both of which may need customising for your
1366 environment.
1367
1368 With this base box available, you should then create @code{makebs.config.py},
1369 using @code{makebs.config.sample.py} as a reference - look at the settings and
1370 documentation there to decide if any need changing to suit your environment.
1371 You can then go to the @code{fdroidserver} directory and run this:
1372
1373 @example
1374 ./makebuildserver.py
1375 @end example
1376
1377 This will take a long time, and use a lot of bandwidth - most of it spent
1378 installing the necessary parts of the Android SDK for all the various
1379 platforms. Luckily you only need to do it occasionally. Once you have a
1380 working build server image, if the recipes change (e.g. when packages need
1381 to be added) you can just run that script again and the existing one will
1382 be updated in place.
1383
1384 The main sdk/ndk downloads will automatically be cached to speed things
1385 up the next time, but there's no easy way of doing this for the longer
1386 sections which use the SDK's @code{android} tool to install platforms,
1387 add-ons and tools. However, instead of allowing automatic caching, you
1388 can supply a pre-populated cache directory which includes not only these
1389 downloads, but also .tar.gz files for all the relevant additions. If the
1390 provisioning scripts detect these, they will be used in preference to
1391 running the android tools. For example, if you have
1392 @code{buildserver/addons/cache/platforms/android-15.tar.gz} that will be
1393 used when installing the android-15 platform, instead of re-downloading it
1394 using @code{android update sdk --no-ui -t android-15}.
1395
1396 Once it's complete you'll have a new base box called 'buildserver' which is
1397 what's used for the actual builds. You can then build packages as normal,
1398 but with the addition of the @code{--server} flag to @code{fdroid build} to
1399 instruct it to do all the hard work within the virtual machine.
1400
1401 The first time a build is done, a new virtual machine is created using the
1402 'buildserver' box as a base. A snapshot of this clean machine state is saved
1403 for use in future builds, to improve performance. You can force discarding
1404 of this snapshot and rebuilding from scratch using the @code{--resetserver}
1405 switch with @code{fdroid build}.
1406
1407 @node Signing
1408 @chapter Signing
1409
1410 There are two kinds of signing involved in running a repository - the signing
1411 of the APK files generated from source builds, and the signing of the repo
1412 index itself. The latter is optional, but very strongly recommended.
1413
1414 @section Repo Index Signing
1415
1416 When setting up the repository, one of the first steps should be to generate
1417 a signing key for the repository index. This will also create a keystore, which
1418 is a file that can be used to hold this and all other keys used. Consider the
1419 location, security and backup status of this file carefully, then create it as
1420 follows:
1421
1422 @code{keytool -genkey -v -keystore my.keystore -alias repokey -keyalg RSA -keysize 2048 -validity 10000}
1423
1424 In the above, replace 'my.keystore' with the name of the keystore file to be
1425 created, and 'repokey' with a name to identify the repo index key by.
1426
1427 You'll be asked for a password for the keystore, AND a password for the key.
1428 They shouldn't be the same. In between, you'll be asked for some identifying
1429 details which will go in the certificate.
1430
1431 The two passwords entered go into @code{config.py}, as @code{keystorepass} and
1432 @code{keypass} respectively. The path to the keystore file, and the alias you
1433 chose for the key also go into that file, as @code{keystore} and
1434 @code{repo_keyalias} respectively.
1435
1436 @section Package Signing
1437
1438 With the repo index signing configured, all that remains to be done for package
1439 signing to work is to set the @code{keydname} field in @code{config.py} to
1440 contain the same identifying details you entered before.
1441
1442 A new key will be generated using these details, for each application that is
1443 built. (If a specific key is required for a particular application, this system
1444 can be overridden using the @code{keyaliases} config settings.
1445
1446
1447 @node GNU Free Documentation License
1448 @appendix GNU Free Documentation License
1449
1450 @include fdl.texi
1451
1452 @node Index
1453 @unnumbered Index
1454
1455 @printindex cp
1456
1457 @bye