@@ -18,7 +18,7 @@ allprojects {
18
18
}
19
19
20
20
dependencies {
21
- implementation 'com.github.wdavies973:tba-api-v3:1.0.5 '
21
+ implementation 'com.github.wdavies973:tba-api-v3:1.0.6 '
22
22
}
23
23
```
24
24
@@ -29,9 +29,9 @@ This API also requires json-simple. Download the .jar file at https://code.googl
29
29
30
30
# Overview
31
31
TBA-API-V3 is modeled exactly off of the API specifications described at https://www.thebluealliance.com/apidocs/v3 . All API
32
- calls found on this page are implemented in Java (or will be soon) . Models can be found in the ``` models ``` package, if a model
32
+ calls found on this page are implemented in Java. Models can be found in the ``` models ``` package, if a model
33
33
begins with a 'S', it represents a ``` simple ``` model as defined by the V3 API. To get started using the API, set the
34
- API read AUTH token with ` Constants.AUTH = "<auth-token>"` . Create a ``` TBA ``` object for usage with no constructors (better if parameters
34
+ API read AUTH token with ` TBA.setAuthToken( "<auth-token>") ` . Create a ``` TBA ``` object for usage with no constructors (better if parameters
35
35
will be changed frequently) and a ``` CTBA ``` object for usage with constructors (better if parameters won't be changed frequently).
36
36
For more information, visit the wiki at https://www.github.com/wdavies973/TBA-API-V3/wiki .
37
37
@@ -50,12 +50,11 @@ StrictMode.ThreadPolicy policy = new StrictMode.ThreadPolicy.Builder().permitNet
50
50
Make sure you make API calls in an ``` AsyncTask ```
51
51
52
52
# Tutorial and Examples
53
- Find them at https://www.github.com/wdavies973/TBA-API-V3/wiki .
54
- The API is designed to be easy to use and fairly idiot-proof (no offense, I wish everyone designed their software like that).
53
+ Find them at https://www.github.com/wdavies973/TBA-API-V3/wiki .
55
54
56
- # Contribute
57
- There are about 5 API calls that haven't been implemented yet. JUnit tests and more would also be useful .
58
- I would greatly appreciate any help towards making this API a solid interface for the V3 API for the years to come .
55
+ # Future
56
+ I plan on supporting this project continually since it's used extensively in my scouting app over at https://www.roblu.net .
57
+ Any contributions are welcome, including bug reports, feature requests, or code contributions .
59
58
60
59
# Other
61
60
Report any bugs or suggestions to
[email protected]
0 commit comments