Pages

Showing posts with label away. Show all posts
Showing posts with label away. Show all posts

Monday, December 26, 2016

Give Away HTC One X

Here is something awesome for Android Revolution HD users. I will give away one, brand new HTC One X+ (GSM only) in color of your choice - black or white, to one winner of this little competition. There is no country limit - its a worldwide party!

The competition starts at 12:00 PM (GMT + 1) on Monday 4th, March 2013 and will continue until 12:00 PM (GMT + 1) on Sunday 10th, March 2013. Winner will be announced on Monday 11th, March 2013.

What you need to do:

1) "Like" HTC (facebook.com/htc) and Android Revolution HD (facebook.com/AndroidRevolutionHD) on Facebook

2) "Follow" HTC (@HTC) and Android Revolution HD (@mike1986_) on Twitter

3) Tweet about this contest with link to this page using hash-tag "androidrevolutionhd" (#androidrevolutionhd)
Example tweet: Win HTC One X+ at http://android-revolution-hd.blogspot.com/2013/02/give-away-htc-one-x.html #androidrevolutionhd

Note: If you already meet the requirements from points 1 and 2, now all you need to do is tweet! No need to re-follow or re-like accounts mentioned above. Re-tweets doesnt count. This must be your own tweet. Remember to include link to this contest and hash-tag #androidrevolutionhd.

How will I select the winner? I will randomly choose one person from the list of my Twitter followers who tweeted about this give away using #androidrevolutionhd hash-tag. Is that all? Yes! Easy as that! Just 2 clicks and 1 tweet to win amazing, high-end HTC One X+ - Engadgets Smartphone of the Year! 

Good luck!


Want to learn more about HTC One X+?
Visit this site - HTC One X+ overview
Read More..

Monday, October 10, 2016

HTC Sense 5 5 busted! True screenshots of the incoming HTC UI

Its been some time since we have had HTC Sense 5.0 on the market. In the past few weeks this, considered by many as the best Android UI, also has been released for HTC One X and HTC One X+.

We already know for a few months, that HTC has already been working on the next version of their famous UI - HTC Sense 5.5. Some of the Sense 5.5 features are already present in the latest HTC One Android 4.3 build, however they are currently disabled in the framework.

Today, we present to you the first screenshots of the incoming HTC Sense 5.5 interface. If you are going to share this great news, please dont forget to include the source link too!


Home screen - now you can disable or enable HTC BlinkFeed easily.



Android Quick Settings - now you can re-arrange the content of the QS panel.



Improved HTC keyboard with possibility to add more emoticons.



Improved camera - "Dual capture" and "Panorama+", Storage and Recent Apps panel.



New HTC BlinkFeed categories, custom topics tab and minor changes to alarm clock.



Many more changes are of course under the hood, so expect improved performance and overall UI smoothness. Many bugs are also fixed, so the incoming HTC Sense 5.5 should bring a lot of joy for all HTC fans!

Have any questions or comments? Feel free to share! Also, if you like this article, please use media sharing buttons (Twitter, G+, Facebook) below this post!
Read More..

Tuesday, September 20, 2016

Stock system dumps for HTC One HTC One X


Last two days were very exciting for HTC community, especially for HTC One X users (Android 4.2.2 with HTC Sense 5.0 update described here). However, there is always one problem when it comes to HTC updates - no RUUs (ROM Update Utility) officially available do download for regular users (HTC One Developer Edition and Google Edition seems to be the only exceptions). Why RUU is that important to us?

These executable (.exe) files for MS Windows are installers of complete firmware, including for example system or data partitions. Not having latest RUU means:
  1. users using custom ROMs cant download latest OTA from HTC,
  2. developers have no system dumps they can work with.
Ad. 1) If you want to download and flash latest OTA, your device must have completely stock system partition and recovery. Every OTA update is checking MD5 of each file on system partition to ensure .apk patch can be applied. If even one of 1000 files wont match, OTA update installation will fail. In this case you need to flash the latest official update you can find (even one year old) and later download official OTA updates.

Ad. 2) There are few workarounds, however none of them is as good as having a RUU:
  • adb pull /system in custom recovery mode*
  • cp /system /data/media/dump in custom recovery mode*
  • nandroid backup
  • boot partition can be taken from inside firmware.zip inside OTA .zip package or it can be dumped using dd if=</path/to/boot/partition> of=/data/media/boot.img
* adb pull, cp or dd commands must be executed from custom recovery mode, otherwise system dump will be missing few important files or these files will have 0kb size. Also, keep in mind that adb features are heavily limited on stock un-rooted device. In case of dd command, root access (su) is needed to make such operation.

