File tree Expand file tree Collapse file tree 1 file changed +1
-8
lines changed
samples/client/wordnik-api/android Expand file tree Collapse file tree 1 file changed +1
-8
lines changed Original file line number Diff line number Diff line change @@ -14,22 +14,20 @@ You can use maven central to add this library to your current project:
14
14
<dependency >
15
15
<groupId >com.wordnik</groupId >
16
16
<artifactId >wordnik-android-client</artifactId >
17
- <version >4.0.0 </version >
17
+ <version >4.0</version >
18
18
</dependency >
19
19
```
20
20
21
21
or with gradle:
22
22
23
23
``` gradle
24
-
25
24
repositories {
26
25
mavenCentral()
27
26
}
28
27
29
28
dependencies {
30
29
compile 'com.wordnik:wordnik-android-client:4.0'
31
30
}
32
-
33
31
```
34
32
35
33
or you can pull the source and re-generate the client library with Maven:
@@ -48,11 +46,6 @@ import android.os.AsyncTask;
48
46
import android.util.Log ;
49
47
50
48
class WordOfTheDayAsyncTask extends AsyncTask<Void , Void , WordOfTheDay > {
51
- FullscreenActivity activity = null ;
52
-
53
- public WordOfTheDayAsyncTask (FullscreenActivity activity ) {
54
- this . activity = activity;
55
- }
56
49
@Override
57
50
protected WordOfTheDay doInBackground (Void ... params ) {
58
51
WordsApi api = new WordsApi ();
You can’t perform that action at this time.
0 commit comments