I'm trying to add my logs in ACRA.
I followed this link .
There they have stated
adb logcat -t 200 -v time
This results to 200 lines of logcat with date, invocation time, priority/tag, and PID of the originating process.
But i donno where to add this in ACRA code such that this will update my Google Docs with this 200 lines of logcat
The only thing you need to do is to add the READ_LOGS permission to your manifest.
<manifest ...>
...
<uses-permission android:name="android.permission.READ_LOGS"></uses-permission>
</manifest>
When you do this, ACRA will automatically add logcat information to your crash reports. The information that is added automatically is similar to the information you would get when you would execute adb logcat -t 200 -v time
at the time of the crash.