Go to file
Marino Meneghel 215edbf4f9 Merge branch 'chore/bump-version' into 'develop'
Bump version to 3.0.17 (939)

See merge request android/mail/proton-mail-android!1291
2023-10-03 11:12:07 +00:00
.github/ISSUE_TEMPLATE Fix: Updates Bug report issue template to be relevant to the repository 2020-08-11 17:19:14 +00:00
.idea Add google play review dependency 2023-04-12 11:59:10 +00:00
app i18n: Upgrade translations from crowdin (fb51066e). 2023-10-02 06:18:24 +00:00
buildSrc Bump version to 3.0.17 (939) 2023-10-03 12:20:01 +02:00
config Update copyright 2022-05-23 21:01:57 +00:00
docs Add 0010-backticks-for-junit-tests.md ADR 2021-11-04 10:38:53 +00:00
domain Upgraded Turbine to 0.12.1. 2023-01-17 10:23:31 +01:00
gradle/wrapper Upgraded Gradle Wrapper to 7.6. 2023-01-16 07:52:06 +00:00
scripts Update copyright 2022-05-23 21:01:57 +00:00
sharedTest Update Copyright for all files in the project 2022-05-23 21:01:57 +00:00
tokenAutoComplete Configure to latest core changes 2022-10-26 13:58:28 +00:00
.gitignore Add Detekt config to .gitignore 2022-01-20 15:35:45 +00:00
.gitlab-ci.yml Update CI runner docker image to v1.1.0 2023-03-31 14:05:30 +02:00
.java-version Update Jenv Java version [14.0.1] -> [openjdk64-15.0.1] 2022-03-25 14:32:10 +00:00
LICENSE Initial commit 2020-04-16 17:44:53 +02:00
README.md Change app name to fix with rebrand 2022-05-23 21:01:57 +00:00
build.gradle.kts feat: Added Unauthenticated Session support. 2023-01-26 16:57:21 +00:00
experimental.properties Update copyright 2022-05-23 21:01:57 +00:00
gradle.properties Replaced Git Submodules by Include Core Build Gradle Plugin. 2022-11-30 14:06:09 +00:00
gradlew Upgraded Gradle Wrapper to 7.6. 2023-01-16 07:52:06 +00:00
gradlew.bat Upgraded Gradle Wrapper to 7.6. 2023-01-16 07:52:06 +00:00
settings.gradle.kts feat: Added Unauthenticated Session support. 2023-01-26 16:57:21 +00:00

README.md

Proton Mail for Android

Copyright (c) 2020 Proton AG

License

The code and data files in this distribution are licensed under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. See https://www.gnu.org/licenses/ for a copy of this license.

See LICENSE file

Setup

The most straightforward way to build and run this application is to:

  • Install Android Studio: https://developer.android.com/studio/install
  • Clone the repository. You have two options:
    • Use the Project from version control in Android Studio, or
    • Use the git clone command and import it into Android Studio
  • Build and run the app directly in Android Studio

Alternatively, if you want to build the app directly from the command line (or using a different IDE, etc.), you will first need to install the command line tools from: https://developer.android.com/studio#cmdline-tools. Then you will need to install the SDK using the sdkmanager tool. After cloning the repository with git clone you will need to edit the local.properties file so that it points to the location of the SDK. Depending on which operating systems you use, the location of the SDK is usually:

  • Windows: C:\Users\<username>\AppData\Local\Android\sdk
  • MacOS: /Users/<username>/Library/Android/Sdk/
  • Linux: /home/<username>/Android/Sdk/

Then, go to the apps root directory in the command line tool and run:

  • ./gradlew assembleBetaDebug
  • adb install ./app/build/outputs/apk/beta/debug/ProtonMail-Android-1.XX.X-beta-debug.apk

Note: In app notifications when building from source

When building from source, in app push notifications for new emails will not work out of the box.

The app uses Google's Firebase Cloud Messaging (FCM) service to deliver push notifications. However, we are not publishing the production version of the configuration files needed to set up this service, because the values specified within are deemed sensitive. Instead, we publish dummy versions of the files (config/google-services/dummy-google-services.json and config/google-services/dummy-google-services-beta.json) which allows you to build the app without push notifications. The dummy files will be copied to the relevant folders once you run the ./gradlew command.

We may offer alternative push notification systems in the future which do not rely on Google services.

Contributions

Contributions are appreciated, but must conform to Proton Guidelines.

Branch naming

Branch names must respect the pattern type/description-of-the-change.

Type must be one of the following:

  • chore for changes not related to the Kotlin source code, for example a change in the build config
  • doc for changes related to source code documentation, or external document, like the README
  • feat for a new feature for the app
  • fix for bug fixes
  • refactor for improving one or more unit of code, without impacting the behaviour of the app
  • test for everything related to test ( add a new test suite, add a new test into an already existing test suite or improve/modify the performance or the behaviour of an already existing test )

description of change must be a concise and meaningful description of what is expected by the change apported; words must be separated by a dash -

The whole name of the branch must be lower case.

Commit message

The template for a commit message is the following

<Title of the commit>

#comment <Description of the changes>
Affected: <List of affected classes or behaviours>

Title is required and must start with a capital letter.

#comment field is optional if the Title can exhaustively explain the changes, otherwise is required. Body of the comment must start with a capital letter.

Affected is optional and must be a comma separated list of the elements affected by the changes, it could be the name of a class or a behaviour like Encryption, Login flow, LoginActivity.kt

Code style and pattern

The code must conform the standards defined in the files config/CodeStyle.xml and config/detekt.xml.

CodeStyle.xml can be imported in the IDE ( Preferences -> Editor -> Code Style -> Import scheme for IntelliJ and Android Studio ).

Detekt reports can be generated with the command ./gradlew detekt. Check Detekt GitHub documentation for know how to download and configure the optional IDE plugin.

Copyright (c) 2020 Proton Technologies AG