Where android apps are stored?
Here is a very good answer: Where an app is stored very much depends on several criteria: System apps / pre-installed-bloatware-apps are stored in /system/app with privileged apps in /system/priv-app…
Here is a very good answer: Where an app is stored very much depends on several criteria: System apps / pre-installed-bloatware-apps are stored in /system/app with privileged apps in /system/priv-app…
This is my solution how to speed up building gradle processes without running it in console. There are two steps: 1. adding option to run parallel and offline 2. don't…
Here is very interesting post I have found on stackoverflow. I though it is worth to repost here. Android uses Hex ARGB values, which are formatted as #AARRGGBB. That first…
In this post I will show only example of using gcm notification broadcasting from console. I assume You have working gcm methods in your project. You must change also in…
I made app in executable jar java file for setting time in genymotion emulator. Here is simple java code and compiled app for setting time in genymotion app. Below code…
Here is a little help to remove from our logcat some logs we don't want like: dalvikvm or OpenGL All what you need is to click in top right corner…
Did You have problem with copying text from grepcode? Did You have problem with a lot spaces and wrong formatting? Well it is possible to reformat that text with two…
For anyone interested in unlocking own tranformer - Asus provides own apk to unlock device, more information you will find here: http://support.asus.com/download.aspx?SLanguage=en&p=28&s=1&m=ASUS+Transformer+Pad+Infinity+TF700T&os=&hashedid=fq2B3oq64av1O95u The file is called UnLock_app_V8.apk You can also…
Here is that pretty snippet for converting long to specific date format: I took source from: http://stackoverflow.com/a/7954038/619673 public static String getDate(long milliSeconds, String dateFormat) { // Create a DateFormatter object…
Here is the example how to run apk when you do not know what is the apk's name. First you need to call aapt to get info about AndroidManifest.xml from…