Skip to content

Commit

Permalink
removing all readability props
Browse files Browse the repository at this point in the history
  • Loading branch information
burntcookie90 committed Oct 2, 2014
1 parent 361cf23 commit f641c43
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 12 deletions.
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,10 @@ Join the g+ beta here : https://plus.google.com/communities/11234771982432321686

Building
---
[![Build Status](https://travis-ci.org/dinosaurwithakatana/holo_hacker_news.svg?branch=master)](https://travis-ci.org/dinosaurwithakatana/holo_hacker_news) : Travis build uses custom target without readability turned on.
[![Build Status](https://travis-ci.org/dinosaurwithakatana/holo_hacker_news.svg?branch=master)](https://travis-ci.org/dinosaurwithakatana/holo_hacker_news)

Copy each of the `*.properties.example` to their respective properties files and fill out as necessary.

Readability token can be found [here](https://www.readability.com/settings/account)

Import into Android studio, should work out of the box.

Chat
Expand Down
8 changes: 0 additions & 8 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -31,21 +31,13 @@ android {
versionNameSuffix '-dev'
def Properties localProps = new Properties()
localProps.load(new FileInputStream(file('../local.properties')))
def Properties keyProps = new Properties()
keyProps.load(new FileInputStream(file(localProps['readability.props.file'])))
buildConfigField "String", "READABILITY_TOKEN", String.valueOf("\"" + keyProps["token"].toString() + "\"")
buildConfigField "boolean", "TRAVIS", 'false'
}
release {
runProguard false
def Properties localProps = new Properties()
localProps.load(new FileInputStream(file('../local.properties')))
def Properties keyProps = new Properties()
keyProps.load(new FileInputStream(file(localProps['readability.props.file'])))
buildConfigField "String", "READABILITY_TOKEN", String.valueOf("\"" + keyProps["token"].toString() + "\"")
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
signingConfig signingConfigs.release
buildConfigField "boolean", "TRAVIS", 'false'
}
}
productFlavors {
Expand Down
1 change: 0 additions & 1 deletion readability.properties.example

This file was deleted.

0 comments on commit f641c43

Please sign in to comment.