Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/stetro/feedpaper
Android application to get images as wallaper from a twitter stream
https://github.com/stetro/feedpaper
Last synced: 13 days ago
JSON representation
Android application to get images as wallaper from a twitter stream
- Host: GitHub
- URL: https://github.com/stetro/feedpaper
- Owner: stetro
- Created: 2014-09-14T15:52:25.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-09-20T12:45:57.000Z (over 10 years ago)
- Last Synced: 2024-04-15T04:53:35.506Z (9 months ago)
- Language: Java
- Size: 904 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
feedpaper
=========
![Logo](https://raw.githubusercontent.com/stetro/feedpaper/master/src/main/res/drawable-xxxhdpi/ic_launcher.png) [![Android Icon](http://developer.android.com/images/brand/en_generic_rgb_wo_45.png)](https://play.google.com/store/apps/details?id=de.stetro.feedpaper) [![Build Status](https://travis-ci.org/stetro/feedpaper.svg)](https://travis-ci.org/stetro/feedpaper)Android application to get images as wallaper from a twitter stream.
The idea is to read a twitter feed from e.g. [@Astro_Alex](https://twitter.com/Astro_Alex) and set the current tweet as android wallpaper.
Screenshots
-----------![Screenshot 2](screen2.png)![Screenshot 1](screen1.png)
Build
-----To build this app you need a working twitter authentication token in `src/main/java/de/stetro/feedpaper/util/FeedLoaderAsyncTask.java` in the following form:
```java
...
private ConfigurationBuilder getConfigurationBuilder() {
ConfigurationBuilder cb = new ConfigurationBuilder();
cb.setDebugEnabled(true)
.setApplicationOnlyAuthEnabled(true)
.setOAuthConsumerKey("YOURCONSUMERKEYHERE")
.setOAuthConsumerSecret("YOUROCONSUMERSECRETHERE");
return cb;
}
...
```For signing you can add a keystore directory with the follwowing gradle file `keystore/keystore.gradle`:
```grails
android {
signingConfigs {
release {
storeFile file('keystore/key.jks')
storePassword "yourpassword"
keyAlias "youralias"
keyPassword "yourpassword"
}
}
}```