mirror of
https://github.com/sudoxnym/fdroiddata.git
synced 2026-05-20 20:59:11 +00:00
Merge branch 'vko_add_boinc' into 'master'
[BOINC] Add new application See merge request fdroid/fdroiddata!8413
This commit is contained in:
commit
1eb9bec10d
4 changed files with 92 additions and 0 deletions
59
metadata/edu.berkeley.boinc.yml
Normal file
59
metadata/edu.berkeley.boinc.yml
Normal file
|
|
@ -0,0 +1,59 @@
|
|||
Categories:
|
||||
- Science & Education
|
||||
License: LGPL-3.0-or-later
|
||||
AuthorName: University of California, Berkeley
|
||||
AuthorWebSite: https://boinc.berkeley.edu/
|
||||
WebSite: https://boinc.berkeley.edu/
|
||||
SourceCode: https://github.com/BOINC/boinc
|
||||
IssueTracker: https://github.com/BOINC/boinc/issues
|
||||
Translation: https://www.transifex.com/boinc/boinc/dashboard/
|
||||
|
||||
AutoName: BOINC
|
||||
Description: |-
|
||||
Use your phone or tablet to study diseases, predict global warming, or
|
||||
discover pulsars! BOINC harnesses the unused computing power of your Android
|
||||
device and runs jobs for scientific research projects. You can choose from
|
||||
projects in several areas of science, including Yoyo@Home, World Community
|
||||
Grid, PrimeGrid, Enigma@Home, OProject@Home, theSkyNet POGS, Asteroids@Home,
|
||||
and Einstein@Home.
|
||||
|
||||
BOINC computes only when your device is plugged in and charged, so it won't
|
||||
run down your battery. It transfers data over WiFi, so it won't use up your
|
||||
cell phone plan's data limit.
|
||||
|
||||
RepoType: git
|
||||
Repo: https://github.com/BOINC/boinc
|
||||
|
||||
Builds:
|
||||
- versionName: 7.16.16
|
||||
versionCode: 71616
|
||||
commit: client_release/7.16/7.16.16
|
||||
subdir: android/BOINC/
|
||||
patch:
|
||||
- fix-version.patch
|
||||
- remove-xiaomi.patch
|
||||
gradle:
|
||||
- yes
|
||||
output: app/build/outputs/apk/release/app-release-unsigned.apk
|
||||
prebuild:
|
||||
- cd ..
|
||||
- ./buildAndroidBOINC-CI.sh --silent --ci --arch arm
|
||||
- ./buildAndroidBOINC-CI.sh --silent --ci --arch arm64
|
||||
- ./buildAndroidBOINC-CI.sh --silent --ci --arch x86
|
||||
- ./buildAndroidBOINC-CI.sh --silent --ci --arch x86_64
|
||||
- cd BOINC
|
||||
scanignore:
|
||||
- 3rdParty
|
||||
- android
|
||||
- lib
|
||||
- api
|
||||
- client
|
||||
- stage
|
||||
- samples
|
||||
- clientscr
|
||||
- clientgui/res
|
||||
|
||||
AutoUpdateMode: None
|
||||
UpdateCheckMode: Static
|
||||
CurrentVersion: 7.16.16
|
||||
CurrentVersionCode: 71616
|
||||
1
metadata/edu.berkeley.boinc/en-US/summary.txt
Normal file
1
metadata/edu.berkeley.boinc/en-US/summary.txt
Normal file
|
|
@ -0,0 +1 @@
|
|||
Use your device to advance scientific research.
|
||||
15
metadata/edu.berkeley.boinc/fix-version.patch
Normal file
15
metadata/edu.berkeley.boinc/fix-version.patch
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
diff --git a/android/BOINC/app/build.gradle b/android/BOINC/app/build.gradle
|
||||
index 9325404a2a..b832587738 100644
|
||||
--- a/android/BOINC/app/build.gradle
|
||||
+++ b/android/BOINC/app/build.gradle
|
||||
@@ -73,8 +73,8 @@ android {
|
||||
applicationId "edu.berkeley.boinc"
|
||||
minSdkVersion 16
|
||||
targetSdkVersion 28
|
||||
- versionCode buildVersionCode().toInteger()
|
||||
- versionName buildVersionName()
|
||||
+ versionCode 71616
|
||||
+ versionName "7.16.16"
|
||||
|
||||
// Required when setting minSdkVersion to 20 or lower
|
||||
multiDexEnabled true
|
||||
17
metadata/edu.berkeley.boinc/remove-xiaomi.patch
Normal file
17
metadata/edu.berkeley.boinc/remove-xiaomi.patch
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
diff --git a/android/BOINC/app/build.gradle b/android/BOINC/app/build.gradle
|
||||
index 9325404a2a..032a702d94 100644
|
||||
--- a/android/BOINC/app/build.gradle
|
||||
+++ b/android/BOINC/app/build.gradle
|
||||
@@ -94,12 +94,6 @@ android {
|
||||
testCoverageEnabled true
|
||||
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules-debug.txt'
|
||||
}
|
||||
- xiaomi_release {
|
||||
- initWith release
|
||||
- }
|
||||
- xiaomi_debug {
|
||||
- initWith debug
|
||||
- }
|
||||
}
|
||||
compileOptions {
|
||||
sourceCompatibility '1.8'
|
||||
Loading…
Reference in a new issue