Skip to content

Commit

Permalink
prepare release
Browse files Browse the repository at this point in the history
  • Loading branch information
sangcomz committed Nov 23, 2020
1 parent 9aa51e1 commit 3bf4fff
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 5 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@ StickyTimeLine is timeline view for android.
- Remove the way of using xml view of VerticalSectionItemDecoration
- Add dot size attribute
- `timeLineDotRadius`, `timeLineDotStrokeSize`

- Support RTL (#26)

## Result Screen

Feel free to send me a pull request with your app and I'll link you here:
Expand Down
4 changes: 3 additions & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,12 @@ dependencies {
implementation "androidx.recyclerview:recyclerview:1.1.0"
implementation 'androidx.cardview:cardview:1.0.0'
implementation project(':stickytimelineview')
// implementation 'com.github.sangcomz:StickyTimeLine:v0.1.1'


implementation "androidx.appcompat:appcompat:1.2.0"
implementation 'androidx.constraintlayout:constraintlayout:2.0.1'
testImplementation 'junit:junit:4.13'
androidTestImplementation 'androidx.test:runner:1.3.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
}
}
2 changes: 2 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ buildscript {
}

repositories {
mavenLocal()
google()
jcenter()
}
Expand All @@ -22,6 +23,7 @@ buildscript {

allprojects {
repositories {
mavenLocal()
google()
jcenter()
}
Expand Down
4 changes: 2 additions & 2 deletions settings.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
include ':app', ':stickytimelineview'

gradle.ext.set('versionCode', 8)
gradle.ext.set('versionName', '0.1.0')
gradle.ext.set('versionCode', 9)
gradle.ext.set('versionName', '0.1.1')

gradle.ext.set('minSdk', 16)
gradle.ext.set('targetSdk', 28)
Expand Down
14 changes: 13 additions & 1 deletion stickytimelineview/build.gradle
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
apply plugin: 'com.github.dcendents.android-maven'
apply plugin: 'maven-publish'

group = 'com.github.sangcomz'
version = 'v' + gradle.versionName

repositories {
mavenCentral()
}


android {
compileSdkVersion gradle.compileSdk
defaultConfig {
Expand Down Expand Up @@ -40,3 +41,14 @@ dependencies {
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'

}

install {
repositories.mavenInstaller {
// only necessary if artifact ID diverges from project name
// the latter defaults to project directory name and can be
// configured in settings.gradle
pom.artifactId = 'StickyTimeLine'
// shouldn't be needed as this is the default anyway
pom.packaging = 'aar'
}
}

0 comments on commit 3bf4fff

Please sign in to comment.