File tree Expand file tree Collapse file tree 4 files changed +5
-3
lines changed
SimpleNoSQL/src/main/java/com/colintmiller/simplenosql/toolbox Expand file tree Collapse file tree 4 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -102,7 +102,7 @@ repositories {
102
102
}
103
103
104
104
dependencies {
105
- compile 'com.colintmiller:simplenosql:0.5'
105
+ compile 'com.colintmiller:simplenosql:0.5.1 '
106
106
}
107
107
```
108
108
Original file line number Diff line number Diff line change @@ -37,6 +37,8 @@ public List<NoSQLEntity<T>> getSynchronousResults() {
37
37
/**
38
38
* Synchronous blocking call to get results with an additional timer option. You MUST have made a .retrieve() call
39
39
* with this object before calling this method or it will timeout after the specified time and return a null result.
40
+ * This call should never be made on the main thread.
41
+ *
40
42
* @param timeout the amount of time to wait for a timeout
41
43
* @param unit the specified unit to apply to the timeout
42
44
* @return the results of your query, waiting until the results arrive.
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ buildscript {
8
8
mavenCentral()
9
9
}
10
10
dependencies {
11
- classpath ' com.android.tools.build:gradle:1.0.0 '
11
+ classpath ' com.android.tools.build:gradle:1.1.1 '
12
12
13
13
// NOTE: Do not place your application dependencies here; they belong
14
14
// in the individual module build.gradle files
Original file line number Diff line number Diff line change 17
17
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
18
18
# org.gradle.parallel=true
19
19
20
- VERSION_NAME =0.5
20
+ VERSION_NAME =0.5.1
21
21
VERSION_CODE =2
22
22
GROUP =com.colintmiller
23
23
You can’t perform that action at this time.
0 commit comments