Skip to content

Commit 2eceb9b

Browse files
committed
uploaded new version 1.0.1
1 parent 74bd6b1 commit 2eceb9b

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ This library creates an introduction screen for your application.
55
The help tutorial takes the background colour set for each page and when scrolling between the two pages, the two colours will fade into one another.
66

77
Example:
8+
89
![](example-usage.gif)
910

1011

@@ -14,10 +15,10 @@ Example:
1415

1516
Add the following into your build.gradle:
1617
```groovy
17-
compile 'za.co.riggaroo:materialhelptutorial:1.0.0'
18+
compile 'za.co.riggaroo:materialhelptutorial:1.0.1'
1819
```
1920
In your activity, create a list of TutorialItems (set the title, subtitle, background colour and image drawable int). Pass them onto the MaterialTutorialActivity and start the activity for result.
20-
```android
21+
```java
2122
public void loadTutorial() {
2223
Intent mainAct = new Intent(this, MaterialTutorialActivity.class);
2324
mainAct.putParcelableArrayListExtra(MaterialTutorialActivity.MATERIAL_TUTORIAL_ARG_TUTORIAL_ITEMS, getTutorialItems(this));

materialhelptutorial/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apply plugin: 'com.android.library'
22
apply plugin: 'com.github.dcendents.android-maven'
33
apply plugin: 'com.jfrog.bintray'
44

5-
version = "1.0.0"
5+
version = "1.0.1"
66
group = "za.co.riggaroo"
77

88
def siteUrl = 'https://github.com/spongebobrf/MaterialIntroTutorial'
@@ -15,8 +15,8 @@ android {
1515
defaultConfig {
1616
minSdkVersion 15
1717
targetSdkVersion 23
18-
versionCode 1
19-
versionName "1.0"
18+
versionCode 2
19+
versionName "1.0.1"
2020
}
2121
buildTypes {
2222
release {

0 commit comments

Comments
 (0)