Thats why I created my own stock system dumps (as a custom recovery .zip packages) for both HTC One and HTC One X. I believe this can save a lot of time for many XDA users and developers.

HTC One thread - HTC One *STOCK* ROM | 2.24.401.8 | Jelly Bean | HTC Sense 5

HTC One X thread - HTC One X *STOCK* ROM | 4.18.401.2 | Jelly Bean | HTC Sense 5.0

Download links can be found on this blog, under Downloads section - Downloads


Have any questions or comments? Feel free to share! Also, if you like this article, please use media sharing buttons (Twitter, G+, Facebook) down this post!
Read More..

Sunday, September 11, 2016

How to Fix a corrupted DATA partition on the HTC One


Since the HTC One was released, Ive had a few users asking me to help them fix their broken device. They couldnt boot their system or access anything on the DATA partition from inside custom recovery. Why this happens so often on the HTC One I have no idea...

Here is a short guide explaining how to fix this problem without sending the device for repair under warranty.

Short Explanation

This method can be used to fix any other partition too, just remember about changing the mount point number - from "mmcblk0p37" to the relevant one. For example, the SYSTEM on the HTC One is "mmcblk0p35". In some rare cases the mkfs.ext4 attributes (like dir_nlink or resize_inode) might change too! To get a list of all eMMC mount points on HTC devices use the command cat /proc/emmc. Never format RAW partitions! This method can be used only to format EXT4 partitions. Not following the guide properly might end in permanent damage to your device. I do not take any responsibility for that.

Some people might also find this helpful in case of need to remove the entire contents of the virtual SD-card. As long as the virtual SD-card is not a separate partition, (i.e. it is emulated space on the DATA partition [/data/media]) it cant be formatted - only wiped clean. I wrote an in-depth explanation of how the virtual SD-card works on Android here - Virtual SD card on Android.

How Do I Recognise The Problem?

When trying to mount the DATA partition from inside the custom recovery using the mount /data command you will most likely see this output: mount: mounting /dev/block/mmcblk0p37 on /data failed: Invalid argument

To be 100% sure you can check filesystem structure with the following command: /sbin/e2fsck -n -f /dev/block/mmcblk0p37

Repair Process

Note: the content of your DATA partition will be lost, including the contents of your virtual SD-card! I also assume you already have custom recovery flashed and you are a Windows user - LINUX people please amend as needed.
  1. Download this mini-sdk package and extract it to c:mini-sdk
  2. Download this mkfs.ext4 binary and put it into c:mini-sdk
  3. Connect your device to the PC
  4. Boot your device in recovery mode
  5. Open a command prompt on the PC (cmd.exe), type and confirm each command with ENTER:
  6. cd /d c:mini-sdk
  7. adb push mkfs.ext4 /tmp
  8. adb shell
  9. chmod 777 /tmp/mkfs.ext4
  10. /tmp/mkfs.ext4 -b 4096 -O ^huge_file,^dir_nlink,^ext_attr,^resize_inode,^extra_isize -m 0 /dev/block/mmcblk0p37
Image of the whole command in one line to avoid mistakes:

Now your DATA partition will be formatted. It is not the same as "wiping", which is only removing all or just some files from particular partition. Formatting means that the entire partition will be re-created with the above attributes. You should see the following output:

mke2fs 1.41.12 (17-May-2010)
Filesystem label=  
OS type: Linux 
Block size=4096 (log=2)
Fragment size=4096 (log=2)
Stride=0 blocks, Stripe width=0 blocks
1703936 inodes, 6815744 blocks
0 blocks (0.00%) reserved for the super user
First data block=0
208 block groups
32768 blocks per group, 32768 fragments per group
8192 inodes per group
Superblock backups stored on blocks:
32768,98304,163840,229376,294912,819200,884736,1605632,2654208,4096000
Writing inode tables: done
Creating journal (32768 blocks): done
Writing superblocks and filesystem accounting information: done
This filesystem will be automatically checked every 25 mounts or 180 days, whichever comes first. 
Use tune2fs -c or -i to override.
Your DATA partition is now completely empty, so we need to copy our particular ROM zip file there:
  1. Copy ROM zip file to c:mini-sdk and rename it to "rom.zip"
  2. In the same command prompt window type and confirm each command with ENTER:
  3. mount /data
  4. mkdir -p /data/media/0
  5. exit
  6. adb push rom.zip /data/media/0
Copying rom.zip to the device will take a few minutes. Wait until its done. The output should be: xxxx KB/s (xxxxxxxxxx bytes in xxx.xxxs)Now you can flash rom.zip from inside custom recovery. Done!

