Android Development

Different keys for Debug and Release Build

In lots of projects i had the problem, that i need different key for a live environment and the environment during the development. for example currently i use parse.com for my cloud backend. there is a live instance (with application_id

Posted in android, Blog | Tagged , , | 1 Comment

create android dependency with gradle and upload artifact to maven repository

some weeks ago i would like to share a set of util classes from my android project with a colleague. and whats better than create a jar and upload it into a maven repository? the following code show how to create

Posted in android, Blog | Leave a comment

Persist data with greenDAO

In my last project i used the framework greenDao (http://greendao-orm.com/) for persisting data. this post will show you how to use it. 1. At first you have to create a simple java project to define and generating the entities 2. include DaoGenerator.jar

Posted in android, Blog | Leave a comment