Steamshots is a Steam screenshot uploader for Android.
For details, see the Google Play page.
The source code comes as an ADT Eclipse Juno project. Just copy the SteamScreenshots folder to your workspace and press Debug or Run.
To modify the Steam protobuf messages (located in /proto
), you need the Protocol Buffers addon for Eclipse and the protobuf compiler protoc
. In the Protocol Buffers settings in Eclipse, enable Java output to src
folder.
To install the Protocol Buffers editor to compile the protobuf messages, you need to do the following steps:
- Install Xtext-Antlr 2.0.0 from
http://download.itemis.de/updates/
Eclipse repo. - Install the latest version of Xtext from
http://download.eclipse.org/modeling/tmf/xtext/updates/composite/releases/
Eclipse repo. - Install everything from
http://protobuf-dt.googlecode.com/git/update-site
Eclipse repo. - Download the Protobuf compiler
protoc
. - In Protocol Buffers editor options in workspace or project settings, set the path to
protoc
and enable Java output tosrc
directory.
Clean the project to build the protobuf messages.
- Guava by Google.
- Protocol Buffers by Google.
- TouchImageView by MikeOrtiz.