Have any questions or comments? Feel free to share! Also, if you like this article, please use media sharing buttons (Twitter, G+, Facebook) below this post!
Read More..

Monday, July 4, 2016

HTC One X give away winner is


Im happy to announce, that the winner of HTC One X+ give-away contest is...




The winner should send me a private message via Twitter within 7 days with his e-mail address. After 7 days of no contact from the winner, Ill randomly pick another winner.


Congratulations Barry!




This was the first, but not the last contest. Next time youll probably have a chance to win brand new HTC flagship device - One. Good luck!

PS. Since some users have issues with their tweeter accounts, next give-away will be based on different rules to encourage even more people!
Read More..

Monday, May 16, 2016

And the HTC One give away winner is


Im very happy to announce, that the winner of the HTC One Giveaway #RevolutionChange is...



Nefty Aguirre


Congratulations Nefty!



Have any questions or comments? Feel free to share! Also, if you like this article, please use media sharing buttons (Twitter, G+, Facebook) below this post!
Read More..

Thursday, May 12, 2016

Give away! Win a brand new HTC One!


Edit: 9.10.2013
The contest is now closed. Im trying to reach the first randomly selected person to confirm if he (yes, its "he") has a Twitter account and he entered the contest properly.

If he wont answer me within next 24 hours I will pick another winner. Stay tuned and check your Google Hangouts ;)

Here comes another give-away! This time the winner will get a brand new HTC One. Previously, a brand new HTC One X+ in a limited white colour went to Barry.

This give-away is international, which means everyone from around the world can enter and win! HTC One is also supported by Android Revolution HD on XDA Developers Forum under this link.

Why HTC One?

Because its still the best Android device you can find on the market. HTC partnered with Robert Downey Jr. (RDJ) on a series of #HTChange videos that only he could come up with. To enter the contest, you need to visit first a short RDJ change video  available here - http://s.htc.com/1fKG6Rr

Rules
  1. Watch this video - http://s.htc.com/1fKG6Rr
  2. In the comments section beneath this post answer one of these two questions:
    1. what would you like to change in the Android OS?
    2. what was the most important change in your life? You might use just a few words, but you might come up with a whole story too.
  3. Share this give-away announcement on Twitter (short link: http://goo.gl/Hfq5d2) using the #RevolutionChange hashtag - this is very important for us to see you actually entered the contest!


The winner will be picked randomly on Wednesday, October 9th 2013.

    Prize

    As mentioned above, its a brand new HTC One in a variant of your choice (GSM or GSM+LTE).


    Good luck everyone!


    Have any questions or comments? Feel free to share! Also, if you like this article, please use media sharing buttons (Twitter, G+, Facebook) below this post!
    Read More..

    Tuesday, March 8, 2016

    HTC One X with Android 4 2 2 HTC Sense 5 0 update

    HTC One X is one of the very few (if not the only one) devices from HTC which reached 4.xx.xxx.x software version (4.18.491.2). This only proves how great this device still is and how many users are still actively using it. Today HTC One X users are receiving one of the most important update - Android 4.2.2 with HTC Sense 5.0. Last summer HTC did similar update, upgrading HTC One X with Android 4.1.1 from Android 4.0.4 and bumping HTC Sense from 4.0 to so called "4+". However, HTC Sense 4.0/4+ update wasnt that significant and didnt bring so many new features and improvements as HTC Sense 5.0.






    The new update includes well known HTC BlinkFeed™ (available firstly only on HTC One), native Android Quick Settings and completely re-designed HTC Sense interface. Two features are missing from HTC One - HTC BoomSound™ and HTC Zoe™. Unfortunately, both are hardware related. BoomSound™ obviously needs dual speakers audio system, and HTC Zoe™ was created to work with small pictures taken with UltraPixel camera - which allows user to take excellent pictures in natural conditions using only 4 mega pixels resolution in pair with dedicated HTC ImageChip™ 2.








    As you can see, there is a changelog attached to the OTA notification, however it is just a "commercial" changelog - that means there are a lot of different changes/improvements under the hood. Android 4.2.2 update brought a lot of changes itself, not to mention new HTC Sense 5.0 features, further optimization in SoC drivers and kernel related improvements.


    The new update for HTC One X looks great and surely will bring some fresh air to the device. HTC One X+ already received HTC Sense 5.0 update few days ago, however it was only Taiwanese update so far. Below you can see HTC BlinkFeed screen together with Android Quick Settings on latest HTC One X 4.18.401.2 software.



    Have any questions or comments? Feel free to share! Also, if you like this article, please use media sharing buttons (Twitter, G+, Facebook) down this post!
    Read More..