From be67804971387218f460f3f3b714360160b08517 Mon Sep 17 00:00:00 2001 From: Brian Estrada Date: Tue, 17 Apr 2018 14:58:10 +0200 Subject: [PATCH] Version Bump --- README.md | 2 +- locksmith/build.gradle | 2 +- locksmith/maven-push.gradle | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 9b61036..2d93234 100644 --- a/README.md +++ b/README.md @@ -134,7 +134,7 @@ The following methods are available for encrypting/decrypting data // Long Encrypt/Decrypt Locksmith.getInstance().encryptLong(data: Long): String Locksmith.getInstance().decryptLong(data: String): Long -```. +``` ***Note: if you're using kotlin you need to be sure to catch `LocksmithEncryptionException` and handle the errors appropriately (see the section below for how to do that)*** diff --git a/locksmith/build.gradle b/locksmith/build.gradle index 7d147ea..c2e5e33 100644 --- a/locksmith/build.gradle +++ b/locksmith/build.gradle @@ -8,7 +8,7 @@ android { compileSdkVersion 27 defaultConfig { - minSdkVersion 21 + minSdkVersion 19 targetSdkVersion 27 versionCode 1 versionName "1.0" diff --git a/locksmith/maven-push.gradle b/locksmith/maven-push.gradle index f91df18..b15fc0b 100644 --- a/locksmith/maven-push.gradle +++ b/locksmith/maven-push.gradle @@ -12,7 +12,7 @@ allprojects { ext."signing.password" = System.getenv('password') } // Artifact settings def _group = 'dk.nodes.locksmith' -def _version = '1.0.3' +def _version = '1.0.4' def _archivesBaseName = 'core' def _name = 'Locksmith Encryption Library'