Skip to content

Commit 86efb71

Browse files
committed
updated readme
1 parent 0899b08 commit 86efb71

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

samples/client/wordnik-api/android/README.md

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,22 +14,20 @@ You can use maven central to add this library to your current project:
1414
<dependency>
1515
<groupId>com.wordnik</groupId>
1616
<artifactId>wordnik-android-client</artifactId>
17-
<version>4.0.0</version>
17+
<version>4.0</version>
1818
</dependency>
1919
```
2020

2121
or with gradle:
2222

2323
```gradle
24-
2524
repositories {
2625
mavenCentral()
2726
}
2827
2928
dependencies {
3029
compile 'com.wordnik:wordnik-android-client:4.0'
3130
}
32-
3331
```
3432

3533
or you can pull the source and re-generate the client library with Maven:
@@ -48,11 +46,6 @@ import android.os.AsyncTask;
4846
import android.util.Log;
4947

5048
class WordOfTheDayAsyncTask extends AsyncTask<Void, Void, WordOfTheDay> {
51-
FullscreenActivity activity = null;
52-
53-
public WordOfTheDayAsyncTask(FullscreenActivity activity) {
54-
this.activity = activity;
55-
}
5649
@Override
5750
protected WordOfTheDay doInBackground(Void... params) {
5851
WordsApi api = new WordsApi();

0 commit comments

Comments
 (0)