diff --git a/README.md b/README.md index e0b8605..9c61763 100644 --- a/README.md +++ b/README.md @@ -14,13 +14,13 @@ To do so, add the following to your app module's `build.gradle` file: ```groovy dependencies { ... - compile 'com.satsuware.lib:usefulviews:2.0' + compile 'com.satsuware.lib:usefulviews:2.0.0' } ``` ## Usage -# LabelledSpinner +### LabelledSpinner Below is a basic example of how `LabelledSpinner` can be used. There is also a sample app [you can view on this repository](https://github.com/FarbodSalamat-Zadeh/LabelledSpinner/tree/master/sample), showcasing `LabelledSpinner`'s features in more detail. diff --git a/library/build.gradle b/library/build.gradle index cc25978..cc2c4c4 100644 --- a/library/build.gradle +++ b/library/build.gradle @@ -46,7 +46,7 @@ publish { // Library will be used in the following format: // compile '(publishedGroupId):(artifact):(libraryVersion)' userOrg = 'farbodsalamat-zadeh' - groupId = 'com.satsuware.lib' // to avoid confusion, same name as project dir' + groupId = 'com.satsuware.lib' artifactId = 'usefulviews' publishVersion = '2.0.0' desc = 'A collection of useful widgets for Android.' diff --git a/sample/build.gradle b/sample/build.gradle index 364fd60..fd2460a 100644 --- a/sample/build.gradle +++ b/sample/build.gradle @@ -39,6 +39,6 @@ dependencies { compile fileTree(include: ['*.jar'], dir: 'libs') testCompile 'junit:junit:4.12' compile 'com.android.support:appcompat-v7:23.2.1' - //compile 'com.satsuware.lib:usefulviews:2.0.0' - compile project(':library') // Used when testing latest features of library module + compile 'com.satsuware.lib:usefulviews:2.0.0' + //compile project(':library') // Used when testing latest features of library module }