LightBlog

mercredi 28 septembre 2016

Homescreen Critique 04

We have a fresh batch of amazing homescreen to go through in a new XDA TV video. Taylor continues to pick through user-submitted homescreens to find some of the most amazing designs. This is a great series to check out if you're looking for inspiration for your own homescreen setup. Also if you think your setup is already amazing, you can submit it for a chance to be featured in the next episode.

Check out the individual posts for the screens featured in this video, below.

vlcsnap-2016-09-28-09h27m56s879

Check out this homescreen here.

vlcsnap-2016-09-28-09h28m12s758

Check out this homescreen here.

vlcsnap-2016-09-28-09h29m02s120

Check out this homescreen here.

Submit your own homescreen in this thread to be featured in the next video.



from xda-developers http://ift.tt/2dttS7W
via IFTTT

Winners Announces for the Google Play Indie Games Festival

A couple of months ago, Google announced they would be hosting the first annual Google Play Indie Games Festival. The idea was to highlight some indie mobile game developers that have produced a great entertainment experience for mobile. There wasn't even a requirement that the game be available in the Play Store at the time of submission. Google just wanted to give some attention to game developers that deserved it and then reward them for their work.

At the end of last month, Google announced the 30 finalists who would go on to compete at an event held in San Francisco. At the time the finalists were first announced, only 10 of the games that were nominated were actually available in the Play Store. Now, 17 of the nominated games are currently available and more are confirmed to be released later in the year. So be sure to check out all of the nominees as each of them offer something unique to the mobile gaming experience.

The event in San Francisco was held on September 24th, and now Google has officially announced the winners of their first annual Google Play Indie Games Festival. Winners of the event were bit bit blocks, Numbo Jumbo, and Orbit. With finalist nominees also including Antihero (coming in 2016), Armajet (coming in 2016), Norman's Night In: The Cave (coming in 2016) and Parallyzed.

All finalist nominees received a combination of prizes that include Google I/O 2017 tickets, a Tango Development kit, Google Cloud credits, an NVIDIA Android TV & K1 tablet, and a Razer Forge TV bundle. Google has said they are bringing the Indie Games Contest to European countries next and will soon announce which countries will be eligible for the event. So be sure to prepare your best game to be entered as it could be a great opportunity to introduce your work to a worldwide audience!

Source: Android Developers Blog



from xda-developers http://ift.tt/2dkQVx1
via IFTTT

How to Discover Hidden Fastboot Commands

In my goal to discover as much about Android customization as I possibly could, I've made many obscure, yet interesting discoveries. I've shown you how to access hidden menus on your device by sifting through all of the hidden application activities on your phone. More recently, I've shown you how to access the hidden hardware diagnostic tool on certain smartphones. Now, I realize that some of you were disappointed in the fact that your smartphone was not covered in the previous article, and I apologize for that.

To make up for it, I'm going to walk you through something far, far more advanced and exciting: dumping your device's bootloader to discover hidden fastboot commands. This guide, although done on my Nexus 6P, is most definitely replicable on the majority of smartphones. However, what commands you will have access to will vary significantly between devices. Most commands will not really help you in any real situation, but nevertheless it's pretty interesting to dive this deep into your phone's settings. Let's get started.

Disclaimer: So long as you know what you're doing and can follow instructions appropriately, nothing bad should happen to your device. But, we are still messing around with our device partitions and the bootloader, so there is no telling what could happen if you enter the wrong command. Make sure you have an off-device backup ready!


Preparation

Before we get started, there's one really, really important thing to note. In order to extract your device's bootloader, you will need root access on your phone. If you do not have root access, you can continue reading this guide for educational purposes, but you will not be able to perform any of the necessary commands. Got that? Good. Another prerequisite you will need to meet is ensuring that your computer has all of the proper ADB/fastboot drivers. If you don't have the ADB/fastboot binaries, then I recommend installing Minimal ADB & Fastboot from our forums. As for the drivers, you can grab the necessary drivers for Google Nexus devices here and for all other devices from here. How do you know if you're good to go? Plug in your device, enable USB Debugging under Developer Settings, open up a command prompt, and type:

  adb devices  

adb-devices

If you see your device's serial number pop up, then you've got the right drivers.


Dumping the Bootloader

Our first step is to open a shell on our device so we can run commands over ADB. It's best that we run commands over ADB because we're much more prone to making mistakes when typing on a virtual keyboard, and making mistakes is not something you want to do here. The first command you should run in your command prompt is:

  adb shell  

