From d570d9b0ef61077f5812ec7edc4db6f22101453a Mon Sep 17 00:00:00 2001 From: Hardcore Sushi Date: Tue, 16 Mar 2021 16:33:11 +0100 Subject: [PATCH] Explaining permissions in fastlane --- README.md | 8 ++++---- .../metadata/android/en-US/full_description.txt | 13 +++++++++++++ 2 files changed, 17 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 80d40c7..78ff76a 100644 --- a/README.md +++ b/README.md @@ -61,7 +61,7 @@ DroidFS need some permissions to work properly. Here is why: Required to encrypt/decrypt password hashes using a fingerprint protected key.
  • Camera:

    - Needed to take photos directly from DroidFS to import them securely. + Needed to take photos directly from DroidFS to import them securely. You can deny this permission if you don't want to use it.
  • @@ -71,7 +71,7 @@ Most of the original gocryptfs code was used as is (written in Go) and compiled #### Install Requirements - [Android Studio](https://developer.android.com/studio/) - [Android NDK and CMake](https://developer.android.com/studio/projects/install-ndk) -- [Go](https://golang.org/doc/install) +- [Go](https://golang.org/doc/install) (on debian: `$ sudo apt-get install golang-go`) #### Download Sources ``` @@ -87,11 +87,11 @@ $ wget -qO - https://www.openssl.org/source/openssl-1.1.1h.tar.gz | tar -xvzf - First, we need to build libgocryptfs.
    For this, we will need to install some dependencies: ``` -sudo apt-get install libcrypto++-dev libssl-dev pkg-config +$ sudo apt-get install libcrypto++-dev libssl-dev pkg-config ``` And also Go dependencies: ``` -go get golang.org/x/sys/unix golang.org/x/sys/cpu golang.org/x/crypto/hkdf +$ go get golang.org/x/sys/unix golang.org/x/sys/cpu golang.org/x/crypto/hkdf ``` Then, retrieve your Android NDK installation path, usually someting like "/home/\/AndroidSDK/ndk/\". We can now start the build process: ``` diff --git a/fastlane/metadata/android/en-US/full_description.txt b/fastlane/metadata/android/en-US/full_description.txt index 95e132b..68d07ed 100644 --- a/fastlane/metadata/android/en-US/full_description.txt +++ b/fastlane/metadata/android/en-US/full_description.txt @@ -1,6 +1,19 @@ DroidFS allows you to create encrypted virtual volumes on which you can safely store and access files. Currently, DroidFS supports only gocryptfs. This algorithm protects file contents and file names but doesn't hide directory structure or file sizes. If you want more details, take a look on their github repository. +Permissions: +
      +
    • + Read & write access to shared storage: required for creating, opening and modifying volumes and for importing/exporting files to/from volumes. +
    • +
    • + Biometric/Fingerprint hardware: required to encrypt/decrypt password hashes using a fingerprint protected key. +
    • +
    • + Camera: needed to take photos directly from DroidFS to import them securely. You can deny this permission if you don't want to use it. +
    • +
    + DroidFS is free, open-source, and you can find the project's repository on github or on the gitea instance of the Chapril project. Warning !