Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
mirzemehdi committed Nov 11, 2022
1 parent e4f216e commit 22e328a
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 17 additions & 0 deletions timeintervalpicker/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
plugins {
id 'com.android.library'
id 'org.jetbrains.kotlin.android'
id 'maven-publish'
}

android {
Expand Down Expand Up @@ -31,8 +32,24 @@ android {
buildFeatures {
viewBinding true
}

}

publishing {
publications {
release(MavenPublication) {
groupId = 'com.mmk'
artifactId = 'timeintervalpicker'
version = '1.0.0'

afterEvaluate {
from components.release
}
}
}
}


dependencies {

implementation 'androidx.core:core-ktx:1.7.0'
Expand Down

0 comments on commit 22e328a

Please sign in to comment.