Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: archansel/TimeSense
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0.1
Choose a base ref
...
head repository: archansel/TimeSense
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 3 commits
  • 3 files changed
  • 1 contributor

Commits on Mar 26, 2017

  1. Copy the full SHA
    93ec578 View commit details
  2. Copy the full SHA
    ed8c90e View commit details
  3. Update license

    archansel committed Mar 26, 2017
    Copy the full SHA
    9e9dca1 View commit details
Showing with 21 additions and 3 deletions.
  1. +1 −1 LICENSE
  2. +19 −1 README.md
  3. +1 −1 app/build.gradle
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2017 GARUDA WISNU KENCANA
Copyright (c) 2017 Anselmus KA Kurniawan

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
20 changes: 19 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -4,8 +4,26 @@ Easy to use event detection based on time. Time Sense provide default set of rul

## Install

Add jitpack repository
```gradle
repositories {
// another repositories
maven { url 'https://jitpack.io' }
}
```

Add dependencies in build.gradle file
```gradle
dependencies {
// another dependencies
compile 'com.github.archansel:TimeSense:0.1'
}
```

## Usage

See example project.

## API

### TSRule
@@ -142,7 +160,7 @@ Listener methods:

MIT License

Copyright (c) 2017 GARUDA WISNU KENCANA
Copyright (c) 2017 Anselmus KA Kurniawan

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
@@ -26,6 +26,6 @@ dependencies {
})
compile 'com.android.support:appcompat-v7:25.3.0'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
compile project(':timesense')
compile 'com.github.archansel:TimeSense:0.1'
testCompile 'junit:junit:4.12'
}