https://play.google.com/store/apps/details?id=com.lizard.eyes&hl=en
Showing posts with label Android. Show all posts
Showing posts with label Android. Show all posts
Thursday, July 17, 2014
Lizard Eye
Labels:
Android,
Apps,
Concentration,
Games,
Memory,
Mind,
Play Store
Tuesday, November 26, 2013
Screen Recording in Android 4.4
1. In order to perform a screenrecord, you’ll need the Android SDK and a familiarity with adb command.
2. On your Android device running KitKat, enable USB Debugging from Developer Options, which is hidden by default. To enable Developer options, head over to Settings -> About Phone/Tablet and tap on the Build Number seven times, after which you will get a toast notification saying “You’re now a Developer.”
Head over to Settings -> Developer Options now, and then enable the ‘USB Debugging’ option. If you also want your on-screen touches to show in the video, enable the ‘Show touches’ option as well.
3. You are now ready to record a video. Simply connect the Android device to your PC and start a new instance of Command Prompt in Windows or Terminal on Mac. You will now need to navigate to the android sdk folder.
4. Now, as soon as you enter the command below, the screen recording will start.
adb shell screenrecord --bit-rate 8000000 /sdcard/kitkat.mp4
The above command would record at 8Mbps, instead of the default 4Mbps and save it to the SD Card on your device with the name of KitKat.
6. You can further customize the length of time it records (the default duration is 3-minutes) using the following command
adb shell screenrecord --time-limit 30 /sdcard/kitkat.mp4
The above command would record for 30s, instead of the default 3 Minutes and save it to the SD Card on your device with the name of KitKat.
7. Other information can be found in the following link
http://developer.android.com/tools/help/adb.html#screenrecord
2. On your Android device running KitKat, enable USB Debugging from Developer Options, which is hidden by default. To enable Developer options, head over to Settings -> About Phone/Tablet and tap on the Build Number seven times, after which you will get a toast notification saying “You’re now a Developer.”
Head over to Settings -> Developer Options now, and then enable the ‘USB Debugging’ option. If you also want your on-screen touches to show in the video, enable the ‘Show touches’ option as well.
3. You are now ready to record a video. Simply connect the Android device to your PC and start a new instance of Command Prompt in Windows or Terminal on Mac. You will now need to navigate to the android sdk folder.
4. Now, as soon as you enter the command below, the screen recording will start.
adb shell screenrecord /sdcard/filename.mp45. You can further customize the speed at which it captures video by using the following command
adb shell screenrecord --bit-rate 8000000 /sdcard/kitkat.mp4
The above command would record at 8Mbps, instead of the default 4Mbps and save it to the SD Card on your device with the name of KitKat.
6. You can further customize the length of time it records (the default duration is 3-minutes) using the following command
adb shell screenrecord --time-limit 30 /sdcard/kitkat.mp4
The above command would record for 30s, instead of the default 3 Minutes and save it to the SD Card on your device with the name of KitKat.
7. Other information can be found in the following link
http://developer.android.com/tools/help/adb.html#screenrecord
Tuesday, November 19, 2013
How to import the Sqlite Database of the Android Application from the Real Android Device / Emulator
1. Most of the times , android developers want to see the values written to sqlite in the Android Device so that they can easily debug for the Errors
2. Following is the format for importing the sqlite from the command line
a. First we have to navigate to the Android-Sdk Folder in the command prompt , than the user should navigate to the platform tools
adb -d shell "run-as --packagename cat /data/data/--packagename /databases/--sqlitename > /sdcard//--sqlitename"
where the
i. --packageName stands for the PackageName specified in the Android Manifest File
ii. --sqlitename stands for the Sqlite Name used in the Application
c. The following is the sample format
adb -d shell "run-as com.ormlite.contact cat /data/data/com.contact/databases/cont.sqlite > /sdcard/cont.sqlite"
Subscribe to:
Posts (Atom)