If you see the command prompt change from displaying the ADB binary directory to showing the codename for your Android device, then you've successfully entered your device's local command line shell. Now, in order to access the partitions we need to dump, you will need superuser access. To do so, type the following:

  su  

The symbol in front of your device's codename should change from $ to # indicating that you can now run commands with elevated privileges. Be careful now!

adb-shell

Next, we will figure out the exact location of your device's bootloader image. In order to find the exact directory, we will print out a list of all of the partitions and their directories by name, and look for one in particular called 'aboot.' You will need to enter two commands as follows:

  cd /dev/block/bootdevice/by-name  ls -all  

adb-partitionsAs you can see above, a giant list of partition directories are printed out. These partitions are sorted by name, so we can easily discern the location of our bootloader partition. In my case, the bootloader, which is 'aboot' in the above image, can be found at /dev/block/mmcblk0p10. This will vary depending on your device, so it's important that you follow these instructions to figure out the true directory where your bootloader is located. Take note of this directory, however, as we will reference it in the following command to dump the bootloader:

  dd if=/dev/block/{YOUR ABOOT PARTITION} of=/sdcard/aboot.img  

adb-dump-bootloader

Once successful, you should find a file called 'aboot.img' located on the root of your internal storage. Now that we've dumped the bootloader, we need to examine it to determine what hidden commands we can find.


Hidden Fastboot Commands and their Uses

You might be familiar with some of the more common fastboot commands, such as fastboot flash or fastboot boot. There are many more fastboot commands as defined in the open source fastboot protocol. Here is a list of the fastboot commands available on every device with a bootloader based off of the latest AOSP code:

fastboot-aosp

What's missing in this list are fastboot oem commands. These commands are specific to Android device manufacturers, and there is no comprehensive list or documentation anywhere for what fastboot oem commands are available. Now, if your device manufacturer was kind enough to provide a fastboot command that lists all oem commands (try fastboot oem ? and see if that works), then you won't need to do anything further. If there isn't any command that prints a list of available fastboot oem commands, then you'll need to print a list of strings from the aboot.img and search for the oem commands manually.

'strings' is a linux command, the documentation for which is available here. As you can tell, I'm personally using a Windows machine, so instead I've been using a program that mimics 'strings' from Linux. The raw output of the 'strings' command on an aboot.img file will be quite messy, but if you simply CTRL+F for 'oem' you should find what you need. If you want to refine your search, you can try this command (for the Windows version I linked):

  strings * | findstr /i oem  

For the Nexus 6P, I compiled the following list of fastboot oem commands:

  fastboot oem unlock-go  fastboot oem frp-unlock  fastboot oem frp-erase  fastboot oem enable reduced-version  fastboot oem device-info  fastboot oem enable-charger-screen  fastboot oem disable-charger-screen  fastboot oem enable-bp-tools  fastboot oem disable-bp-tools  fastboot oem enable-hw-factory  fastboot oem disable-hw-factory  fastboot oem select-display-panel  fastboot oem off-mode-charge enable  fastboot oem off-mode-charge disable  fastboot oem ramdump enable  fastboot oem ramdump disable  fastboot oem uart enable  fastboot oem uart disable  fastboot oem hwdog certify begin  fastboot oem hwdog certify close  fastboot oem get-imei1  fastboot oem get-meid  fastboot oem get-sn  fastboot oem get-bsn  fastboot oem get_verify_boot_status  

Be warned that you should not attempt any of the above commands, or any of the commands that you discover on your device, unless you are willing to accept the risks. There is a reason these commands are hidden from the user.

That being said, I've thought of some neat uses for some of these fastboot commands I've found (that may or may not be present on your device, so follow the instructions above to check!) that should fancy the most hardcore Android enthusiast. There are two commands here that could have some practical use.

First up is the fastboot oem (enable|disable)-charger-screen command. What this does is disables the charging screen that pops up when your device is turned off. If you aren't a fan of the blinding brightness of the charging screen when your phone is off, then you can disable it via this hidden fastboot command!

Next, there's the fastboot oem off-mode-charge (enable|disable) command. This command determines whether or not your device will automatically turn on when a power source is detected. By default, it is set to 'disable.' I will admit that this command does not have much use for phones, but if you're planning on mounting your tablet into your car's dashboard, you will find this command incredibly useful. You will be able to set your device to immediately power on when the tablet receives power, such as when your car battery starts up. Conversely, it's quite easy to power down the tablet when power is lost by using an automation app such as Tasker. This command, by the way, works exactly as written on the Nexus 7 (2013).


