Skip to content

Commit 068cca3

Browse files
committed
New library path.
New badge.
1 parent 090952e commit 068cca3

File tree

13 files changed

+15
-18
lines changed

13 files changed

+15
-18
lines changed

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[![Android Arsenal](https://img.shields.io/badge/Android%20Arsenal-NavigationTabStrip-blue.svg?style=flat-square)](http://android-arsenal.com/details/1/3603)
2-
2+
[![Download](https://api.bintray.com/packages/gigamole/maven/navigationtabstrip/images/download.svg) ](https://bintray.com/gigamole/maven/navigationtabstrip/_latestVersion)
33

44
NavigationTabStrip
55
==================
@@ -25,23 +25,23 @@ dependencies {
2525
url 'http://dl.bintray.com/gigamole/maven/'
2626
}
2727
}
28-
compile 'com.github.devlight.navigationtabstrip:library:+'
28+
compile 'com.github.devlight.navigationtabstrip:navigationtabstrip:+'
2929
}
3030
```
3131

3232
Or Gradle Maven Central:
3333

3434
```groovy
35-
compile 'com.github.devlight.navigationtabstrip:library:1.0.1'
35+
compile 'com.github.devlight.navigationtabstrip:navigationtabstrip:1.0.2'
3636
```
3737

3838
Or Maven:
3939

4040
```groovy
4141
<dependency>
4242
<groupId>com.github.devlight.navigationtabstrip</groupId>
43-
<artifactId>library</artifactId>
44-
<version>1.0.1</version>
43+
<artifactId>navigationtabstrip</artifactId>
44+
<version>1.0.2</version>
4545
<type>aar</type>
4646
</dependency>
4747
```
@@ -142,7 +142,7 @@ Other methods check out in sample.
142142
And XML init:
143143

144144
```xml
145-
<com.gigamole.library.navigationtabstrip.NavigationTabStrip
145+
<com.gigamole.navigationtabstrip.NavigationTabStrip
146146
android:layout_width="match_parent"
147147
android:layout_height="50dp"
148148
app:nts_color="#000"

app/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ android {
2121

2222
dependencies {
2323
compile fileTree(dir: 'libs', include: ['*.jar'])
24-
compile project(':library')
24+
compile project(':navigationtabstrip')
2525
compile 'com.android.support:appcompat-v7:23.2.1'
2626
}

app/src/main/java/com/gigamole/navigationtabstrip/MainActivity.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import android.view.View;
88
import android.view.ViewGroup;
99

10-
import com.gigamole.library.navigationtabstrip.NavigationTabStrip;
10+
import com.gigamole.library.NavigationTabStrip;
1111

1212
/**
1313
* Created by GIGAMOLE on 28.03.2016.

app/src/main/res/layout/activity_main.xml

+3-3
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
android:paddingRight="30dp"
2626
android:paddingStart="30dp">
2727

28-
<com.gigamole.library.navigationtabstrip.NavigationTabStrip
28+
<com.gigamole.library.NavigationTabStrip
2929
android:id="@+id/nts_top"
3030
android:layout_width="match_parent"
3131
android:layout_height="56dp"
@@ -53,7 +53,7 @@
5353
android:layout_marginTop="18dp"
5454
android:background="#182128"/>
5555

56-
<com.gigamole.library.navigationtabstrip.NavigationTabStrip
56+
<com.gigamole.library.NavigationTabStrip
5757
android:id="@+id/nts_center"
5858
android:layout_width="match_parent"
5959
android:layout_height="42dp"
@@ -85,7 +85,7 @@
8585
android:paddingRight="30dp"
8686
android:paddingStart="30dp">
8787

88-
<com.gigamole.library.navigationtabstrip.NavigationTabStrip
88+
<com.gigamole.library.NavigationTabStrip
8989
android:id="@+id/nts_bottom"
9090
android:layout_width="match_parent"
9191
android:layout_height="50dp"
File renamed without changes.

library/build.gradle navigationtabstrip/build.gradle

+2-3
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ apply plugin: "com.jfrog.bintray"
1919
apply plugin: 'com.github.dcendents.android-maven'
2020
apply plugin: 'maven'
2121

22-
version = "1.0.1"
22+
version = "1.0.2"
2323

2424
android {
2525
compileSdkVersion 23
@@ -29,7 +29,7 @@ android {
2929
minSdkVersion 11
3030
targetSdkVersion 23
3131
versionCode 1
32-
versionName "1.0.1"
32+
versionName "1.0.2"
3333
}
3434
buildTypes {
3535
release {
@@ -42,7 +42,6 @@ android {
4242
dependencies {
4343
compile fileTree(dir: 'libs', include: ['*.jar'])
4444
compile 'com.android.support:appcompat-v7:23.1.0'
45-
compile 'org.jsoup:jsoup:+'
4645
}
4746

4847
def siteUrl = 'https://github.com/DevLight-Mobile-Agency/NavigationTabStrip'
File renamed without changes.

library/src/main/java/com/gigamole/library/navigationtabstrip/NavigationTabStrip.java navigationtabstrip/src/main/java/com/gigamole/library/NavigationTabStrip.java

+1-3
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
package com.gigamole.library.navigationtabstrip;
17+
package com.gigamole.library;
1818

1919
import android.animation.Animator;
2020
import android.animation.ArgbEvaluator;
@@ -40,8 +40,6 @@
4040
import android.view.animation.LinearInterpolator;
4141
import android.widget.Scroller;
4242

43-
import com.gigamole.library.R;
44-
4543
import java.lang.reflect.Field;
4644
import java.util.Arrays;
4745
import java.util.Random;

settings.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
include ':app', ':library'
1+
include ':app', ':navigationtabstrip'

0 commit comments

Comments
 (0)