Skip to content

Commit

Permalink
[INTEGRATION] Prepared release 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
djavan-bertrand committed Aug 11, 2017
1 parent 1c991de commit 3d31fbc
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 9 deletions.
15 changes: 12 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Simply add the dependency to the jcvd library in the build.gradle.
```
dependencies {
// ...
compile 'com.sousoum:jcvd:1.0.0'
compile 'com.sousoum:jcvd:1.1.0'
}
```

Expand All @@ -54,7 +54,7 @@ Then add the dependency to the jcvd library in the build.gradle.
```
dependencies {
// ...
compile 'com.github.djavan-bertrand:JCVD:1.0.0'
compile 'com.github.djavan-bertrand:JCVD:1.1.0'
}
```

Expand Down Expand Up @@ -137,7 +137,15 @@ StorableTimeFence.inDailyInterval((TimeZone)timeZone, (long)startTimeOfDayMillis
```
or
```
StorableTimeFence.inMondayInterval((TimeZone)timeZone, (long)startTimeOfDayMillis, (long)stopTimeOfDayMillis);
StorableTimeFence.inIntervalOfDay(TimeFence.DAY_OF_WEEK_MONDAY, (TimeZone)timeZone, (long)startTimeOfDayMillis, (long)stopTimeOfDayMillis);
```
or
```
StorableTimeFence.inTimeInterval(TimeFence.TIME_INTERVAL_WEEKDAY);
```
or
```
StorableTimeFence.aroundTimeInstant(TimeFence.TIME_INSTANT_SUNRISE, (long)startOffsetMillis, (long)stopOffsetMillis);
```

#### Headphone fence
Expand Down Expand Up @@ -213,3 +221,4 @@ You can also [open an issue on Github](https://github.com/djavan-bertrand/JCVD/i
Here is a list of known TODOs. If you think an improvement is missing, feel free to [open an issue](https://github.com/djavan-bertrand/JCVD/issues/new).

* Improve demo
* Support BeaconFence
4 changes: 2 additions & 2 deletions example/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ android {
applicationId "com.sousoum.jcvdexample"
minSdkVersion 14
targetSdkVersion 26
versionCode 1
versionName "1.0"
versionCode 2
versionName "1.1.0"
}
buildTypes {
release {
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
# org.gradle.parallel=true
group=com.sousoum
version=1.0.0
releaseTag=1.0.0
version=1.1.0
releaseTag=1.1.0
4 changes: 2 additions & 2 deletions jcvd/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ android {
defaultConfig {
minSdkVersion 14
targetSdkVersion 26
versionCode 1
versionName "1.0"
versionCode 2
versionName "1.1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
Expand Down

0 comments on commit 3d31fbc

Please sign in to comment.