Skip to content
This repository has been archived by the owner on Feb 8, 2022. It is now read-only.

Commit

Permalink
uploaded
Browse files Browse the repository at this point in the history
  • Loading branch information
Florent Champigny committed Oct 12, 2016
1 parent c8a57d0 commit f9cc632
Show file tree
Hide file tree
Showing 21 changed files with 317 additions and 61 deletions.

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

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

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

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

11 changes: 0 additions & 11 deletions .idea/libraries/support_annotations_23_4_0.xml

This file was deleted.

11 changes: 11 additions & 0 deletions .idea/libraries/support_annotations_24_2_1.xml

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

14 changes: 14 additions & 0 deletions .idea/libraries/support_compat_24_2_1.xml

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

14 changes: 14 additions & 0 deletions .idea/libraries/support_core_ui_24_2_1.xml

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

14 changes: 14 additions & 0 deletions .idea/libraries/support_core_utils_24_2_1.xml

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

14 changes: 14 additions & 0 deletions .idea/libraries/support_fragment_24_2_1.xml

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

14 changes: 14 additions & 0 deletions .idea/libraries/support_media_compat_24_2_1.xml

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

14 changes: 0 additions & 14 deletions .idea/libraries/support_v4_23_4_0.xml

This file was deleted.

10 changes: 10 additions & 0 deletions .idea/libraries/support_v4_24_2_1.xml

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

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

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Then bound it with your viewPager
bubbleTab.setupWithViewPager(viewPager);
```

##
# Customisation

To display your home icon with a different color / content if selected / unselected

Expand Down
14 changes: 7 additions & 7 deletions app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 23
buildToolsVersion "23.0.3"
compileSdkVersion project.sdk
buildToolsVersion project.buildTools

defaultConfig {
minSdkVersion project.minSdk
targetSdkVersion project.sdk
applicationId "com.github.florent37.topnav"
minSdkVersion 14
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
Expand All @@ -23,8 +23,8 @@ dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile project(':bubbletab')
compile 'com.android.support:appcompat-v7:23.4.0'
compile 'com.android.support:cardview-v7:23.4.0'
compile 'com.android.support:recyclerview-v7:23.4.0'
compile 'com.android.support:appcompat-v7:'+project.supportVersion
compile 'com.android.support:cardview-v7:'+project.supportVersion
compile 'com.android.support:recyclerview-v7:'+project.supportVersion
compile 'com.jakewharton:butterknife:7.0.1'
}
42 changes: 37 additions & 5 deletions bubbletab/build.gradle
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
apply plugin: 'com.android.library'

android {
compileSdkVersion 23
buildToolsVersion "23.0.3"
compileSdkVersion project.sdk
buildToolsVersion project.buildTools

defaultConfig {
minSdkVersion 14
targetSdkVersion 23
minSdkVersion project.minSdk
targetSdkVersion project.sdk
versionCode 1
versionName "1.0"
}
Expand All @@ -21,5 +21,37 @@ android {
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.4.0'
compile 'com.android.support:appcompat-v7:'+project.supportVersion
}

version = project.libraryVersion

ext {
bintrayRepo = 'maven'
bintrayName = 'BubbleTab'
orgName = 'florent37'

publishedGroupId = 'com.github.florent37'
libraryName = 'BubbleTab'
artifact = 'bubbletab'

libraryDescription = 'BubbleTab'

siteUrl = 'https://github.com/florent37/BubbleTab'
gitUrl = 'https://github.com/florent37/BubbleTab.git'

libraryVersion = rootProject.ext.libraryVersion

developerId = 'florent37'
developerName = 'Florent Champigny'
developerEmail = 'champigny.florent@gmail.com'

licenseName = 'The Apache Software License, Version 2.0'
licenseUrl = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
allLicenses = ["Apache-2.0"]
}

if (project.rootProject.file('local.properties').exists()) {
apply from: rootProject.file('gradle/install-v1.gradle')
apply from: rootProject.file('gradle/bintray-android-v1.gradle')
}
13 changes: 13 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,24 @@ buildscript {
dependencies {
classpath 'com.android.tools.build:gradle:2.2.1'

classpath "org.jfrog.buildinfo:build-info-extractor-gradle:3.1.1"
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.4.1'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.0'


// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}

ext {
sdk = 24
buildTools = "24.0.1"
minSdk = 15
libraryVersion = "1.0.0"
supportVersion = "24.2.1"
}

allprojects {
repositories {
jcenter()
Expand Down
Loading

0 comments on commit f9cc632

Please sign in to comment.