Skip to content

Add ignore sequence button #41

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,5 @@
/build
/captures
.externalNativeBuild
.idea
bubbleshowcase/deploy-custom-repository.gradle
19 changes: 0 additions & 19 deletions .idea/gradle.xml

This file was deleted.

49 changes: 0 additions & 49 deletions .idea/misc.xml

This file was deleted.

12 changes: 0 additions & 12 deletions .idea/modules.xml

This file was deleted.

12 changes: 0 additions & 12 deletions .idea/runConfigurations.xml

This file was deleted.

11 changes: 0 additions & 11 deletions .idea/vcs.xml

This file was deleted.

1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ Below it is showed an example of a BubbleShowCase will all possible input params
BubbleShowCaseBuilder(this) //Activity instance
.title("foo") //Any title for the bubble view
.description("bar") //More detailed description
.ignoreSequenceTitle("Skip") // To add button with label 'skip' to skip sequence
.arrowPosition(BubbleShowCase.ArrowPosition.RIGHT) //You can force the position of the arrow to change the location of the bubble.
.backgroundColor(Color.GREEN) //Bubble background color
.textColor(Color.BLACK) //Bubble Text color
Expand Down
11 changes: 7 additions & 4 deletions bubbleshowcase/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,10 @@ apply plugin: 'org.jetbrains.dokka'
apply plugin: 'maven-publish'



android {
compileSdkVersion 26



defaultConfig {
minSdkVersion 16
targetSdkVersion 26
Expand All @@ -39,7 +37,7 @@ dokka {

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation"org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
implementation 'com.android.support:appcompat-v7:26.1.0'
testImplementation 'junit:junit:4.12'
Expand All @@ -50,5 +48,10 @@ repositories {
mavenCentral()
}


apply from: 'deploy.gradle'

def file = new File("$projectDir/deploy-custom-repository.gradle")

if(file.exists()) {
apply from: 'deploy-custom-repository.gradle'
}
4 changes: 2 additions & 2 deletions bubbleshowcase/deploy.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ apply from: 'keystore.gradle'

//This file was created following instructions from: https://notes.devlabs.bg/beginners-guide-for-publishing-a-kotlin-library-to-jcenter-41272bfc214

ext{
ext {
groupId = 'com.elconfidencial.bubbleshowcase'
artifactId = 'bubbleshowcase'
libraryVersion = '1.3.1'
libraryVersion = '1.3.2-oab-snapshot'
}

version = libraryVersion
Expand Down
Loading