That's it for this lesson in Android customizability. Share the commands that you discover (ideally in a pastebin link) in the comments below!

Thanks to XDA Senior Recognized Developer Dees_Troy for his assistance in the making of this article!



from xda-developers http://ift.tt/2df7f44
via IFTTT

Mozilla is Removing the Gecko Engine from Firefox OS

Firefox was first introduced back in 2012 and a lot of us here at XDA have had a soft spot for the platform. We are very passionate about open source software and Firefox OS offered a very open source mobile platform and it had some momentum for a while. By late 2014, 14 different carriers in over 25 countries around the world were offering smartphones that ran Firefox OS, but this didn't last very long.

Less than a year later, Mozilla had announced they would stop selling commercial Firefox OS smartphones. The company said they would discontinue the development of the platform for smartphones in May of this year. This was only for smartphones though, as in January of this year we saw Firefox OS being used in Panasonic 4K televisions. The company had thought that pivoting to connected devices was the way forward but even this didn't work out how Mozilla had wanted.

It's now been confirmed that development on Firefox OS has ceased so they can focus more on their browser, and the engine that runs it. In a Mozilla developer newsgroup, the company has announced they will pull all Firefox OS related code from the Gecko engine. The developers say this is needed in order to continue evolving the "underlying code that comprises Gecko" as it being attached to Firefox OS was hindering the development process.

While this isn't technically the end of Firefox OS as a whole, remember it's still an open source project, the community developers who are passionate about it can pick up where the project was abandoned. Mozilla says the community will need to fork Gecko and maintain the code base so that it is still compatible with Firefox OS. Time will tell if there will be enough people to not only start and complete the project, but also keep it going so that Firefox OS can continue on.

Source: Mozilla



from xda-developers http://ift.tt/2cVtTg6
via IFTTT

Replaced Galaxy Note 7 Reportedly Catches Fire

Samsung just hasn't had much luck with the Galaxy Note 7 this year, and this latest report suggests that things might not be changing anytime soon. Samsung has been dealing with their voluntary replacement program for the device since the start of this month. The South Korean conglomerate was hoping this program was all that they needed to do, but they were forced into doing an official recall just a couple of weeks ago.

It was estimated that this Galaxy Note 7 battery defect would cost the company upwards of $1 billion in parts and labor alone. This isn't even factoring in the negative perception the public has about the device after the scratch test, and even after the multiple fires that were started from the Note 7. A device that was called the best smartphone available today by many Android publications, and one that our own Daniel Marchena called a remarkable phone for life.

So Samsung has been replacing and refunding defective Galaxy Note 7 devices for a couple of weeks now. Just yesterday we talked about how replaced Galaxy Note 7 units were continuing to have battery issues. At the time, it was reported that some units were being charged while they were plugged in, while others were having overheating issues when the device was plugged in. Still, at that time there weren't any reports of replaced units catching fire or exploding. . .until now.

Hui Renjie is a 25-year-old from China who received a replacement Galaxy Note 7 Sunday afternoon that was delivered to him from the JD.com commerce website. Less than 24 hours after receiving the unit, the new Galaxy Note 7 reportedly caught fire and caused minor burns on a couple of his fingers while also burning his MacBook. The man says he has refused an additional replacement and simply does not trust the company anymore.

Samsung has received the defective unit and is currently examining the device to find out what happened.

Source: Bloomberg



from xda-developers http://ift.tt/2d4aage
via IFTTT

mardi 27 septembre 2016

Give Your App a Free Health Check Up At Droidcon UK

There are exciting news for app developers heading to Droidcon UK this year. Skills Matter have partnered with Novoda and NimbleDroid to bring two app clinics, one centered around design and one focusing on performance with prizes for the best of each.

The Performance Clinic – Thursday 27th October from 14:00 till 15.30

NimbleDroid is an automated performance analysis service for apps, and they are offering to give your app a free check up aimed at making your app as fast as possible. There will be two categories of prizes:

1) Best Startup Time
2) Most Improved Startup Time

For the Best Startup Time prizes, the NimbleDroid team will consider the official version of your app downloaded from Google Play on October 27th (you can upload your app to Google Play up until Thursday October 27th midnight London time).

For the Most Improved Startup Time prizes, the NimbleDroid team will use the official version downloaded from Google Play on Thursday September 29th AND Thursday October 27th, provided that the app must register before Thursday September 29th midnight London time. Each app needs to be registered only once. The prizes will be 3 months of NimbleDroid premium service such as custom user flows and premium support.

