1
0
Fork 0
mirror of https://github.com/pgpainless/pgpainless.git synced 2024-06-25 21:14:49 +02:00

Update index

This commit is contained in:
Paul Schaub 2018-08-15 19:04:48 +02:00
parent 2ec62a9567
commit 23296eb293
Signed by: vanitasvitae
GPG key ID: 62BEE9264BF17311

View file

@ -9,6 +9,9 @@ PGPainless was created [during a Google Summer of Code project](https://vanitasv
One main focus of the project is ease of use. Using Bouncycastle can be a hassle, since simple tasks require a substantial amount of boilerplate code and small mistakes are easily made. PGPainless aims at providing a simple interface to get the job done quickly, while not trading away functionality.
For examples about how to use the API, see the projects
[readme](https://github.com/pgpainless/pgpainless/blob/master/README.md).
### Android Support
PGPainless is designed to work on Android versions down to [API level 9](https://developer.android.com/about/versions/android-2.3) (Gingerbread). This makes PGPainless a good choice for implementing OpenPGP encryption in your Android app.
@ -22,7 +25,7 @@ Maven:
<dependency>
<groupId>org.pgpainless</groupId>
<artifactId>pgpainless-core</artifactId>
<version>0.0.1-alpha2</version>
<version>0.0.1-alpha3</version>
</dependency>
```
@ -33,7 +36,7 @@ repositories {
}
dependencies {
compile 'org.pgpainless:pgpainless-core:0.0.1-alpha2'
compile 'org.pgpainless:pgpainless-core:0.0.1-alpha3'
}
```