Go to file
Carmen Alvarez c6fb78ea32 Removed prebuild sed patch from ca.rmen.android.frenchcalendar.txt.
This is not needed. In addition to only declaring the google
play services dependency in the wear flavor (not used in frdoid),
like this:

```
wearCompile 'com.google.android.gms:play-services:6.1.71'
```

there is an additional check to ensure that this line is not
even executed, as long as at least one of the tasks in the
gradle command line contains the string "foss".

In settings.gradle:

```
boolean includeWear=true;
// If we are building with a "foss" task, don't include the wearable module.
for(String taskName : startParameter.taskNames) {
    if(taskName.contains("Foss"))
        includeWear=false;
}
include ':handheld', ':common'
if(includeWear)
  include ':wearable'
```

In handheld/build.gradle:
```
    // Package the wear apk inside this one (only for the 'wear' flavor)
    if(rootProject.findProject("wearable") != null) {
        wearCompile 'com.google.android.gms:play-services:6.1.71'
        wearWearApp project(':wearable')
    }
```

I understand that most projects with proprietary vs foss flavors
don't have this additional check, which is why the sed patch is
usually needed.
2015-11-08 23:25:21 +01:00
build Remove all trailing spaces 2015-08-17 22:21:03 -07:00
hooks Add lint to pre-commit hook 2015-10-05 11:37:14 +02:00
metadata Removed prebuild sed patch from ca.rmen.android.frenchcalendar.txt. 2015-11-08 23:25:21 +01:00
srclibs Surespot: Clean build 2015-11-05 22:23:54 +01:00
stats Update known apks 2015-11-08 09:50:07 +00:00
templates Add ant, maven and gradle simple build templates 2015-08-18 16:56:26 -07:00
tools Add lint to pre-commit hook 2015-10-05 11:37:14 +02:00
.gitignore Add keystores to gitignore 2015-07-19 09:47:35 -07:00
.gitlab-ci.yml CI: fix path typo 2015-09-11 18:41:15 -07:00
CONTRIBUTING.md CONTRIBUTING: mention CI results 2015-09-11 18:38:44 -07:00
fdroid-icon.png
LICENSE Rename COPYING to LICENSE 2015-08-24 10:37:08 -07:00
README.md fix typo in README command line 2015-10-13 13:46:42 +02:00

F-Droid Data

build status

This repository holds general and build information for all the apps on our main repo on f-droid.org.

Quickstart

Clone fdroidserver:

git clone https://gitlab.com/fdroid/fdroidserver.git

Add the cloned dir to your PATH:

export PATH="$PATH:$PWD/fdroidserver"

Enter it:

cd fdroiddata

An empty configuration file should work as a start:

touch config.py

Make sure fdroid works and reads the metadata files properly:

fdroid readmeta

Contributing

See the Contributing doc.

More information

You can find more details on the manual.