Skip to content

Commit

Permalink
Fixed module name
Browse files Browse the repository at this point in the history
  • Loading branch information
mrmike committed Feb 5, 2016
1 parent 927e899 commit eb7d26e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -11,9 +11,9 @@ repositories {
dependencies {
// snapshot version
compile 'com.github.mrmike:Ok2Curl:master-SNAPSHOT'
compile 'com.github.mrmike:ok2curl:master-SNAPSHOT'
// or use specific version
compile 'com.github.mrmike:Ok2Curl:0.2.1'
compile 'com.github.mrmike:ok2curl:0.2.1'
}
```

Expand Down
6 changes: 3 additions & 3 deletions sample/build.gradle
Expand Up @@ -31,17 +31,17 @@ repositories {
}

dependencies {
compile project(':Ok2Curl')
compile project(':ok2curl')

/**
* compile 'com.github.mrmike:Ok2Curl:master-SNAPSHOT'
* compile 'com.github.mrmike:ok2curl:master-SNAPSHOT'
*/

/**
* Ok2Curl is packed with the latest version of OkHttp. If you already have OkHttp declared in
* your dependencies or want to use different version simply add exclude module.
*
* compile ('com.github.mrmike:Ok2Curl:master-SNAPSHOT') {
* compile ('com.github.mrmike:ok2curl:master-SNAPSHOT') {
* exclude module: 'okhttp'
* }
*/
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle
@@ -1 +1 @@
include ':sample', ':Ok2Curl'
include ':sample', ':ok2curl'

0 comments on commit eb7d26e

Please sign in to comment.