screenshot-2016-09-28-at-04-10-34

You can upload your app in advance here and read more about this clinic over at Skills Matter.

The Design Clinic – Thursday 27th October from 15.30 – 17:00

Whether your app has been developed since the days of Cupcake or hasn't yet hit the a final release, it can never hurt to have fresh insight in to your app's UX. This clinic will allow your app to be reviewed by a team of designers and developers including Google Developer Experts and some of the best developers in the industry. They will share their thoughts on your app and advise you on methods to improve your UX, answering any questions you may have.

We believe motion brings an app to life, and creates a compelling, enjoyable user experience. It can make the difference between a good or a great design in your app.

We are looking for the work you are most proud of, that extra attention to detail that creates the highest quality experience for your users using motion.

Rules

• The motion design MUST be implemented in a mobile app that conforms to Material Design guidelines
• The app MUST run on phone, tablet, TV or other Android-powered devices
• You MUST be an employee of the company, or the developer/designer of, the app you're submitting
• You MUST have a valid droidcon ticket and be attending the closing ceremony (when prizes will be awarded)
• The entry MUST be original work. Its implementation MUST be published on the Play Store or other app stores that are publicly listing the app (Amazon, etc)
• ONE entry per person
• By submitting your entry you grant Novoda and Skills Matter the right to use all the submitted informations and material for promoting the contest and its winners
• Entries MUST be submitted by October 17th, 23:59:59.999 UK time

You can upload your app in advance here and read more about this clinic over at Skills Matter.

Will you be uploading your app? Leave a comment below!



from xda-developers http://ift.tt/2d8y5dF
via IFTTT

BlackBerry DTEK60 passes by the FCC

The BlackBerry DTEK60's FCC filings were just released, confirming what frequency bands BlackBerry intends to support on their U.S. model, as well as some more information about the device itself.

The DTEK60 is the successor to the Android based DTEK50 that was launched earlier this year, which resulted in some head scratching for its questionable naming scheme and small battery.

BlackBerry DTEK50 VerticalThat being said, the DTEK60 is expected to be aimed at a substantially different market than the mid-range DTEK50 was, with leaked specifications from BlackBerry's website pointing to it having a 5.5″ 2560×1440 display, a Snapdragon 820 SoC, 4GB of RAM, 32 GB of storage with MicroSD support, USB Type-C 2.0 with Quick Charge 3.0, a 21 MP PDAF rear camera with an f2.0 lens and dual tone flash, 4k 30 Hz recording and 720p 120 Hz slowmo, an 8 MP front camera with an f2.2 lens, 1.125 μm pixels, and an 84˚ field of view, a front mounted fingerprint sensor, NFC, dual-band WiFi, and a 3000 mAh battery. The specifications also list it as being 153.9 x 75.4 x 7 mm, weighing in at 165 g, having a red notification LED, and having four physical buttons (volume up/down, lock, and the BlackBerry Convenience Key). It is listed as having an accelerometer, magnetometer, gyroscope, proximity sensor, ambient light sensor, and hall effect sensor, like the DTEK50.

BlackBerry also lists it as coming pre-loaded with the standard Android apps, plus BlackBerry Keyboard, BlackBerry Hub, BlackBerry Calendar, Contacts by BlackBerry, Notes by BlackBerry, Tasks by BlackBerry, BlackBerry Camera, BBM, DTEK by BlackBerry, BlackBerry Device Search, BlackBerry Launcher, BlackBerry Services, BlackBerry Help, BlackBerry Password Keeper, Microsoft exFAT Technology for BlackBerry, BlackBerry Content Transfer, and Yahoo! Finance.

The FCC Filings confirm that the DTEK60 will support UMTS bands 2/4/5, and LTE bands 2/4/5/7/12 (hopefully indicating support for T-Mobile VoLTE).

On BlackBerry's website, the North American and Latin American DTEK60 was listed as supporting UMTS bands 1/2/4/5/8, and LTE bands 1/2/3/4/5/7/12/17/20/29. The Europe, Middle East, Africa, and Asia Pacific model is listed as supporting UMTS bands 1/2/4/5/6/8 and LTE bands 1/2/3/4/5/7/8/19/20/28A/38/40/41.

What are your thoughts on the BlackBerry DTEK60? Let us know in the comments below!

Source: FCC



from xda-developers http://ift.tt/2d1VIpc
via IFTTT