This is featured post 1 title

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation test link ullamco laboris nisi ut aliquip ex ea commodo consequat.

This is featured post 2 title

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation test link ullamco laboris nisi ut aliquip ex ea commodo consequat.

This is featured post 3 title

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation test link ullamco laboris nisi ut aliquip ex ea commodo consequat.

This is featured post 4 title

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation test link ullamco laboris nisi ut aliquip ex ea commodo consequat.

This is featured post 5 title

Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation test link ullamco laboris nisi ut aliquip ex ea commodo consequat.


CyanogenMod10.1-M2 ROM brings Android 4.2.2-M2 on many smartphones, tablets

cid
About a month after the CyanogenMod 10.1-M announced today the details CyanogenMod team churned out 10.1-M2 based on Android 4.2.2. Compared with the previous installments, new builds support more devices (see detailed list below), the major error has been fixed. Of course, the attractive features of Android 4.2 as Day Dream, a new notification bar, Butter Project, photography photosphere, ... are full face, in addition to many custom made ​​by CyanogenMod. If you do not know, the CyanogenMod ROM "M" works better and more stable than the nightly, so the release time is also longer. Right now you can visit the website http://get.cm/?type=snapshot, find your hostname, then download ROM.

List of devices with ROM version CM10.1-M2:
Acer Iconia a700
Google Nexus S (crespo, crespo4g)
Google Nexus 7 (grouper, tilapia)
Google Galaxy Nexus (toro, toroplus, maguro)
Google Nexus 4 (mako)
Google Nexus 10 (manta)
Google Nexus Q (steelhead)
Hardkernel Odroid-U2
HTC One X (evita)
HTC Incredible 4G LTE (fireball)
HTC Evo 4G LTE (jewel)
HTC One S (ville)
LG Nitro HD (p930)
LG Optimus LTE (su640)
LG Spectrum (vs920)
Samsung Galaxy S (captivatemtd, galaxysbmtd, galaxysmtd, epicmtd)
Samsung Galaxy SII (i9100g, hercules, skyrocket)
Samsung Galaxy SIII (bản ở Mỹ d2att, d2cri, d2mtr, d2spr, d2tmo, d2vzw)
Samsung Note (quincytmo, quincyatt)
Samsung Galaxy Tab 2 7.0 (p3100, p3110)
Samsung Galaxy Tab 2 10.1 (p5100, p5110)

[GUIDE]New To Adb And Fastboot Guide



this is just a quice guide about some main features of adb and fastboot and ways you can use them
heres some simple information i can give you about a device, a device has 6 main partitions, system, data, cache, dalvik cache, recovery and externel(sdcard)
for a device to boot it must have a boot.img, system.img and a data.img, when you backup your phone it backs up system.img, boot.img(included in system.img), data.img, cache.img, dalvik cache(thats included in the cache.img), and optionally your recovery.img(no point)
----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

THIS WILL TAKE 10 MINUTES OF YOUR TIME AND WILL BENEFIT YOU FOR LIFE

Quote:
Here is a little package i uploaded with adb.exe fastboot.exe AdbWinApi.dll AdbWinUsbApi.dll and a file named OPEN.CMD that opens a command window in the same directory as adb and fastboot -
  
this is the folder we will be working with. so unzip it and open the OPEN.CMD file and a command prompt will appear.



ADB INTRODUCTION
  
Quote:
adb and fastboot can be really hard to work with until you learn the language of it(its easy)
when theres somewhere and something you wanna do, theres almost always a way!

if your using adb to do a task you must do it with your device on, adb you cant do much with, you can pull files from your phone to your computer, and you can push files from computer to your phone, you can reboot your phone, reboot into recovery reboot into bootloader
note, to pull or push system files you have to type in adb root, to get superuser permissions
NOTE: Your Phones Root Directory Is "/"


HOW TO PULL A FILE

an example of how to pull a file called bootanimation.zip from system of the phone(need to type adb root to get files from here)
and but it on my desktop, the idea is to type adb pull (location of what you wanna pull then \name of item) (name of location you would like it on your computer)
Quote:
adb root
adb pull \system\media\bootanimation.zip c:\users\ricky\desktop
LEAVE A SPACE............................................. ^


HOW TO PUSH A FILE

to push the file from my desktop you simply have to basically do the same command except replace 'pull' with 'push' and you type your computer location \file you wanna push then phone location, ill push the same file back
Quote:
adb root
adb push c:\users\ricky\desktop\bootanimation.zip \system\media
.........................^^computer location^^............................^^phone location^^


HOW TO REBOOT INTO FASTBOOT, RECOVERY AND NORMAL REBOOT

to reboot your phone normally type
Quote:
adb reboot
to reboot recovery
Quote:
adb reboot recovery
to reboot fastboot
Quote:
adb reboot fastboot



FASTBOOT INTRODUCTION

Quote:
now fastboot,
move any file you want to flash or use in fastboot into the Adb Abd Fastboot folder you extracted, fastboot you must have your device booted into bootloader and in fastboot mode, fastboot has many more commands, without fastboot our lives would be miserable, fastboot you can flash recoveries, flash .zip files, unlock bootloader, lock bootloader, flash .img files, wipe partitions get your cid number, write a cid number
i know it doesnt seem like much but doing stuff in the right order you can do ALOOOOT! for example my tool simply uses adb and fastboot commands, look how many features ive added?
move the files your flashing to the same folder as fastboot


FLASH A .ZIP FILE

to flash a .zip file called flashme.zip put the zip file in your fastboot folder and type
Quote:
fastboot flash flashme.zip


