Skip to content

Commit

Permalink
New library path.
Browse files Browse the repository at this point in the history
New badge.
  • Loading branch information
GIGAMOLE committed Jun 18, 2016
1 parent 090952e commit 068cca3
Show file tree
Hide file tree
Showing 13 changed files with 15 additions and 18 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[![Android Arsenal](https://img.shields.io/badge/Android%20Arsenal-NavigationTabStrip-blue.svg?style=flat-square)](http://android-arsenal.com/details/1/3603)

[![Download](https://api.bintray.com/packages/gigamole/maven/navigationtabstrip/images/download.svg) ](https://bintray.com/gigamole/maven/navigationtabstrip/_latestVersion)

NavigationTabStrip
==================
Expand All @@ -25,23 +25,23 @@ dependencies {
url 'http://dl.bintray.com/gigamole/maven/'
}
}
compile 'com.github.devlight.navigationtabstrip:library:+'
compile 'com.github.devlight.navigationtabstrip:navigationtabstrip:+'
}
```

Or Gradle Maven Central:

```groovy
compile 'com.github.devlight.navigationtabstrip:library:1.0.1'
compile 'com.github.devlight.navigationtabstrip:navigationtabstrip:1.0.2'
```

Or Maven:

```groovy
<dependency>
<groupId>com.github.devlight.navigationtabstrip</groupId>
<artifactId>library</artifactId>
<version>1.0.1</version>
<artifactId>navigationtabstrip</artifactId>
<version>1.0.2</version>
<type>aar</type>
</dependency>
```
Expand Down Expand Up @@ -142,7 +142,7 @@ Other methods check out in sample.
And XML init:

```xml
<com.gigamole.library.navigationtabstrip.NavigationTabStrip
<com.gigamole.navigationtabstrip.NavigationTabStrip
android:layout_width="match_parent"
android:layout_height="50dp"
app:nts_color="#000"
Expand Down
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ android {

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile project(':library')
compile project(':navigationtabstrip')
compile 'com.android.support:appcompat-v7:23.2.1'
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import android.view.View;
import android.view.ViewGroup;

import com.gigamole.library.navigationtabstrip.NavigationTabStrip;
import com.gigamole.library.NavigationTabStrip;

/**
* Created by GIGAMOLE on 28.03.2016.
Expand Down
6 changes: 3 additions & 3 deletions app/src/main/res/layout/activity_main.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
android:paddingRight="30dp"
android:paddingStart="30dp">

<com.gigamole.library.navigationtabstrip.NavigationTabStrip
<com.gigamole.library.NavigationTabStrip
android:id="@+id/nts_top"
android:layout_width="match_parent"
android:layout_height="56dp"
Expand Down Expand Up @@ -53,7 +53,7 @@
android:layout_marginTop="18dp"
android:background="#182128"/>

<com.gigamole.library.navigationtabstrip.NavigationTabStrip
<com.gigamole.library.NavigationTabStrip
android:id="@+id/nts_center"
android:layout_width="match_parent"
android:layout_height="42dp"
Expand Down Expand Up @@ -85,7 +85,7 @@
android:paddingRight="30dp"
android:paddingStart="30dp">

<com.gigamole.library.navigationtabstrip.NavigationTabStrip
<com.gigamole.library.NavigationTabStrip
android:id="@+id/nts_bottom"
android:layout_width="match_parent"
android:layout_height="50dp"
Expand Down
File renamed without changes.
5 changes: 2 additions & 3 deletions library/build.gradle → navigationtabstrip/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ apply plugin: "com.jfrog.bintray"
apply plugin: 'com.github.dcendents.android-maven'
apply plugin: 'maven'

version = "1.0.1"
version = "1.0.2"

android {
compileSdkVersion 23
Expand All @@ -29,7 +29,7 @@ android {
minSdkVersion 11
targetSdkVersion 23
versionCode 1
versionName "1.0.1"
versionName "1.0.2"
}
buildTypes {
release {
Expand All @@ -42,7 +42,6 @@ android {
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:23.1.0'
compile 'org.jsoup:jsoup:+'
}

def siteUrl = 'https://github.com/DevLight-Mobile-Agency/NavigationTabStrip'
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package com.gigamole.library.navigationtabstrip;
package com.gigamole.library;

import android.animation.Animator;
import android.animation.ArgbEvaluator;
Expand All @@ -40,8 +40,6 @@
import android.view.animation.LinearInterpolator;
import android.widget.Scroller;

import com.gigamole.library.R;

import java.lang.reflect.Field;
import java.util.Arrays;
import java.util.Random;
Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
@@ -1 +1 @@
include ':app', ':library'
include ':app', ':navigationtabstrip'

0 comments on commit 068cca3

Please sign in to comment.