1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-09-11 15:13:27 +02:00

Merge commit 'refs/merge-requests/67' of git://gitorious.org/f-droid/fdroidserver into merge-requests/67

This commit is contained in:
Ciaran Gultnieks 2012-02-22 15:14:47 +00:00
commit 8a5d918a83
2 changed files with 19 additions and 3 deletions

View File

@ -1,10 +1,10 @@
Category:System
Category:Internet
License:GPLv3
Web Site:http://www.sparkleshare.org
Source Code:https://github.com/NewProggie/SparkleShare-Android
Issue Tracker:https://github.com/NewProggie/SparkleShare-Android/issues
Summary:distributed collaboration and sharing tool
Summary:Distributed collaboration and sharing tool
Description:
SparkleShare is a collaboration and sharing tool that is designed to keep
things simple and to stay out of your way.
@ -16,7 +16,7 @@ browse your files right from your Android device.
Repo Type:git
Repo:https://github.com/NewProggie/SparkleShare-Android.git
Build Version:1.0,1,a9e23f0f9ae6161a786bf48cb48ab3dec20110c9,target=android-7
Build Version:1.0,1,a9e23f0f9ae6161a786bf48cb48ab3dec20110c9,patch=uses-feature.patch,target=android-7
Update Check Mode:Market
Current Version:1.0

View File

@ -0,0 +1,16 @@
Camera use is optional, don't disallow install on camera-less devices.
See right side pane at
http://developer.android.com/guide/topics/manifest/uses-permission-element.html
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index d020d9d..1b45bf1 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -8,6 +8,7 @@
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.CAMERA"/>
+ <uses-feature android:name="android.hardware.camera" android:required="false" />
<application
android:icon="@drawable/icon"
android:label="@string/app_name"