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