Remove some outdated test files to fix godot build
The godot engine version 1.0 uses openssl version 1.0.1h
which still bundles files like "crypto/pkcs7/p7/a2"
that are seen as binary by the scanner.
As these files aren't really needed for anything,
and even upstream openssl has deleted them in their
commit
7be6b27aaf
"Remove ancient obsolete files under pkcs7."
they can be safely scandeleted.
This is an attempt to get godot based apps build again.
See merge request !1049
The godot engine version 1.0 uses openssl version 1.0.1h
which still bundles files like "crypto/pkcs7/p7/a2"
that are seen as binary by the scanner.
As these files aren't really needed for anything,
and even upstream openssl has deleted them in their
commit
7be6b27aaf
"Remove ancient obsolete files under pkcs7."
they can be safely scandeleted.
This is an attempt to get godot based apps build again.
Added com.traffar.Pentago (+ a new version of Gomoku).
Added a new com.traffar board game Pentago.
Updated version of Gomoku to 0.4
See merge request !1047
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.
See merge request !1044