Skip to content

Commit

Permalink
bump version and deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
faogustavo committed Sep 1, 2020
1 parent d87d089 commit 393dbf2
Show file tree
Hide file tree
Showing 4 changed files with 142 additions and 66 deletions.
141 changes: 79 additions & 62 deletions .idea/workspace.xml

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

4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ A simple way to implement Material Design Tabs.
Add this dependecy from jCenter:

``` groovy
compile 'com.gustavofao:MaterialTabs:1.3.1'
implementation 'com.gustavofao:MaterialTabs:1.3.2'
```

## USAGE
Expand All @@ -19,7 +19,7 @@ To use this lib, you have to add the tab host and a ViewPager on your layout:
android:layout_below="@+id/toolbar"
android:background="?attr/colorPrimary"/>

<android.support.v4.view.ViewPager
<androidx.viewpager.widget.ViewPager
android:id="@+id/view_pager"
android:layout_width="match_parent"
android:layout_height="match_parent"
Expand Down
5 changes: 3 additions & 2 deletions library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ apply plugin: 'com.android.library'
ext {
PUBLISH_GROUP_ID = 'com.gustavofao'
PUBLISH_ARTIFACT_ID = 'MaterialTabs'
PUBLISH_VERSION = '1.3.1'
PUBLISH_VERSION = '1.3.2'
}

android {
Expand All @@ -30,4 +30,5 @@ dependencies {
}

// ./gradlew clean build generateRelease
apply from: 'https://raw.githubusercontent.com/blundell/release-android-library/master/android-release-aar.gradle'
apply from: "$rootDir/publish.gradle"

Loading

0 comments on commit 393dbf2

Please sign in to comment.