Skip to content

Commit

Permalink
Update compile path.
Browse files Browse the repository at this point in the history
Update badge.
  • Loading branch information
GIGAMOLE committed Jun 18, 2016
1 parent f9f1651 commit a033035
Show file tree
Hide file tree
Showing 15 changed files with 14 additions and 8 deletions.
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
[![Android Arsenal](https://img.shields.io/badge/Android%20Arsenal-NavigationTabBar-blue.svg?style=flat-square)](http://android-arsenal.com/details/1/3382)
[![Download](https://api.bintray.com/packages/gigamole/maven/navigationtabstrip/images/download.svg) ](https://bintray.com/gigamole/maven/navigationtabstrip/_latestVersion)

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

Or Gradle Maven Central:

```groovy
compile 'com.github.devlight.navigationtabbar:library:1.2.0'
compile 'com.github.devlight.navigationtabbar:navigationtabbar:1.2.1'
```

Or Maven:

```groovy
<dependency>
<groupId>com.github.devlight.navigationtabbar</groupId>
<artifactId>library</artifactId>
<version>1.2.0</version>
<artifactId>navigationtabbar</artifactId>
<version>1.2.1</version>
<type>aar</type>
</dependency>
```
Expand Down
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ android {

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile project(':library')
compile project(':navigationtabbar')
compile 'com.android.support:appcompat-v7:23.3.0'
compile 'com.android.support:design:23.3.0'
compile 'com.android.support:support-v4:23.3.0'
Expand Down
5 changes: 5 additions & 0 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme">

<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
Expand All @@ -19,9 +20,13 @@

<activity android:name=".HorizontalNtbActivity"
android:configChanges="orientation|keyboardHidden|screenSize"/>

<activity android:name=".TopHorizontalNtbActivity"/>

<activity android:name=".HorizontalCoordinatorNtbActivity"/>

<activity android:name=".VerticalNtbActivity"/>

<activity android:name=".SamplesNtbActivity"/>
</application>

Expand Down
File renamed without changes.
4 changes: 2 additions & 2 deletions library/build.gradle → navigationtabbar/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.2.0"
version = "1.2.1"

android {
compileSdkVersion 23
Expand All @@ -29,7 +29,7 @@ android {
minSdkVersion 11
targetSdkVersion 23
versionCode 1
versionName "1.2.0"
versionName "1.2.1"
}
buildTypes {
release {
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
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', ':navigationtabbar'

0 comments on commit a033035

Please sign in to comment.