Skip to content

Commit

Permalink
fix some settings
Browse files Browse the repository at this point in the history
  • Loading branch information
heesung6701 committed Mar 2, 2020
1 parent 581f15c commit f7836c5
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 3 deletions.
22 changes: 21 additions & 1 deletion README.MD
Original file line number Diff line number Diff line change
@@ -1 +1,21 @@
# TimePicker
[![Release](https://jitpack.io/v/heesung6701/TimePicker.svg)]
(https://jitpack.io/v/heesung6701/TimePicker.svg)


## Setup
Add the JitPack repository in your build.gradle (top level module):
```gradle
allprojects {
repositories {
jcenter()
maven { url "https://jitpack.io" }
}
}
```

And add next dependencies in the build.gradle of the module:
```gradle
dependencies {
implementation 'com.github.heesung6701:TimePicker:0.0.1'
}
```
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ dependencies {
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.core:core-ktx:1.2.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation 'com.github.heesung6701:TimePicker:0.0.2'
implementation project(':library')
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ buildscript {
dependencies {
classpath 'com.android.tools.build:gradle:3.6.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5'
classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
}
}

Expand Down
6 changes: 6 additions & 0 deletions library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -38,3 +38,9 @@ dependencies {

apply plugin: 'com.github.dcendents.android-maven'
group='com.github.heesung6701'
version='0.0.1'

repositories {
mavenCentral()
}

0 comments on commit f7836c5

Please sign in to comment.