Android
I've found numerous bugs in Android applications. These are just something that I learned and a few things that I give a look at when I'm forgetting the basics.
General
I will try to make them in such a way that I can also share it with others as well. Hope this wil...
Activities
Activities are basically the GUI screen that we seen in an android app. run [app.activity.info]...
Broadcast Receiver
They are responsible for providing you all the notifications that you get. Also sometimes they pa...
Commands
So these are just collections of command that might be helpful. adb To find the package adb sh...
Content Provider
These are the third party application which can access the data from the application or provide i...
Intents
Basically a data object that tells what task is to be performed. <activity android:name="Activity...
Permissions
So every app asks for permission and each permission is defined in the AndroidManifest.xml Ex: If...
Services
Runs code inside the application. These are implemented on onStartCommand() , this method accept...