FLASH A RECOVERY IMAGE (.IMG)

to flash a recovery called twrp.img, put it in your fastboot folder and type
Quote:
fastboot flash recovery twrp.img


UNLOCK BOOTLOADER

to unlock bootloader from htc you get your identifier token then download the unlock_code.bin they email you and flash it
Quote:
fastboot oem get_identifier_token <how to get token>
fastboot oem flash Unlock_code.bin <how to flash it>
fastboot oem lock <relock bootloader>


FLASHING SPECIFIC IMAGE FILES(SYSTEM, DATA ,CACHE, ECT)

orite now to flash .img files, if your gonna flash a system, data or cache .img file i recommend wiping the partition before flash, and to manually restore your phone you must flash system, data, cache
note, to flash a recovery, all your doing is flashing a recovery .img
note, if your gonna flash a boot.img dont try to wipe your boot partition just flash it
to flash system image file
Quote:
fastboot erase system
fastboot flash system system.img
to flash data image file
Quote:
fastboot erase data
fastboot flash data data.img
to flash cache image file
Quote:
fastboot erase cache
fastboot flash cache cache.img


FLASH A BOOT IMAGE OR KERNEL(BOOT.IMG)

to flash boot image file
Quote:
fastboot flash boot boot.img


HOW TO GET CID NUMBER

this is how you get your cid
Quote:
fastboot getvar cid
NO SPACE.^


HOW TO WRITE SUPERCID

this is how to write super cid
Quote:
fastboot oem writecid 11111111
NO SPACE.............^


HOW TO RESTORE DEVICE BACKUP FROM COMPUTER

if you wanna restore your phone on your from your computer, simply backup your phone in recovery and transfer the backup to your computer and extract all the .img files and put your phone into fastboot mode, then go on your computer, put all your .img files in a folder with adb, fastboot, AdbWinApi and AdnWinUsbApi(the files everyone tells you to get from the android sdk package)
then navigate to the folder on command prompt on terminal then wipe a partition then flash one
for example i do it like this, i wipe system, data and cache first, so this is what i would type,
Quote:
fastboot erase system
fastboot erase data
fastboot erase cache
then flash the .img files(need to flash system first)

Quote:
fastboot flash system system.img
fastboot flash data data.img
fastboot flash cache cache.img
then you can flash boot.img, when you want to install a new kernel, all it is, is a a stock boot.img modified

Firefox 24 beta for Android released: WebRTC support, web sharing through NFC, additional nighttime reading mode

 
Mozilla has recently released versions of Firefox 24 Beta for Android. The browser now supports WebRTC, a standard browser allows access to multimedia hardware (such as cameras, microphones on the phone, computer) without having to install any plug-ins. With WebRTC, users can call each other via the browser, and the PC version of Firefox has long supported features. WebRTC course is still only in the testing phase but not yet formally put into operation. In addition, Mozilla has added the ability for Firefox 24 Beta sharing sites are open through NFC, allowing access to the web application from the main menu, better support for text-to-text (provided assistance for the visually impaired).

In addition, Mozilla also additional mode Night Mode with black background, white text for features of Firefox 24 Beta Reader. Reader is a tool for displaying images and content of websites in a separate interface to limit distractions, like Safari's Reader. The Night Mode will help supplement our web browser night without eyestrain as Day mode (white background, black text) by default.

[Android 4.3] ActiveNotifications - The application icons show the same clear message to Moto X

ActiveNotifications Moto X Active Display clone
When Motorola introduced Moto Droid X and the new range, the company has introduced the Active Display feature enables you to display the notification icon on the lock screen in a clear and easy to understand, not just flashing LEDs. Now, a programmer has written a tool that functions similarly named ActiveNotifications. This application uses the service "Notification Listener" of Android 4.3 to manage messages sent to the system so it will not impact the battery life. In addition, there ActiveNotification ability to recognize when you're to the phone in the bag, the wallet, or the machine upside down, in which case the machine will not notice, just as Motorola Solutions.
ActiveNotifications

If you are using AMOLED screen devices, such as Galaxy Nexus or Galaxy S4 Google Play Edition, the power saving features of ActiveNotifications automatically activated. Then, like the Moto X, the black pixels will not pop up, only the message should appear more save more battery.

Unfortunately, because using "Notification Listener" with the only Android 4.3, so you must use Android 4.3 device (ROM Cook or the owners are), the new ActiveNotifications run. This Android version currently only available for the current machine and HTC Nexus One and Samsung Galaxy S4 "Google Play Edition", a number of other machines, only Cook ROM. Programmer app developers should ActiveNotifications said he would write to the older Android version if more people are interested in this stuff.

Download Google Play or ActiveNotifications : https://play.google.com/store/apps/details?id=com.greatbytes.activenotifications
Download directly install the APK file of ActiveNotifications

That you can use the Android Device Manager, tool for search devices Android

Android_Device_Management_da_co_the_su_dung


Last week Google launched Android Device Manager, search tool and locate your Android machine if the machine is lost, similar to the Find My Phone's iOS, Windows Phone or Sony Xperia USA. All you need to do to locate the machine is accessing the site https://www.google.com/android/devicemanager, no need to install any app on the mobile device, as long you have logged on this website with the same Google account on your Android machine is stable. Wait a moment, the exact location will appear on Google Maps. You can see the updates of the latest positions and addresses of devices are appearing, accuracy.

Besides, you are also allowed to issue commands for Android devices to easily find more rings or completely erase data on the worst case scenario it is stolen. If you use multiple machines at the same time, you can also find the location of each one, just you have logged in to your Google account on a computer that is.

Android_Dev_Manager_1 copy