Skip to content
This repository has been archived by the owner on Mar 25, 2018. It is now read-only.

Commit

Permalink
Optimise imports, and other small changes
Browse files Browse the repository at this point in the history
  • Loading branch information
farbodsz committed Mar 27, 2016
1 parent dc2491d commit a655a33
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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.'
Expand Down
4 changes: 2 additions & 2 deletions sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

0 comments on commit a655a33

Please sign in to comment.