diff --git a/README.md b/README.md index fcee93d..1226187 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ Find more about our motivations [here](http://tvbarthel.fr/IntentShare/). # Gradle dependency available on jcenter. ```groovy -compile 'fr.tvbarthel.intentshare:library:0.0.1' +compile 'fr.tvbarthel.intentshare:library:0.0.2' ``` dependencies @@ -214,7 +214,7 @@ Default icon loader used to load target activities icons is based on AsyncTask. ## Picasso If your are already using Picasso, you may want to consider using PicassoIconLoader: ```groovy -compile 'fr.tvbarthel.intentshare:picasso-loader:0.0.1' +compile 'fr.tvbarthel.intentshare:picasso-loader:0.0.2' ``` ```java @@ -228,7 +228,7 @@ IntentShare.with(context) ## Glide If your are already using Glide, you may want to consider using GlideIconLoader: ```groovy -compile 'fr.tvbarthel.intentshare:glide-loader:0.0.1' +compile 'fr.tvbarthel.intentshare:glide-loader:0.0.2' ``` ```java diff --git a/build.gradle b/build.gradle index a8f26b7..794acdf 100644 --- a/build.gradle +++ b/build.gradle @@ -29,6 +29,6 @@ ext { compileSdkVersion = 23 targetSdkVersion = 23 minSdkVersion = 16 - versionCode = 1 - versionName = "0.0.1" + versionCode = 2 + versionName = "0.0.2" } diff --git a/sample/build.gradle b/sample/build.gradle index e9a6e4e..4ae107b 100644 --- a/sample/build.gradle +++ b/sample/build.gradle @@ -8,8 +8,8 @@ android { applicationId "fr.tvbarthel.intentsharesample" minSdkVersion 16 targetSdkVersion 23 - versionCode 2 - versionName "1.1" + versionCode 3 + versionName "1.2" } buildTypes { release {