Saturday, April 25, 2015

Android device screen cast or screen recording using command prompt in windows machine.


Follow below steps:

1. Open command prompt (cmd) in windows (click window+R, type cmd in it and press enter)

2. Go to adb (android debug bridge) platform tools, it will be in your android sdk folder:
     Example - C:\Users\abc\AppData\Local\Android\sdk\platform-tools

3. Connect your android phone

4. Run command to record: adb shell screenrecord --verbose ./sdcard/record-video.mp4

5. To stop recording, press: Ctrl+C

Tuesday, September 9, 2014

Extract Source Code from Android APK file

Procedure for decoding .apk files, step-by-step method:
Step 1:
Make a new folder and put .apk file in it (which you want to decode). Now rename the extension of this .apk file to .zip (eg.: rename from filename.apk to filename.zip) and save it. Now you get classes.dex files, etc. At this stage you are able to see drawable but not xml and java files, so continue.
Step 2:
Now extract this zip apk file in the same folder (or NEW FOLDER). Now download dex2jar from this linkhttp://code.google.com/p/dex2jar/ and extract it to the same folder (or NEW FOLDER). Move the classes.dex file into the dex2jar folder. Now open command prompt and change directory to that folder (or NEW FOLDER). Then write dex2jar classes.dex and press enter. Now you get classes.dex.dex2jar file in the same folder. Then download java decompiler from http://jd.benow.ca/ and now double click on jd-gui and click on open file. Then open classes.dex.dex2jar file from that folder. Now you get class files and save all these class files (click on file then click "save all sources" in jd-gui) by src name. At this stage you get java source but the xml files are still unreadable, so continue.
Step 3:
Now open another new folder and put these files
1.      put .apk file which you want to decode
2.      download apktool v1.x AND apktool install window (both can be downloaded at the same location) and put in the same folder
3.      download framework-res.apk file and put in the same folder (Not all apk file need framework-res.apk file)
4.      Open a command window
5.      Navigate to the root directory of APKtool and type the following command: apktool if framework-res.apk (Try below trobleshooting if not working)
6.      apktool d "fname".apk ("fname" denotes filename which you want to decode)
now you get a file folder in that folder and now you can easily read xml files also.
Step 4:
It's not any step just copy contents of both folder(in this case both new folder)to the single one
and now enjoy with source code...


Troubleshooting:
1. From Step 3-->point 5 --> apktool is not recognize as an internal command.
Solution: This may be a PATH problem,do this:
PATH=%PATH%;ApkToolPath
ApkToolPath is the directory where apktool is.
BTW, u need to download 2 files: apktool-install-windows-r05-ibot.tar.bz2 and apktool1.5.2.tar.bz2. extract both and put aapt.exe apktoo.bat apktool.jar together.

Wednesday, December 11, 2013

Thursday, April 18, 2013

Implement Auto Suggestions in iOS/iPhone/iPad


A tutorial to implement auto suggestion while typing in iPhone. Below is the link to download a source code. Let me know for any query.



Download Source Code : AutoSuggestion_iOS

Monday, March 4, 2013

Core Data Simple Tutorial (Step-wise)

Conquer/Control over the greatest enemy of iOS developer- app crash on iPhone


Thousands discover and download the iPhone application; very few know how to develop these logical software programs.  While trying to develop a mobile engagement platform, for the iPhone; the application crashed several times not just on the device but also on the simulator.  If reports of each crash were to be reported, around 3 pages of crash logs could be traced within a week’s effort. An application crash is the most common issue for any developer; however every developer needs to sail through it to gain control over the software development process. This article will provide a checklist and some suggestions that could help you survive any iPhone crash! How did one find that the application has stopped working? Mostly, it is the tester or the user who complains about the app not running in their iPhone X version. Here’s what a developer must do to initiate instant recovery. A complete checklist that helps every iPhone developer to recover from an application crash has been listed below:


  • Reactions that cause an application to crash- trace back program files and logs.
  • Unlike other smartphones, iPhone needs the application binary and source code execution list to trace the program logs.
  • Keep a record of every crash filed appropriately for future reference.
  • Refer search engines for past experiences of similar crashes
 Most of the time the application is inoperable due to some actions performed within the codes written for the iPhone. Though client side crashes are also not so rare. Every time the iPhone is deployed on the client platform, it runs into numerous issues. However; same application might work perfectly on iOS simulator/testing device. One could find many blogs/sites who elaborate the problems and solutions. Nevertheless, when it occurs at a remotely distant user ased location, the pros and cons are indeed a heavy expenditure. It affects product sales and thereby creates more headaches for developers. There is no perfect solution yet, certain methods enumerated below could help one avoid these types of problems using try-catch block.


This is common practice among other platform developers to use try catch block while programming but for the ios developer there is nowhere written example found on world wide web or if found then the(they) do not suggest to use this, I don’t know why!!!!!

I am using try catch blocks while programming and it is working great, if application somewhere going to crash then catch block will be called and no affect in User interface and the developer can generate/throw message to user there is some error and try again later. So iOS developers now can smile to know that there app will not crash anymore <but> they want that errors should be solved with another version release. To track those errors, we have lots of option: 


  1. when compiler goes to catch block, you can hit API or URL and can send error description and method name/class name to log on server or you can use PL crash reporter. 
Integrate crash reporter in one single line
Tutorial: http://www.youtube.com/watch?v=vf-u9U61WkI


  1. You can open mail composer on iOS app when error occurs and user will press send mail to you.
Many….many….many alternatives. Sky is the limit