Skip to content
This repository has been archived by the owner on Jun 27, 2023. It is now read-only.

Commit

Permalink
Increasing version to 1.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
milosmns committed Oct 5, 2016
1 parent 39657f4 commit 509d3fd
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ Getting Started
4. Open your project's main Gradle file, in root directory (**/build.gradle**)
5. Make sure you are using **jcenter()** in the repository block (**mavenCentral()** should work too)
6. Open your app module's Gradle file, for example **/app/build.gradle**
7. In **dependencies** block, add the following line: `compile 'me.angrybyte.goose:goose:1.6.0'`
7. In **dependencies** block, add the following line: `compile 'me.angrybyte.goose:goose:1.6.1'`
8. Click **Tools/Android/Sync Project with Gradle Files** or click on the *Sync* icon in the top toolbar
9. Click **Run/Run 'app'** to see if it's resolved correctly

Expand Down
6 changes: 3 additions & 3 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ android {
applicationId "me.angrybyte.goosedemo"
minSdkVersion 14
targetSdkVersion 24
versionCode 6
versionName "1.6.0"
versionCode 7
versionName "1.6.1"
}
lintOptions {
checkReleaseBuilds = false
Expand All @@ -27,7 +27,7 @@ dependencies {

compile 'com.android.support:cardview-v7:24.2.1'
compile 'com.android.support:appcompat-v7:24.2.1'
// compile 'me.angrybyte.goose:goose:1.6.0' // - production
// compile 'me.angrybyte.goose:goose:1.6.1' // - production

compile project(':goose') // - dev mode only
}
6 changes: 3 additions & 3 deletions goose/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ ext {
siteUrl = 'https://github.com/milosmns/goose'
gitUrl = 'https://github.com/milosmns/goose.git'

libraryVersion = '1.6.0'
libraryVersion = '1.6.1'

developerId = 'milosmns'
developerName = 'Milos Marinkovic'
Expand All @@ -38,8 +38,8 @@ android {
defaultConfig {
minSdkVersion 14
targetSdkVersion 24
versionCode 12
versionName "1.6.0"
versionCode 14
versionName "1.6.1"
}
buildTypes {
release {
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ org.gradle.jvmargs=-Xmx2048m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryErro
# org.gradle.parallel=true

GROUP=me.angrybyte.goose
VERSION_NAME=1.6.0
VERSION_NAME=1.6.1

POM_DESCRIPTION=Goose - Article Extractor for Android

Expand Down

0 comments on commit 509d3fd

Please sign in to comment.