Name |
Date |
Size |
#Lines |
LOC |
||
---|---|---|---|---|---|---|
.. | - | - | ||||
app/ | H | 25-Apr-2025 | - | 410 | 315 | |
gradle/wrapper/ | H | 25-Apr-2025 | - | 7 | 6 | |
README.md | H A D | 25-Apr-2025 | 632 | 16 | 12 | |
build.gradle | H A D | 25-Apr-2025 | 681 | 28 | 23 | |
gradle.properties | H A D | 25-Apr-2025 | 989 | 25 | 19 | |
gradlew | H A D | 25-Apr-2025 | 8.3 KiB | 245 | 101 | |
gradlew.bat | H A D | 25-Apr-2025 | 2.7 KiB | 93 | 71 | |
settings.gradle | H A D | 25-Apr-2025 | 15 | 2 | 1 |
README.md
1# Android Hello World 2 3This is a simple app that allows encrypting and decrypting strings 4with keys stored in private shared preferences. On Android M or newer 5the keys are further encrypted with a master key stored in Android 6Keystore. 7 8It demonstrates the basic steps of using Tink, namely generating or 9loading key material, obtaining a primitive, and using the primitive 10to do crypto. It also shows how one can add a dependency on Tink 11using Gradle. 12 13The easiest way to build this app is to import it to Android Studio. You can 14also 15[build it from the command line](https://developer.android.com/studio/build/building-cmdline). 16