Friday, September 30, 2016

A New Place To Talk Anonymously About Controversial Topics

What is Candid?

Candid is a way for you to voice your opinion about specific topics, without having your ideas linked to your personal information. Social media is a great way to share and view content from your friends. It's not always to best place to brag about your new orca-skin coat. When you share stuff like this, you may find friends start to judge you or even get really mad at you. Sometimes you get into it with total strangers who decide to screenshot your posts and send it to your employer! That's why it's sometimes better to express certain views anonymously. It's your ideas that matter, not always the person behind them.

The solution is an app called Candid. This app lets you anonymously share your opinion on all kinds of different topics. You'll find groups of people talking about politics, movies, social issues and even groups based on the town that you live in. Want to let people know that the local pumpkin eating contest is rigged? This is the place to do it. Do people even eat pumpkins? Like can you just take a bite like it's a apple? Hmmm… I'll ask about it on Candid.

candid2

candid3

candid4

candid1

Candid users always remain anonymous. Feel free to get into arguments, post controversial opinions or express your love for a fictional anime character. While browsing the app, I found several interesting and hilarious conversations. Here are some of the best topics but often times the comments are way more interesting.

can1can2can3can4

Giveaway

While you're trying out this amazing app, you have the opportunity to win a new Google Pixel phone. All countries can participate. All you have to do to enter for a chance to win is:

  1. Download Candid
  2. Search for the XDA group
  3. Join the XDA-Developers.com group
  4. Make a post in the group with your twitter handle
xdagroup

The Official XDA Group on Candid

And that's it! We will randomly choose a winner from the users that posted. Good luck!

Download Candid

Candid is available for iOS and Android devices. Setup takes only seconds and then you're on your way to browsing all sorts of topics from other users.

image

Download

Thanks to Candid for sponsoring this content and giveaway.



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

What is Candid?

Candid is a way for you to voice your opinion about specific topics, without having your ideas linked to your personal information. Social media is a great way to share and view content from your friends. It's not always to best place to brag about your new orca-skin coat. When you share stuff like this, you may find friends start to judge you or even get really mad at you. Sometimes you get into it with total strangers who decide to screenshot your posts and send it to your employer! That's why it's sometimes better to express certain views anonymously. It's your ideas that matter, not always the person behind them.

The solution is an app called Candid. This app lets you anonymously share your opinion on all kinds of different topics. You'll find groups of people talking about politics, movies, social issues and even groups based on the town that you live in. Want to let people know that the local pumpkin eating contest is rigged? This is the place to do it. Do people even eat pumpkins? Like can you just take a bite like it's a apple? Hmmm… I'll ask about it on Candid.

candid2

candid3

candid4

candid1

Candid users always remain anonymous. Feel free to get into arguments, post controversial opinions or express your love for a fictional anime character. While browsing the app, I found several interesting and hilarious conversations. Here are some of the best topics but often times the comments are way more interesting.

can1can2can3can4

Giveaway

While you're trying out this amazing app, you have the opportunity to win a new Google Pixel phone. All countries can participate. All you have to do to enter for a chance to win is:

  1. Download Candid
  2. Search for the XDA group
  3. Join the XDA-Developers.com group
  4. Make a post in the group with your twitter handle
xdagroup

The Official XDA Group on Candid

And that's it! We will randomly choose a winner from the users that posted. Good luck!

Download Candid

Candid is available for iOS and Android devices. Setup takes only seconds and then you're on your way to browsing all sorts of topics from other users.

image

Download

Thanks to Candid for sponsoring this content and giveaway.



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

MechDome is a Developer Tool that Automatically Converts Android Apps into iOS and OSX Apps

Cross-platform development has presented a major challenge for most independent developers for many years. Quite often, it's simply too much of an time and resource investment to learn a new programming language in order to port your app over to another platform.

For years, this fact of resource allocation is what has pushed many developers to primarily focus their efforts on iOS, due to the more lucrative market. Thanks to projects such as Xamarin, however, developers who are familiar with C# have been able to push their projects across iOS, Android, and Windows Mobile. But Android developers are most familiar with writing in Java, so using Xamarin would require a developer to familiarize themselves with a new language and build platform. We've covered one project aimed at bridging the gap between mobile operating systems by providing a cross-development platform for Java developers – Intel's Multi-OS Engine – but there's no telling where that project is headed. That's where MechDome comes in.

MechDome is a start-up company based in California and incorporated in January that has developed a conversion tool to automatically create native iOS and OS X apps from your Android app. No need to learn how to use a new IDE or API. All you need to do is send an APK file to MechDome (no need to send them your source code), and the fully automated tool will compile a standalone binary in seconds for iOS and OS X that the developer can then distribute on Apple's App Store. We sat down in an interview with MechDome's founder and CEO, Mario Kosmiskas, to see a demonstration of the tool in action – and it works. Although there are some limitations due to fundamental differences between how iOS and Android operate (which we'll discuss below), the tool has already produced a few live apps on the Apple App Store such as the open-source Reddit client RedReader and an open-source Sudoku client to prove it works.


Android Apps on iOS with MechDome

The stated goal of MechDome is to allow developers to convert an unmodified Android app into a native iOS or OS X app. Compared to technologies such as Intel's Multi-OS Engine or Xamarin, an Android developer does not need to know how to bind an Objective-C library because the tool will handle that for you. Nor is there any need to use a UI builder to modify your Android app, as MechDome handles converting all Android UI elements. Yes, even Android tablet apps translate nicely into a format suitable for iPads.

rr1 RedReader on iOS rr3

 

rr3android RedReader on Android rr1android
MechDome's biggest promise is that the converted Android app will function in a manner that users of the target OS will be familiar with. For instance, the Android share menu will be replaced with the native share sheet in iOS, and will include the ability to use AirDrop if applicable. Apps that post notifications in Android will instead display a notification in iOS's Notification Center. Certain intents such as opening a camera on Android will indeed open the camera on the iOS device, and URL intents on Android will call Safari on iOS. Content providers on Android that access contacts or the calendar will instead access the relevant iOS or OS X databases for this information.
Android UI Elements on iOS Slide-In Menu Converted Share Functionality Text Input Posting Notifications

In general though, all hardware functionality required for the use of an Android app will be mapped directly to use the relevant hardware in iOS. Software functions, though, can be split into 3 distinct categories: 1) functionality that doesn't exist on iOS (such as the toast message) will be implemented directly, 2) functionality that exists on both iOS and Android are replaced with the relevant iOS method, and 3) functionality that exists on iOS but not on Android (such as Apple's 3D Touch library) cannot be converted but can be implemented through the use of a library. Most activities, views, services, toasts, and basic content providers should be convertible from Android to iOS, according to MechDome's founder.

But as mentioned previously, there are indeed some limitations to this tool that are imposed by the nature of how iOS works. One of the biggest challenges facing an Android developer looking to convert his or her app to iOS is how to handle a background service. iOS is much more stringent with when and what kinds of background services that third-party applications can run, for better or worse. Furthermore, the rich intent system present in Android that allows for inter-app communication is largely absent on iOS. Finally, the Google Play Services API is currently not supported, so any app relying on Google services will not function. Thus, developers will be mostly limited to functionality that is accessed directly by manual user input, which should not pose a significant problem for most games or apps.


MechDome In Use
In a private demo, the tool does indeed seem to function as advertised. Mr. Kosmiskas demonstrated compiling several fully functional Android apps into working iOS and OSX apps. Toast notifications, notifications in the Notification Center, webview, location access, text input, and general functionality of UI elements all worked in demo. The AOSP calculator running on iOS looked and functioned exactly as it does on any Android device.
calculator1 calculator2
Updating an application and re-compiling it for iOS was also shown, and the process fairly simple. The developer, in this case Mr. Kosmiskas, demonstrated changing a text box to display "XDA-Developers" in Android Studio. He then exported the app, generated a signed APK, and compiled the iOS and OS X binaries in seconds from the MechDome server. When the iOS app was started using an emulator, the changes made in Android Studio were present.

Currently, MechDome is undergoing a free public beta program. Developers can register their app on the MechDome website to receive an invite to test converting their Android app. No pricing information has yet been unveiled for the service, unfortunately. Still, it's an interesting project to stay on the lookout for if you're an Android developer looking to eventually make waves in Apple's ecosystem without having to expend much effort of your own.



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

Cross-platform development has presented a major challenge for most independent developers for many years. Quite often, it's simply too much of an time and resource investment to learn a new programming language in order to port your app over to another platform.

For years, this fact of resource allocation is what has pushed many developers to primarily focus their efforts on iOS, due to the more lucrative market. Thanks to projects such as Xamarin, however, developers who are familiar with C# have been able to push their projects across iOS, Android, and Windows Mobile. But Android developers are most familiar with writing in Java, so using Xamarin would require a developer to familiarize themselves with a new language and build platform. We've covered one project aimed at bridging the gap between mobile operating systems by providing a cross-development platform for Java developers – Intel's Multi-OS Engine – but there's no telling where that project is headed. That's where MechDome comes in.

MechDome is a start-up company based in California and incorporated in January that has developed a conversion tool to automatically create native iOS and OS X apps from your Android app. No need to learn how to use a new IDE or API. All you need to do is send an APK file to MechDome (no need to send them your source code), and the fully automated tool will compile a standalone binary in seconds for iOS and OS X that the developer can then distribute on Apple's App Store. We sat down in an interview with MechDome's founder and CEO, Mario Kosmiskas, to see a demonstration of the tool in action – and it works. Although there are some limitations due to fundamental differences between how iOS and Android operate (which we'll discuss below), the tool has already produced a few live apps on the Apple App Store such as the open-source Reddit client RedReader and an open-source Sudoku client to prove it works.


Android Apps on iOS with MechDome

The stated goal of MechDome is to allow developers to convert an unmodified Android app into a native iOS or OS X app. Compared to technologies such as Intel's Multi-OS Engine or Xamarin, an Android developer does not need to know how to bind an Objective-C library because the tool will handle that for you. Nor is there any need to use a UI builder to modify your Android app, as MechDome handles converting all Android UI elements. Yes, even Android tablet apps translate nicely into a format suitable for iPads.

rr1 RedReader on iOS rr3

 

rr3android RedReader on Android rr1android
MechDome's biggest promise is that the converted Android app will function in a manner that users of the target OS will be familiar with. For instance, the Android share menu will be replaced with the native share sheet in iOS, and will include the ability to use AirDrop if applicable. Apps that post notifications in Android will instead display a notification in iOS's Notification Center. Certain intents such as opening a camera on Android will indeed open the camera on the iOS device, and URL intents on Android will call Safari on iOS. Content providers on Android that access contacts or the calendar will instead access the relevant iOS or OS X databases for this information.
Android UI Elements on iOS Slide-In Menu Converted Share Functionality Text Input Posting Notifications

In general though, all hardware functionality required for the use of an Android app will be mapped directly to use the relevant hardware in iOS. Software functions, though, can be split into 3 distinct categories: 1) functionality that doesn't exist on iOS (such as the toast message) will be implemented directly, 2) functionality that exists on both iOS and Android are replaced with the relevant iOS method, and 3) functionality that exists on iOS but not on Android (such as Apple's 3D Touch library) cannot be converted but can be implemented through the use of a library. Most activities, views, services, toasts, and basic content providers should be convertible from Android to iOS, according to MechDome's founder.

But as mentioned previously, there are indeed some limitations to this tool that are imposed by the nature of how iOS works. One of the biggest challenges facing an Android developer looking to convert his or her app to iOS is how to handle a background service. iOS is much more stringent with when and what kinds of background services that third-party applications can run, for better or worse. Furthermore, the rich intent system present in Android that allows for inter-app communication is largely absent on iOS. Finally, the Google Play Services API is currently not supported, so any app relying on Google services will not function. Thus, developers will be mostly limited to functionality that is accessed directly by manual user input, which should not pose a significant problem for most games or apps.


MechDome In Use
In a private demo, the tool does indeed seem to function as advertised. Mr. Kosmiskas demonstrated compiling several fully functional Android apps into working iOS and OSX apps. Toast notifications, notifications in the Notification Center, webview, location access, text input, and general functionality of UI elements all worked in demo. The AOSP calculator running on iOS looked and functioned exactly as it does on any Android device.
calculator1 calculator2
Updating an application and re-compiling it for iOS was also shown, and the process fairly simple. The developer, in this case Mr. Kosmiskas, demonstrated changing a text box to display "XDA-Developers" in Android Studio. He then exported the app, generated a signed APK, and compiled the iOS and OS X binaries in seconds from the MechDome server. When the iOS app was started using an emulator, the changes made in Android Studio were present.

Currently, MechDome is undergoing a free public beta program. Developers can register their app on the MechDome website to receive an invite to test converting their Android app. No pricing information has yet been unveiled for the service, unfortunately. Still, it's an interesting project to stay on the lookout for if you're an Android developer looking to eventually make waves in Apple's ecosystem without having to expend much effort of your own.



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

Google Reportedly Wants OEMs to Integrate Google Home in Products

October 4th is going to be a big day for the Mountain View internet giant. It's all but confirmed to be the day Google officially announces the upcoming Pixel and Pixel XL smartphones. We've seen mock-ups created, the the front display assembly leaked, photos showing the front and back of the devices, and software details about how they will have 2 of each partition and how that could allow community developers to do a number of unique things with custom software.

It's fair to say the Pixel and Pixel XL have not been shy over the last couple of months. We're looking forward to seeing these two devices officially announced next week, but rumor has it that smartphones won't be the only thing Google unveils on October 4th. If true, we could see Google announcing hardware products like the Chromecast dongle that can support Ultra HD video, the Daydream View VR headset, and Google Home.

You can think of Google Home as their way to compete with the Amazon Echo. A standalone device that allows you to access your entertainment (like playing songs and playlists), manage your everyday tasks (like setting reminders, making reservations, controlling your lights and thermostat), and having access to Google search all with just your voice. It was originally thought that Google would be the sole manufacturer of this device, but a new report says otherwise.

Variety is reporting that Google is wanting other OEMs to integrate Google Home into their own products. At first it seemed like this meant something similar to how they did their OnHub router where multiple manufacturers could make their own, but it could go beyond that. At a closed door meeting with Google, it's said that Google wants other OEMs to utilize Google Home like they have been with Google Cast. The report also says that Google might be displaying "aggressive muscle-flexing" in its negotiation by telling manufacturers that they'd have to incorporate the service if they want their products to be able to use Chromecast at all.

Either way, we could see a number of products like smart TVs, soundbars, Bluetooth speakers, and more have Google Home baked right into the product and as early as next summer.

Source: Variety



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

October 4th is going to be a big day for the Mountain View internet giant. It's all but confirmed to be the day Google officially announces the upcoming Pixel and Pixel XL smartphones. We've seen mock-ups created, the the front display assembly leaked, photos showing the front and back of the devices, and software details about how they will have 2 of each partition and how that could allow community developers to do a number of unique things with custom software.

It's fair to say the Pixel and Pixel XL have not been shy over the last couple of months. We're looking forward to seeing these two devices officially announced next week, but rumor has it that smartphones won't be the only thing Google unveils on October 4th. If true, we could see Google announcing hardware products like the Chromecast dongle that can support Ultra HD video, the Daydream View VR headset, and Google Home.

You can think of Google Home as their way to compete with the Amazon Echo. A standalone device that allows you to access your entertainment (like playing songs and playlists), manage your everyday tasks (like setting reminders, making reservations, controlling your lights and thermostat), and having access to Google search all with just your voice. It was originally thought that Google would be the sole manufacturer of this device, but a new report says otherwise.

Variety is reporting that Google is wanting other OEMs to integrate Google Home into their own products. At first it seemed like this meant something similar to how they did their OnHub router where multiple manufacturers could make their own, but it could go beyond that. At a closed door meeting with Google, it's said that Google wants other OEMs to utilize Google Home like they have been with Google Cast. The report also says that Google might be displaying "aggressive muscle-flexing" in its negotiation by telling manufacturers that they'd have to incorporate the service if they want their products to be able to use Chromecast at all.

Either way, we could see a number of products like smart TVs, soundbars, Bluetooth speakers, and more have Google Home baked right into the product and as early as next summer.

Source: Variety



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

Qualcomm is Reportedly in Talks to Acquire NXP Semiconductor

Qualcomm's financial standing seemed to have started going slightly down hill when Samsung opted for their own Exynos chipset over the traditional Snapdragon variant in select markets last year. The company had to revise their sales targets for the entire year because of this and while they did beat analyst expectations in Q3 of 2015, revenues were still down $7.1 billion during the same quarter the year before.

The company saw profits increase during Q1 of this year, but overall revenue was still down 19% YoY due to a fall in shipments. Qualcomm losing some of its modem business to Intel puts pressure on them too. So we can see Qualcomm hasn't had the best track record lately (more specifically, last year), but a new report suggests they can even this out with a possible acquisition. The Wall Street Journal is reporting that Qualcomm is looking to acquire NXP Semiconductor for upwards of $30 billion.

Less than a year ago, NXP had acquired Freescale Semiconductor for a cool $12 billion that made the company the "the world's top maker of automotive electronics." See, while NXP does offer some ARM SoCs, they are focused more on the low-power components for integrated devices. The company sells a number of automobile products like temperature sensors and power management controllers.

During the first two quarters of this year, NPX saw over a 50% increase in revenue growth compared to the same quarter a year before. So while we could see some overlap here with NXP's SoC business, this acquisition could be more about expanding away from smartphones and diving into other markets. This type of diversity would allow Qualcomm to still thrive if they happen to have another slip up like they did with the Snapdragon 810, and at the very least it allows Qualcomm to expand without as much risk by acquiring a repertoire of established designs.

Source: The Wall Street Journal



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

Qualcomm's financial standing seemed to have started going slightly down hill when Samsung opted for their own Exynos chipset over the traditional Snapdragon variant in select markets last year. The company had to revise their sales targets for the entire year because of this and while they did beat analyst expectations in Q3 of 2015, revenues were still down $7.1 billion during the same quarter the year before.

The company saw profits increase during Q1 of this year, but overall revenue was still down 19% YoY due to a fall in shipments. Qualcomm losing some of its modem business to Intel puts pressure on them too. So we can see Qualcomm hasn't had the best track record lately (more specifically, last year), but a new report suggests they can even this out with a possible acquisition. The Wall Street Journal is reporting that Qualcomm is looking to acquire NXP Semiconductor for upwards of $30 billion.

Less than a year ago, NXP had acquired Freescale Semiconductor for a cool $12 billion that made the company the "the world's top maker of automotive electronics." See, while NXP does offer some ARM SoCs, they are focused more on the low-power components for integrated devices. The company sells a number of automobile products like temperature sensors and power management controllers.

During the first two quarters of this year, NPX saw over a 50% increase in revenue growth compared to the same quarter a year before. So while we could see some overlap here with NXP's SoC business, this acquisition could be more about expanding away from smartphones and diving into other markets. This type of diversity would allow Qualcomm to still thrive if they happen to have another slip up like they did with the Snapdragon 810, and at the very least it allows Qualcomm to expand without as much risk by acquiring a repertoire of established designs.

Source: The Wall Street Journal



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

LeEco Sends Out Press Invites for an Event in the US

LeEco, formerly known as LeTV, is a massive Chinese conglomerate that has their hand in all sorts of industries. The company deals with music, sports, smart TVs, cloud computing, driverless cars, and has made a big splash in China and India with their smartphone business. Much like Xiaomi, LeEco's smartphones are priced very competitively and with impressive build quality for the price you pay.

The LeEco Le Max 2 was already a popular phone for the company in India, and they just gave it a temporary price cut, down to Rs. 17,999 (~$270USD). It is hard for OEMs to compete with LeEco when it comes to price, and lately we've seen the company start to plan an expansion into the United States. They opened up their first United States headquarters in San Jose earlier this year, then bought over 48 acres of land from Yahoo a month later, and finally confirmed something big for the US this fall season.

At the time they announced their fall surprise for the United States, LeEco had already hired 400 employees. The company says they they are on track to grow this number to 1,000 before the end of the year so it seems obvious they are planning for something big in the states. Now, LeEco has started to send out press invites to various technology publications for an upcoming event that will take place in San Francisco on October 19th.

They have yet to confirm exactly what this event will be about, but many are speculating it will be the first time their products will officially be sold in the country, and some reports claim they might be bringing their services too. But again, LeEco is involved in a number of industries so it's hard to pinpoint exactly what they're planning. We would like to think they will announce plans to sell their smartphones in the US (and we believe it makes the most sense, given other similarly competitive companies are doing the same lately), but this could be about smart TVs, smart bikes, etcetera. We'll just have to wait a few weeks and see how things turn out.

Source: TechnoBuffalo



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

LeEco, formerly known as LeTV, is a massive Chinese conglomerate that has their hand in all sorts of industries. The company deals with music, sports, smart TVs, cloud computing, driverless cars, and has made a big splash in China and India with their smartphone business. Much like Xiaomi, LeEco's smartphones are priced very competitively and with impressive build quality for the price you pay.

The LeEco Le Max 2 was already a popular phone for the company in India, and they just gave it a temporary price cut, down to Rs. 17,999 (~$270USD). It is hard for OEMs to compete with LeEco when it comes to price, and lately we've seen the company start to plan an expansion into the United States. They opened up their first United States headquarters in San Jose earlier this year, then bought over 48 acres of land from Yahoo a month later, and finally confirmed something big for the US this fall season.

At the time they announced their fall surprise for the United States, LeEco had already hired 400 employees. The company says they they are on track to grow this number to 1,000 before the end of the year so it seems obvious they are planning for something big in the states. Now, LeEco has started to send out press invites to various technology publications for an upcoming event that will take place in San Francisco on October 19th.

They have yet to confirm exactly what this event will be about, but many are speculating it will be the first time their products will officially be sold in the country, and some reports claim they might be bringing their services too. But again, LeEco is involved in a number of industries so it's hard to pinpoint exactly what they're planning. We would like to think they will announce plans to sell their smartphones in the US (and we believe it makes the most sense, given other similarly competitive companies are doing the same lately), but this could be about smart TVs, smart bikes, etcetera. We'll just have to wait a few weeks and see how things turn out.

Source: TechnoBuffalo



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

Recreate a Matrix Effect in an Android App

A fun project to try inside of an Android app is to recreate the Matrix-like effect. XDA Recognized Developer sylsau has posted a tutorial detailing how you can achieve this Digital Rain effect inside a demo app.



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

A fun project to try inside of an Android app is to recreate the Matrix-like effect. XDA Recognized Developer sylsau has posted a tutorial detailing how you can achieve this Digital Rain effect inside a demo app.



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

Tuesday, September 27, 2016

I do not find LaPresse + on LeapDroid

Hi,
I loaded LeapDroid to be able to read LaPresse+ and when I go on LeapDroid and after on Googleplay, I do not find LaPresse+ to download it via LeapDroid.
Thanks to help me !


from xda-developers http://ift.tt/2cTySxU
via IFTTT
Hi,
I loaded LeapDroid to be able to read LaPresse+ and when I go on LeapDroid and after on Googleplay, I do not find LaPresse+ to download it via LeapDroid.
Thanks to help me !


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

no point in rooting?

So as to my understanding AT&T variants can't really flash any custom roms/ kernels so basically there really is no point in rooting right?


from xda-developers http://ift.tt/2dhZiga
via IFTTT
So as to my understanding AT&T variants can't really flash any custom roms/ kernels so basically there really is no point in rooting right?


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

Confused about SD Card. Help

This is the first device i ever had where you can't use the sd card as a storage and for apps. It's either or.

Am I missing something in the settings? Is there a way to use sd card for both storage and apps? Is a root required for this?


from xda-developers http://ift.tt/2cTywrh
via IFTTT
This is the first device i ever had where you can't use the sd card as a storage and for apps. It's either or.

Am I missing something in the settings? Is there a way to use sd card for both storage and apps? Is a root required for this?


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

Clone samsung a5 cyanogenmod

GOSTARIA DE SABER SE ALGUÉM SABE AONDE ENCONTRO UMA ROM, CYANOGENMOD DE PREFERENCIA PARA UM APARELHO COM AS SEGUINTES INFORMAÇÕES:

Device:
Modelo: SM-A5100 (SM-A5100)
ALPS
HARDWARE: MT 6580
RAM : 2048 MB
KERNEL ARCH: armv71
KERNEL VERSION: 3.10.72(1470467828)

MediaTek MT 6580 1,30GHz
4x ARM cortex-A7@1,30 GHz


from xda-developers http://ift.tt/2dpY1Fp
via IFTTT
GOSTARIA DE SABER SE ALGUÉM SABE AONDE ENCONTRO UMA ROM, CYANOGENMOD DE PREFERENCIA PARA UM APARELHO COM AS SEGUINTES INFORMAÇÕES:

Device:
Modelo: SM-A5100 (SM-A5100)
ALPS
HARDWARE: MT 6580
RAM : 2048 MB
KERNEL ARCH: armv71
KERNEL VERSION: 3.10.72(1470467828)

MediaTek MT 6580 1,30GHz
4x ARM cortex-A7@1,30 GHz


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

Not entering recovery after flashing Xposed on Freedom OS 1.7

After I press enter recovery my phone just goes to a black screen, and it takes me a while with button press combos to turn back on, reflashing twrp via fastboot flash recovery TWRP.img isn't working either


from xda-developers http://ift.tt/2d1yuPQ
via IFTTT
After I press enter recovery my phone just goes to a black screen, and it takes me a while with button press combos to turn back on, reflashing twrp via fastboot flash recovery TWRP.img isn't working either


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

[APP][4.0.3+] Quiet for Gmail - Block email notifications

Hi,
I was looking for an app to block notifications during weekends for some email accounts but I couldn't, so I've developed one.
It allows you to create a schedule so you can avoid work email notification in your free time.
In addition to that, it also allows you to override your schedule temporarily for special events like a day off.
I could have switched to another email client but I was happy with the official Gmail app.

How does it work?
Well, it just toggles the synchronization on/off based on the schedule you define within the app.
In order to discover the email accounts in your device I need to use the GET_ACCOUNTS permission. Sadly, it belongs to the CONTACTS group starting Android 6. Please, tell me if you find a way to work around this.

I'm sorry but I can't post the link yet, but you can find the app on Google Play, just search for "Quiet for Gmail"

I hope you find it useful and I'm looking forward to getting some feedback from you :fingers-crossed:


from xda-developers http://ift.tt/2dpXO4P
via IFTTT
Hi,
I was looking for an app to block notifications during weekends for some email accounts but I couldn't, so I've developed one.
It allows you to create a schedule so you can avoid work email notification in your free time.
In addition to that, it also allows you to override your schedule temporarily for special events like a day off.
I could have switched to another email client but I was happy with the official Gmail app.

How does it work?
Well, it just toggles the synchronization on/off based on the schedule you define within the app.
In order to discover the email accounts in your device I need to use the GET_ACCOUNTS permission. Sadly, it belongs to the CONTACTS group starting Android 6. Please, tell me if you find a way to work around this.

I'm sorry but I can't post the link yet, but you can find the app on Google Play, just search for "Quiet for Gmail"

I hope you find it useful and I'm looking forward to getting some feedback from you :fingers-crossed:


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

Stuck at boot screen after digitizer + LCD replacement. Touch doesn't work either.

Decided to replace the digitizer and LCD of Moto g3 Turbo by myself after it was cracked. Now when I connect the digitizer + LCD connector to the board the screen lights up but I'm stuck at Android logo loop. It did boot up properly twice out of some 30 tries but then the touch doesn't work. Other similar threads did not give me an answer. May I know what can be done now?

Boot screen shows following message.
Quote:

Device is locked. Status code : 0


from xda-developers http://ift.tt/2d1w0kD
via IFTTT
Decided to replace the digitizer and LCD of Moto g3 Turbo by myself after it was cracked. Now when I connect the digitizer + LCD connector to the board the screen lights up but I'm stuck at Android logo loop. It did boot up properly twice out of some 30 tries but then the touch doesn't work. Other similar threads did not give me an answer. May I know what can be done now?

Boot screen shows following message.
Quote:

Device is locked. Status code : 0


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

Micro lag on nova launcher

Folks when using nova launcher there's a clear noticeable lag when launching apps from home screens.

I've tested this versus stock oneplus launcher. On stock oneplus launcher apps launch instantly after you tap on an icon, whilst on nova the app icon lights up & then the app is launched afterwards. My best mate who also uses a oneplus 3 has been experiencing the same issue.

To test this for yourself, use oneplus launcher for a minute, opening various apps - then do the same on nova and you'll immediately notice the micro lag.

This also occurs when launching apps from the app drawer.

Anyone else noticed this?


from xda-developers http://ift.tt/2dpY8AA
via IFTTT
Folks when using nova launcher there's a clear noticeable lag when launching apps from home screens.

I've tested this versus stock oneplus launcher. On stock oneplus launcher apps launch instantly after you tap on an icon, whilst on nova the app icon lights up & then the app is launched afterwards. My best mate who also uses a oneplus 3 has been experiencing the same issue.

To test this for yourself, use oneplus launcher for a minute, opening various apps - then do the same on nova and you'll immediately notice the micro lag.

This also occurs when launching apps from the app drawer.

Anyone else noticed this?


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

Looking for the LG keyboard and two native tones.

Could a Stylo user be so kind as to send me the apk for the keyboard? I am also looking for the eternal ringtone and the doorlock notification tone. My stylo died and I miss these things.


from xda-developers http://ift.tt/2d1vRhh
via IFTTT
Could a Stylo user be so kind as to send me the apk for the keyboard? I am also looking for the eternal ringtone and the doorlock notification tone. My stylo died and I miss these things.


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

how to show clipboard huawei p9 plus

hi if i make alot of select and copy texts how can i review the old ones ( clip board ) ?


from xda-developers http://ift.tt/2dpT27o
via IFTTT
hi if i make alot of select and copy texts how can i review the old ones ( clip board ) ?


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

reversed usb tethering

Is there any way to enable usb tethering on our device, but to get internet from a pc? Currently, usb tethering is for sharing data to another device. Can we reverse it somehow?


from xda-developers http://ift.tt/2d1sJ4N
via IFTTT
Is there any way to enable usb tethering on our device, but to get internet from a pc? Currently, usb tethering is for sharing data to another device. Can we reverse it somehow?


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

Kindle Fire HDX7 Qualcomm QDloader

Hello,

I have successfully installed safestrap and CM11, When trying to unlock bootloader in order to install TWRP so I`d be able to install CM-13 I accidentially flashed original firmware (update-kindle-13.3.2.3.2_user_323001720.bin) and bricked my device. From XDA forum I find some fragments of informations, it should be possible to unbrick. Windows sees device as Qualcomm HS-USB QDLoader 9008.

Is there any possibility to reflash any working firmware, or I just created expensive paperweight? Should I provide any more informations to you guys be able to help?

Any help will be really appreciated

//EDIT
I am also quite expirienced with Linux, so some linux hacking is possible. With windows... you know :)
Also I have backup of original OS done by safestrap, if it means anything


from xda-developers http://ift.tt/2dpUkzs
via IFTTT
Hello,

I have successfully installed safestrap and CM11, When trying to unlock bootloader in order to install TWRP so I`d be able to install CM-13 I accidentially flashed original firmware (update-kindle-13.3.2.3.2_user_323001720.bin) and bricked my device. From XDA forum I find some fragments of informations, it should be possible to unbrick. Windows sees device as Qualcomm HS-USB QDLoader 9008.

Is there any possibility to reflash any working firmware, or I just created expensive paperweight? Should I provide any more informations to you guys be able to help?

Any help will be really appreciated

//EDIT
I am also quite expirienced with Linux, so some linux hacking is possible. With windows... you know :)
Also I have backup of original OS done by safestrap, if it means anything


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

Android 7.0 & Microsoft Health Notifications

Anyone running Android 7.0 and have a Microsoft Band or Band 2? I don't get any app notifications despite confirming notification access and extensive troubleshooting with M$. SMS,phone and calendar notifications work fine, but those aren't tied to notifications.

Sent from my Nexus 6P using Tapatalk


from xda-developers http://ift.tt/2d1sfvt
via IFTTT
Anyone running Android 7.0 and have a Microsoft Band or Band 2? I don't get any app notifications despite confirming notification access and extensive troubleshooting with M$. SMS,phone and calendar notifications work fine, but those aren't tied to notifications.

Sent from my Nexus 6P using Tapatalk


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

August SmartLock Issues

Anyone using an August SmartLock able to use their Nexus 6P with it? My old Nexus 6 worked fine and my wife's Moto X works fine, but my 6P doesn't see it. Running Nougat.

Sent from my Nexus 6P using Tapatalk


from xda-developers http://ift.tt/2dpUgPX
via IFTTT
Anyone using an August SmartLock able to use their Nexus 6P with it? My old Nexus 6 worked fine and my wife's Moto X works fine, but my 6P doesn't see it. Running Nougat.

Sent from my Nexus 6P using Tapatalk


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

Need help Bad!! Weired problem

Hello guys, my problem is as follows. The other night I was about to try a different ROM than the one I was on. So like always I said let me back up my ROM. I was on a recent cyanogen nightly. Maybe about a week old. So I make a back up and hit reboot. But it won't reboot. I go in to recovery to use backup that I no just said completed successful but its not there. Actually nothing is there from old ROM. So I say OK. I will just try to restore an old stock type rom I had. Well it restored but the camera kept unfortunately stopping. So I said fine. I will wipe and use same ROM but start like new. When I did that the camera still crashed and I had no sound.. Crazy...tried latest nightly and it got to part saying starting apps but never booted... Any help would be great. Had to go back to one plus one for now..


from xda-developers http://ift.tt/2dpTRxh
via IFTTT
Hello guys, my problem is as follows. The other night I was about to try a different ROM than the one I was on. So like always I said let me back up my ROM. I was on a recent cyanogen nightly. Maybe about a week old. So I make a back up and hit reboot. But it won't reboot. I go in to recovery to use backup that I no just said completed successful but its not there. Actually nothing is there from old ROM. So I say OK. I will just try to restore an old stock type rom I had. Well it restored but the camera kept unfortunately stopping. So I said fine. I will wipe and use same ROM but start like new. When I did that the camera still crashed and I had no sound.. Crazy...tried latest nightly and it got to part saying starting apps but never booted... Any help would be great. Had to go back to one plus one for now..


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

80-85% RAM used

Hello!

I have strange problem. After OTA update from 5.1 to 6 I can't work on my phone because I have a lot of freezes.

In "use memory" I have information "80% occupied" (without opening any applications and after restart a phone) - so I can use only 300MB. Most memory gets "operating system Android" ~ 500MB.
I have also snapchat and Messenger, but on 5.0 are not caused any problem.

Someone has a similar problem? How I can fix it?


from xda-developers http://ift.tt/2d1rUZH
via IFTTT
Hello!

I have strange problem. After OTA update from 5.1 to 6 I can't work on my phone because I have a lot of freezes.

In "use memory" I have information "80% occupied" (without opening any applications and after restart a phone) - so I can use only 300MB. Most memory gets "operating system Android" ~ 500MB.
I have also snapchat and Messenger, but on 5.0 are not caused any problem.

Someone has a similar problem? How I can fix it?


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

How to sign Zooper using Eclipse

How do I sign my zooper skin for publishing. I do not have a domain to use. Can I just use my name with the com. in front of it?
ex: com.johndoe.zwskin.myskinname.
Please help. This is the only thing I have stopping me from completing this project.


from xda-developers http://ift.tt/2dpTOBt
via IFTTT
How do I sign my zooper skin for publishing. I do not have a domain to use. Can I just use my name with the com. in front of it?
ex: com.johndoe.zwskin.myskinname.
Please help. This is the only thing I have stopping me from completing this project.


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

gear s with huawei p9

hi i try to connect my gear s with my huawei p9 but the problem its not sync , i try conect it by bluetooth and it works but when i download app by store for samsung gear its not connect by the app :(


from xda-developers http://ift.tt/2d1seHW
via IFTTT
hi i try to connect my gear s with my huawei p9 but the problem its not sync , i try conect it by bluetooth and it works but when i download app by store for samsung gear its not connect by the app :(


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

hide tethering from network

what's the most reliable way to use the wireless hotspot on the s6 edge without the network knowing, in the uk? there seems to be a multitude of methods available, and little consensus about how exactly networks detect tethering.

I know I've asked a relatively similar question in general Q&A, but I was genuinely hoping to get a general discussion about how cyanogenmod hides tethering, right now I would just like to know specifically what uk S6 edge users have found is reliable. thanks :)


from xda-developers http://ift.tt/2dpTXEN
via IFTTT
what's the most reliable way to use the wireless hotspot on the s6 edge without the network knowing, in the uk? there seems to be a multitude of methods available, and little consensus about how exactly networks detect tethering.

I know I've asked a relatively similar question in general Q&A, but I was genuinely hoping to get a general discussion about how cyanogenmod hides tethering, right now I would just like to know specifically what uk S6 edge users have found is reliable. thanks :)


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

İ can't install cm13?!

Hi guys,i have a s4 mini(GT-I9190),maybe because of where i live i have kitkat 4.2.2(google doesn't support this phones firmware upgrades anymore) and this version is the latest i can get.İs that the reason maybe why i can't install cm13?Yes i rooted my mobile i know how to do it,but i still don't understand it.Thanks in advance!:)


from xda-developers http://ift.tt/2d1s7wc
via IFTTT
Hi guys,i have a s4 mini(GT-I9190),maybe because of where i live i have kitkat 4.2.2(google doesn't support this phones firmware upgrades anymore) and this version is the latest i can get.İs that the reason maybe why i can't install cm13?Yes i rooted my mobile i know how to do it,but i still don't understand it.Thanks in advance!:)


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

[WORKING] [LATEST] Recovery TWRP 3.0.2.0 for ARIAFAN'S BETA5 [Micromax A120][CLONES]

Latest TWRP recovery for Micromax A120 & Clones
Base on Ariafan's beta5

I'm only sharing TWRP recovery by this post. All #CREDITS are mention below.
Download link - #2nd post

[Note : You must be on Ariafan Lollipop 5.0 Beta 5 Base ; If you are not on this specific base , results can be disastrous. So please flash your phone first with Ariafan Lollipop 5.0 Beta 5 Base.]

#Credits :
Team Win:good:
ariafan for base recovery:good:
Satyam@TG for porting:good:


Version : 3.0.2.0
Firmware required : Ariafan's beta5

Hit thanx:good: if you like it.:D


from xda-developers http://ift.tt/2czr7My
via IFTTT
Latest TWRP recovery for Micromax A120 & Clones
Base on Ariafan's beta5

I'm only sharing TWRP recovery by this post. All #CREDITS are mention below.
Download link - #2nd post

[Note : You must be on Ariafan Lollipop 5.0 Beta 5 Base ; If you are not on this specific base , results can be disastrous. So please flash your phone first with Ariafan Lollipop 5.0 Beta 5 Base.]

#Credits :
Team Win:good:
ariafan for base recovery:good:
Satyam@TG for porting:good:


Version : 3.0.2.0
Firmware required : Ariafan's beta5

Hit thanx:good: if you like it.:D


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

is there an imessage comparable app? don't want to jumpship!

Really digging the new Imessage that I've seen friends use, is there something that's comparable for us? help:D


from xda-developers http://ift.tt/2czqFhj
via IFTTT
Really digging the new Imessage that I've seen friends use, is there something that's comparable for us? help:D


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

[ROM] Request a firmware

As the title says.

Request a ROM and I'll build it for this device without holding donations above people.

Should we start with SlimROM?

I CAN DO NAMELESS ROM TOO BUT IT WILL TAKE A DAY BECAUSE THATS A LOT OF DATA.

Since CM13 is already done for this device it's really crazy to see developers act like they can't just push a build of it; get real.

Nobody needs to own this device to build for it if they know how to build


from xda-developers http://ift.tt/2dpfzSp
via IFTTT
As the title says.

Request a ROM and I'll build it for this device without holding donations above people.

Should we start with SlimROM?

I CAN DO NAMELESS ROM TOO BUT IT WILL TAKE A DAY BECAUSE THATS A LOT OF DATA.

Since CM13 is already done for this device it's really crazy to see developers act like they can't just push a build of it; get real.

Nobody needs to own this device to build for it if they know how to build


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

a510f Viper4android installer MM

Hi.

WORK İT MARSHMALLOW 6.0.1

I AM NOT RESPONSIBLE OF ANY HAPPENS ON YOUR DEVICE. FLASH THIS ZIP AT YOUR RISK

GET ALL BACKUP SYSTEM

WHAT YOU NEED

RECOVERY (ANY)
ROOT

HOW TO INSTALL XTREMEMusic

NOT A Systemless Mode

http://ift.tt/1JhMocJ

DOWNLOAD LINK XTREMEMusic ALL ANDORID VERSIONS/ROMS XTREMEMusic™ v7.5.9

- Download latest XTREMEMusic
- Flash it
- Enjoy
-Reboot

System/priv-app/SoundAlive_31_M cut, paste device memory or sdcard

Open Viper4android Instal driver,
If you do not see open file manager " System/Priv-app/Metarial_V4A/Metarial_V4A.APK" open apk and install

And reboot recovery

-Download Vipersupolicy
-Flash it
-Enjoy

Work it DoblyAtmos only dap_r6.5 and flash it :)


Attached Thumbnails
Click image for larger version Name: Screenshot_20160927-215205.png Views: N/A Size: 156.4 KB ID: 3888024   Click image for larger version Name: Screenshot_20160927-215214.png Views: N/A Size: 244.1 KB ID: 3888025  
Attached Files
File Type: zip ViPER4Android-supolicy.zip - [Click for QR Code] (124.6 KB)
File Type: zip dap_r6.5.zip - [Click for QR Code] (2.83 MB)


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

WORK İT MARSHMALLOW 6.0.1

I AM NOT RESPONSIBLE OF ANY HAPPENS ON YOUR DEVICE. FLASH THIS ZIP AT YOUR RISK

GET ALL BACKUP SYSTEM

WHAT YOU NEED

RECOVERY (ANY)
ROOT

HOW TO INSTALL XTREMEMusic

NOT A Systemless Mode

http://ift.tt/1JhMocJ

DOWNLOAD LINK XTREMEMusic ALL ANDORID VERSIONS/ROMS XTREMEMusic™ v7.5.9

- Download latest XTREMEMusic
- Flash it
- Enjoy
-Reboot

System/priv-app/SoundAlive_31_M cut, paste device memory or sdcard

Open Viper4android Instal driver,
If you do not see open file manager " System/Priv-app/Metarial_V4A/Metarial_V4A.APK" open apk and install

And reboot recovery

-Download Vipersupolicy
-Flash it
-Enjoy

Work it DoblyAtmos only dap_r6.5 and flash it :)


Attached Thumbnails
Click image for larger version Name: Screenshot_20160927-215205.png Views: N/A Size: 156.4 KB ID: 3888024   Click image for larger version Name: Screenshot_20160927-215214.png Views: N/A Size: 244.1 KB ID: 3888025  
Attached Files
File Type: zip ViPER4Android-supolicy.zip - [Click for QR Code] (124.6 KB)
File Type: zip dap_r6.5.zip - [Click for QR Code] (2.83 MB)


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

Factory reset with unlocked bootloader? (Unrooted)

I unlocked my bootloader but never got around to rooting and won't be bothering now.

Just wondering if it's safe to do a factory reset? I'm not bothered if the bootloader relocks.

Thanks for any help!


from xda-developers http://ift.tt/2czqhj5
via IFTTT
I unlocked my bootloader but never got around to rooting and won't be bothering now.

Just wondering if it's safe to do a factory reset? I'm not bothered if the bootloader relocks.

Thanks for any help!


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

Bootloader unlock problems?

Hello,

I bought a 64gb version throw gearbest and they installed a vendors version 7.3.14.0.0 not oficial rom. With defeats the purpose of the bootloader being locked.

I want to install the original miui 8 china or miui 8 from xiaomi.eu.
If I unlock my bootloader by submitting the request to xiaomi what I lose? What are the disavantages?
Does the fingerprint reader works on a bootloader unlocked phone with official miui 8 china?
Does it work with xiaomi.eu rom?

What are the features that cease to work with an unlocked bootloader with these two roms?

If I install xiaomi.eu rom without unlock the bootloader using Doom Slayer method I must not update by OTA or I will brick it, right?
And oficial miui 8 can I update by OTA?

Sorry for these questions but is my first xiaomi with locked bootloader and don't want to screw up by not knowing the consequences of each method?

Thanks in advance


from xda-developers http://ift.tt/2dpfFJA
via IFTTT
Hello,

I bought a 64gb version throw gearbest and they installed a vendors version 7.3.14.0.0 not oficial rom. With defeats the purpose of the bootloader being locked.

I want to install the original miui 8 china or miui 8 from xiaomi.eu.
If I unlock my bootloader by submitting the request to xiaomi what I lose? What are the disavantages?
Does the fingerprint reader works on a bootloader unlocked phone with official miui 8 china?
Does it work with xiaomi.eu rom?

What are the features that cease to work with an unlocked bootloader with these two roms?

If I install xiaomi.eu rom without unlock the bootloader using Doom Slayer method I must not update by OTA or I will brick it, right?
And oficial miui 8 can I update by OTA?

Sorry for these questions but is my first xiaomi with locked bootloader and don't want to screw up by not knowing the consequences of each method?

Thanks in advance


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

Galaxy J5 adaptable storage 6.0.1

Hello

I have tested this method to enable adaptable storage and use external SDcard as internal memory from here:
http://ift.tt/2dblIOy

1. Download: http://ift.tt/2dpeZ77
2. Flash it with TWRP
3. Go to Storage - SDcard
4. Format sdcard it will prompt you to use it as internal memory, select that, wait for process to finish, reboot.

Now you have external sdcard as internal memory, i have tested this on J500F on marshmallow 6.0.1 and it works, only problem is that Smart Manager reports 97% used memory out of 64GB :eek:, cleaning and other functions works like normal, but this is not a problem since i delete Smart Manager anyways.

All credits go to original creators of this mod.


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

I have tested this method to enable adaptable storage and use external SDcard as internal memory from here:
http://ift.tt/2dblIOy

1. Download: http://ift.tt/2dpeZ77
2. Flash it with TWRP
3. Go to Storage - SDcard
4. Format sdcard it will prompt you to use it as internal memory, select that, wait for process to finish, reboot.

Now you have external sdcard as internal memory, i have tested this on J500F on marshmallow 6.0.1 and it works, only problem is that Smart Manager reports 97% used memory out of 64GB :eek:, cleaning and other functions works like normal, but this is not a problem since i delete Smart Manager anyways.

All credits go to original creators of this mod.


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

No phone signal due to water damage/corrosion?

Hi at all,

my friends Note 4 N910f (only a few months old) had some problems with the cellular reception and then suddenly it had no reception at all. It was always showing that there was no signal at all. So as you do, he took it back to his provider (VF) and they send it to their "repair shop".
But the results of the diagnosis weren't good at all. They say that water (or some fluid) damaged the motherboard so they won't repair his phone.

I attached the photo of the "technician".



But what I don't understand is that the phone was never in contact with water and always protected by a case. How can it corrode?

...And Yes the motherboard is corroded but everything else works fine: wifi, bluetooth, sim recognition etc...

So to all you experts out there, is this "water damage" or corrosion really the cause of the problem? Or better said do you think it was the cause? :confused:

Thanks for the help :good:

Attached Thumbnails
Click image for larger version Name: MB corrosion.jpg Views: N/A Size: 123.1 KB ID: 3888014  


from xda-developers http://ift.tt/2dpf8Yk
via IFTTT
Hi at all,

my friends Note 4 N910f (only a few months old) had some problems with the cellular reception and then suddenly it had no reception at all. It was always showing that there was no signal at all. So as you do, he took it back to his provider (VF) and they send it to their "repair shop".
But the results of the diagnosis weren't good at all. They say that water (or some fluid) damaged the motherboard so they won't repair his phone.

I attached the photo of the "technician".



But what I don't understand is that the phone was never in contact with water and always protected by a case. How can it corrode?

...And Yes the motherboard is corroded but everything else works fine: wifi, bluetooth, sim recognition etc...

So to all you experts out there, is this "water damage" or corrosion really the cause of the problem? Or better said do you think it was the cause? :confused:

Thanks for the help :good:

Attached Thumbnails
Click image for larger version Name: MB corrosion.jpg Views: N/A Size: 123.1 KB ID: 3888014  


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

LG H811, cant flash KDZ or resurection remix, please help

hello i think i bricked my LG G4 H811 20i, and im asking for advice on what to do

im going to break this down into a few parts
1) the device and its setup
2) what caused the inital problem, and what changed
3) what i did, after.
4) its current state
5) my questions

part 1: the device and its setup
the device is a tmobile LG G4 H811 with the 20i bootloader
i know im on 20i because as soon as i got the phone (or return to stock) i turned off the cell data and wifi. (plus lg up reports my device as a h81120i)
my bootloader is unlocked.
i was running official resurection remix with the super su binary replaced with magisk and llama sweet kernel

part 2: what i belive caused the inital problem and what changed
yesterday i decided to try the CTT mod
after installing (i already had a previous backup on hand) it went through the initialing apps and got stuck on starting android
i booted back into recovery and cleared dalvik and cache and rebooted, it initialized the apps but hung at starting android.

part 3: what i did, after.
so i resorted to a backup i had previously made, which completed initial boot initialized the apps and got stuck at the starting android again. the backup had the same rom as i was running, just older data.
so i pull the battery, booted into recovery and did a clean flash of the rom, i formatted system, data, cache, dalvik/art before flashing. i keep the rom on my phone for those just in case times.
it did the same again.
so now i tried to restore with a kdz using LG up
it stopped at 9% with error 0x2000 invalid command response
i did not try lg flash tool

i also tried restoring the 20i complete zip from autoprime in here http://ift.tt/1QsMdwY
after i install it and tap reboot twrp tells me no os installed, i ignored it, because fastboot is still working, and it booted fine.

next i flashed resurrection remix using normal methods and left it on all night, in the morning it was still starting android, a good 7 hours later.

part 4: its current state
its back on stock, however im going to leave the device off until i get this figured out.
if i try and flash resurection remix or a backup it hangs after initalizing apps.
i can still boot into recovery, fastboot, and download modes, just fine.
but i cant flash the kdz using LG up.

part 5: my questions
im wondering a few things.
a) if a tot restore would help me, however i cant find a h811 20i tot.
b) what does it lgup's error 0x2000 invalid command response mean.
c) is there anything else i can do to fix my phone.

if you need any further info from me please let me know and i will post it ASAP


from xda-developers http://ift.tt/2czqeUr
via IFTTT
hello i think i bricked my LG G4 H811 20i, and im asking for advice on what to do

im going to break this down into a few parts
1) the device and its setup
2) what caused the inital problem, and what changed
3) what i did, after.
4) its current state
5) my questions

part 1: the device and its setup
the device is a tmobile LG G4 H811 with the 20i bootloader
i know im on 20i because as soon as i got the phone (or return to stock) i turned off the cell data and wifi. (plus lg up reports my device as a h81120i)
my bootloader is unlocked.
i was running official resurection remix with the super su binary replaced with magisk and llama sweet kernel

part 2: what i belive caused the inital problem and what changed
yesterday i decided to try the CTT mod
after installing (i already had a previous backup on hand) it went through the initialing apps and got stuck on starting android
i booted back into recovery and cleared dalvik and cache and rebooted, it initialized the apps but hung at starting android.

part 3: what i did, after.
so i resorted to a backup i had previously made, which completed initial boot initialized the apps and got stuck at the starting android again. the backup had the same rom as i was running, just older data.
so i pull the battery, booted into recovery and did a clean flash of the rom, i formatted system, data, cache, dalvik/art before flashing. i keep the rom on my phone for those just in case times.
it did the same again.
so now i tried to restore with a kdz using LG up
it stopped at 9% with error 0x2000 invalid command response
i did not try lg flash tool

i also tried restoring the 20i complete zip from autoprime in here http://ift.tt/1QsMdwY
after i install it and tap reboot twrp tells me no os installed, i ignored it, because fastboot is still working, and it booted fine.

next i flashed resurrection remix using normal methods and left it on all night, in the morning it was still starting android, a good 7 hours later.

part 4: its current state
its back on stock, however im going to leave the device off until i get this figured out.
if i try and flash resurection remix or a backup it hangs after initalizing apps.
i can still boot into recovery, fastboot, and download modes, just fine.
but i cant flash the kdz using LG up.

part 5: my questions
im wondering a few things.
a) if a tot restore would help me, however i cant find a h811 20i tot.
b) what does it lgup's error 0x2000 invalid command response mean.
c) is there anything else i can do to fix my phone.

if you need any further info from me please let me know and i will post it ASAP


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

Problem in Driver win 10

After Installing windows 10 by changing registry. My PC unable to detect my htc m8 vz.

I did try rebooting. Deleting device from Devices & Printer (Control Pannel). Nothing works.

any idea & suggestion ?










I need this to install Astoria Project .
http://ift.tt/2dpeud6


from xda-developers http://ift.tt/2czrGWK
via IFTTT
After Installing windows 10 by changing registry. My PC unable to detect my htc m8 vz.

I did try rebooting. Deleting device from Devices & Printer (Control Pannel). Nothing works.

any idea & suggestion ?










I need this to install Astoria Project .
http://ift.tt/2dpeud6


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

Need assistance!

Ok so this is the rundown. Ran Fix Contexts in TWRP recovery no longer could get phone to connect to pc to read SD card period. Ran several apps that didn't fix SD card permissions. wiped phone completely including DATA, SYSTEM, and SDCARD. had a custom rom on the phone didnt think it would wipe its wiped.
Im in TWRP no adb sideload, no fastboot from bootloader. something with file permissions is preventing phone from even being seen by PC. and no its not USB issues i tried to run RUU. it cant even see my phone.


from xda-developers http://ift.tt/2dpgcev
via IFTTT
Ok so this is the rundown. Ran Fix Contexts in TWRP recovery no longer could get phone to connect to pc to read SD card period. Ran several apps that didn't fix SD card permissions. wiped phone completely including DATA, SYSTEM, and SDCARD. had a custom rom on the phone didnt think it would wipe its wiped.
Im in TWRP no adb sideload, no fastboot from bootloader. something with file permissions is preventing phone from even being seen by PC. and no its not USB issues i tried to run RUU. it cant even see my phone.


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

New to the Note 4 Scene + a bit of a guide using linux for first time users

I've "upgraded" from the P8000, this things is astonishing and a world apart from it's/my predecessor.

Note I'm using the Samsung Galaxy Note 4 SM-N910F (trltexx) - so please change your device if following this walkthrough, and as always I can't be held responsible for flashing problems, ending the world etc etc...

I'd thought I'd post here for the reference for anyone else getting into the scene but aimed particularly at linux users. I can't thank the cyanogenmod team enough for the quality of there wiki. I'm sharing my experience using debian jessie 8.6 + heimdall. The best way to follow the guide is as follows:

1. General Overview

Go-to the general page, useful to know how to get into boot/recovery mode.

2. Installing the goods!

This applies to every device here and I can't recommend this method enough. If you have previously installed heimdall, heimdall-flash, heimdall-frontend I'd remove this before moving onto this bit as this caused an enormous headache for me as it would not entertain the pit files.

One other thing before going into terminal and installing using the guide is to install git:

Code:

sudo apt-get install git
Just this is not mentioned here. Then proceed by clicking here. Yes you manually compile the software, yes it's very very simple.

3. Into the nitty gritty

Again, please ensure you're following the guide for your device this is based on the Samsung Galaxy Note 4 SM-N910F (trltexx) - All other devices can be found via the search.

Now that the information is clear go here and follow the steps through.

I'd thought I'd put this up there as there is a minefield of information out there and this literally took 10 mins from install to loading cyanogenmod up on my device.

Have a good day.


from xda-developers http://ift.tt/2dpew4I
via IFTTT
I've "upgraded" from the P8000, this things is astonishing and a world apart from it's/my predecessor.

Note I'm using the Samsung Galaxy Note 4 SM-N910F (trltexx) - so please change your device if following this walkthrough, and as always I can't be held responsible for flashing problems, ending the world etc etc...

I'd thought I'd post here for the reference for anyone else getting into the scene but aimed particularly at linux users. I can't thank the cyanogenmod team enough for the quality of there wiki. I'm sharing my experience using debian jessie 8.6 + heimdall. The best way to follow the guide is as follows:

1. General Overview

Go-to the general page, useful to know how to get into boot/recovery mode.

2. Installing the goods!

This applies to every device here and I can't recommend this method enough. If you have previously installed heimdall, heimdall-flash, heimdall-frontend I'd remove this before moving onto this bit as this caused an enormous headache for me as it would not entertain the pit files.

One other thing before going into terminal and installing using the guide is to install git:

Code:

sudo apt-get install git
Just this is not mentioned here. Then proceed by clicking here. Yes you manually compile the software, yes it's very very simple.

3. Into the nitty gritty

Again, please ensure you're following the guide for your device this is based on the Samsung Galaxy Note 4 SM-N910F (trltexx) - All other devices can be found via the search.

Now that the information is clear go here and follow the steps through.

I'd thought I'd put this up there as there is a minefield of information out there and this literally took 10 mins from install to loading cyanogenmod up on my device.

Have a good day.


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

Gain access to Write On PDF



Sent from my SM-N930P using Tapatalk


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


Sent from my SM-N930P using Tapatalk


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

[KERNEL] (27-SEP) GoogyMax-7S 1.2 [MM] (Linux 3.18.42 / GCC 7.0)

This kernel is for Samsung S7 G930F ONLY !!!


Features :

[/SIZE][/COLOR][/I][/U][/B] - Based on G930FXXU1BPHJ Source drop
- Synced with G930FXXU1BPHJ source drop & ramdisk
- Patched to latest Linux 3.18.42
- Compiled with sabermod aarch64 gcc 7.0 specific optimizations :svetius:
- Init.d support
- SELinux set to Permissive mode
- SystemLess root support
- Changes and tweaks for better performance & battery life

- MORE TO COME ...

Thanks :

The Beta Team : Empty for now

- Samsung : For the code source
- All the talented devs I cherry-picked their commits (Proper credits in my github) especially @Jesec & @Tkkg1994
- sabermod team
- @qrashers for the Googy-Max Kernel logo & user / betatester signatures
- THE WONDERFUL XDA COMMUNITY !!! :cool:

You want to donate ? ==> Donate

Sources : http://ift.tt/2dhNJ8E

Signature for users :


XDA:DevDB Information
[KERNEL] (27-SEP) GoogyMax-7S 1.2 [MM] (Linux 3.18.42 / GCC 7.0), Kernel for the Samsung Galaxy S7

Contributors
googy_anas
Source Code: http://ift.tt/2dhNJ8E

Kernel Special Features:

Version Information
Status: Stable
Current Stable Version: 1.0
Stable Release Date: 2016-09-27

Created 2016-09-27
Last Updated 2016-09-27


from xda-developers http://ift.tt/2cTlABG
via IFTTT
This kernel is for Samsung S7 G930F ONLY !!!


Features :

[/SIZE][/COLOR][/I][/U][/B] - Based on G930FXXU1BPHJ Source drop
- Synced with G930FXXU1BPHJ source drop & ramdisk
- Patched to latest Linux 3.18.42
- Compiled with sabermod aarch64 gcc 7.0 specific optimizations :svetius:
- Init.d support
- SELinux set to Permissive mode
- SystemLess root support
- Changes and tweaks for better performance & battery life

- MORE TO COME ...

Thanks :

The Beta Team : Empty for now

- Samsung : For the code source
- All the talented devs I cherry-picked their commits (Proper credits in my github) especially @Jesec & @Tkkg1994
- sabermod team
- @qrashers for the Googy-Max Kernel logo & user / betatester signatures
- THE WONDERFUL XDA COMMUNITY !!! :cool:

You want to donate ? ==> Donate

Sources : http://ift.tt/2dhNJ8E

Signature for users :


XDA:DevDB Information
[KERNEL] (27-SEP) GoogyMax-7S 1.2 [MM] (Linux 3.18.42 / GCC 7.0), Kernel for the Samsung Galaxy S7

Contributors
googy_anas
Source Code: http://ift.tt/2dhNJ8E

Kernel Special Features:

Version Information
Status: Stable
Current Stable Version: 1.0
Stable Release Date: 2016-09-27

Created 2016-09-27
Last Updated 2016-09-27


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

Ultimate shield?

Hello has anyone tried this
http://ift.tt/2bqmMwv
How good is this and can anyone recommend a similar all round protector please?


from xda-developers http://ift.tt/2dhLrGC
via IFTTT
Hello has anyone tried this
http://ift.tt/2bqmMwv
How good is this and can anyone recommend a similar all round protector please?


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

Screen not appearing as soon as the call is connected.

Hi there,

Whenever there is a call, my phone screen will go blank and unless the caller hangs up, I cannot end the call from my end because the screen does not appear. I have to use the power button to make it come out of the dialer app. I have tried using factory reset but that did not work out. Could anyone take the pains to tell me how to resolve this issue?:D


from xda-developers http://ift.tt/2d1i7CX
via IFTTT
Hi there,

Whenever there is a call, my phone screen will go blank and unless the caller hangs up, I cannot end the call from my end because the screen does not appear. I have to use the power button to make it come out of the dialer app. I have tried using factory reset but that did not work out. Could anyone take the pains to tell me how to resolve this issue?:D


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

Is there any app I can use to disable headset remote control?

Hello, I think I have a faulty headset since when it's plugged in I get the playback randomly paused and the volume randomly changed.

Is there any app I can use to disable headset control? That would help me diagnosing what's going on.


from xda-developers http://ift.tt/2dpKqxz
via IFTTT
Hello, I think I have a faulty headset since when it's plugged in I get the playback randomly paused and the volume randomly changed.

Is there any app I can use to disable headset control? That would help me diagnosing what's going on.


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

Magisk Systemless Root on SGP321

Hello you all
I've been trying to make magisk Systemless Root work on my Z Tablet but haven't had any succes.Has anyone succeeded in doing it?
If yes can you share how you did.
Thanks.


from xda-developers http://ift.tt/2cIQor4
via IFTTT
Hello you all
I've been trying to make magisk Systemless Root work on my Z Tablet but haven't had any succes.Has anyone succeeded in doing it?
If yes can you share how you did.
Thanks.


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

Red Screen after TWRP Flash

hi,
just flashed twrp with odin (green pass) on reboot i got a red screen can no longer get to download screen odin sees device but does not setupconnection cannot get past this red screen any help please


from xda-developers http://ift.tt/2dhIan8
via IFTTT
hi,
just flashed twrp with odin (green pass) on reboot i got a red screen can no longer get to download screen odin sees device but does not setupconnection cannot get past this red screen any help please


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

Tablet alcatel does not turn on

My old tablet does not turn on is not the charger, only loads the drivers in my pc. I step after having used the upgrade pc


from xda-developers http://ift.tt/2cThOrX
via IFTTT
My old tablet does not turn on is not the charger, only loads the drivers in my pc. I step after having used the upgrade pc


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

{Info] YouTube Go

so YouTube has been announced and is slowly rolling out in India. YouTube goes seems to be a viable Tubemate replacement with all the little bugs that crop up in tubemate. YouTube Go will seemingly be for videos only but we'll hope that changes since it's has not launched yet.

Here is some info on it for you people (clarification: when I say you people I don't mean black people)

You can sign up for the service here

You can read about the Official blog post here

Hopefully someone find that helpful! :victory: and if you find a legit apk post a link below & i'll update the OP.


from xda-developers http://ift.tt/2d1i2iS
via IFTTT
so YouTube has been announced and is slowly rolling out in India. YouTube goes seems to be a viable Tubemate replacement with all the little bugs that crop up in tubemate. YouTube Go will seemingly be for videos only but we'll hope that changes since it's has not launched yet.

Here is some info on it for you people (clarification: when I say you people I don't mean black people)

You can sign up for the service here

You can read about the Official blog post here

Hopefully someone find that helpful! :victory: and if you find a legit apk post a link below & i'll update the OP.


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

Elephone P9000 - Wireless Update Problems

Hi all - I hope someone can help me out.

Ive just bought a P9000 as an upgrade for my P8000 and i'm not overly impressed yet. Battery life is shocking and finger print reader seems suspect and WIFI signal is up and down.

I had a notification saying there is an wireless update and this update could potentially fix my problems.
I download the update file and select to install it but once the phone reboots, it says file is corrupt and I have to reboot causing the update not to complete .I have screen shots but you cant seem to upload Jpegs to this site.

The phone is not rooted and its running Android 6.0

Has anyone else had problems. Ive searched other threads but cant find anything.

Thank you all in advance.
Andy


from xda-developers http://ift.tt/2dpKCgy
via IFTTT
Hi all - I hope someone can help me out.

Ive just bought a P9000 as an upgrade for my P8000 and i'm not overly impressed yet. Battery life is shocking and finger print reader seems suspect and WIFI signal is up and down.

I had a notification saying there is an wireless update and this update could potentially fix my problems.
I download the update file and select to install it but once the phone reboots, it says file is corrupt and I have to reboot causing the update not to complete .I have screen shots but you cant seem to upload Jpegs to this site.

The phone is not rooted and its running Android 6.0

Has anyone else had problems. Ive searched other threads but cant find anything.

Thank you all in advance.
Andy


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

Cyanogenmod keep flashing CM-recovery over philz

Hello folks :)

I want to ask is there any way to stop cyanogenmod installing his recovery over Philz ? I ported it to Redmi note 2 and don't know how to solve this problem. Recovery flashing in developer options is disabled


from xda-developers http://ift.tt/2dhI4fl
via IFTTT
Hello folks :)

I want to ask is there any way to stop cyanogenmod installing his recovery over Philz ? I ported it to Redmi note 2 and don't know how to solve this problem. Recovery flashing in developer options is disabled


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

Screen burn report for motorola

Guys who ever is having screen burn reply with details in the below form on the given link.Motorola executive asked for people having the issue reply with details on the forum.Format:
Full name:
Mobile number:
Imei number:
Link: http://ift.tt/2dhIX7O


from xda-developers http://ift.tt/2cIQuPn
via IFTTT
Guys who ever is having screen burn reply with details in the below form on the given link.Motorola executive asked for people having the issue reply with details on the forum.Format:
Full name:
Mobile number:
Imei number:
Link: http://ift.tt/2dhIX7O


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

AT&T H810 Group Message Limit to 10?

So I'm on G4 number 2.5 (Had the first one replaced and had the second one repaired). For a while, any group message that was larger than 10 people got split up into multiple groups. If I received a group message larger than 10 people, it would only show my a group message w/ 10 people, and then if anyone outside of those 10 people responded, it would start a new thread on my phone with only 10 people with some of the 10 people from the original thread. And if I responded to any of these multiple threads that resulted, it would only send to those 10 people in that specific thread, not the whole group.

Well, this eventually seemed to be resolved without any action done by me. I believe it was around the same time as the July update that added advance messaging. So I was happy.

...until my phone bootlooped in August soon after I downloaded the August 2 update. I sent it in for repairs, and had to rely on my old Galaxy S4 for a bit, and the problem came back. And then when I got my G4 back, I assumed it would behave just like it was before the update and bootloop.

Nope. Group messages are jacked up again.

Any suggestions? I contacted AT&T, and they said it's a limit on the phone. Since I wasn't really able to use my phone right after the update, I cannot verify whether the update added a limit to group sizes, and I haven't seen any documentation. I feel skeptical that they added a limit, and I'm pretty sure this is an AT&T problem, but I'm open for any and all suggestions. Well, within reason, I suppose.

Thanks!


from xda-developers http://ift.tt/2dhHDSp
via IFTTT
So I'm on G4 number 2.5 (Had the first one replaced and had the second one repaired). For a while, any group message that was larger than 10 people got split up into multiple groups. If I received a group message larger than 10 people, it would only show my a group message w/ 10 people, and then if anyone outside of those 10 people responded, it would start a new thread on my phone with only 10 people with some of the 10 people from the original thread. And if I responded to any of these multiple threads that resulted, it would only send to those 10 people in that specific thread, not the whole group.

Well, this eventually seemed to be resolved without any action done by me. I believe it was around the same time as the July update that added advance messaging. So I was happy.

...until my phone bootlooped in August soon after I downloaded the August 2 update. I sent it in for repairs, and had to rely on my old Galaxy S4 for a bit, and the problem came back. And then when I got my G4 back, I assumed it would behave just like it was before the update and bootloop.

Nope. Group messages are jacked up again.

Any suggestions? I contacted AT&T, and they said it's a limit on the phone. Since I wasn't really able to use my phone right after the update, I cannot verify whether the update added a limit to group sizes, and I haven't seen any documentation. I feel skeptical that they added a limit, and I'm pretty sure this is an AT&T problem, but I'm open for any and all suggestions. Well, within reason, I suppose.

Thanks!


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

Stock Recovery not working after Nougat Update.

I Recently Updated to Nougat through the standard fastboot flash method.
Now whenever i try to get into recovery mode or try to reset the phone it gets stuck on the Google logo.

I have tried TWRP it works perfectly fine. But the stock recovery never works. If anyone knows a workaround please share.

P.S The phone is not rooted.

Thanks.


from xda-developers http://ift.tt/2cIPnPK
via IFTTT
I Recently Updated to Nougat through the standard fastboot flash method.
Now whenever i try to get into recovery mode or try to reset the phone it gets stuck on the Google logo.

I have tried TWRP it works perfectly fine. But the stock recovery never works. If anyone knows a workaround please share.

P.S The phone is not rooted.

Thanks.


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

What's going to be your next device?

My deepest apologies if this is in the wrong place, but I need to ask this question some place. If this has been asked before, the search did not return anything that caught my eye, please feel free to point me in the correct direction! Considering that I have Verizon as a carrier and live in the US, I thought I would ask this audience to see what device has caught your eye!
My upgrade date is drawing near and I need to decide on a device that I want to give a shot next, and I would like to avoid being disappointed in my next device.

What is your next device going to be, and why?


I have been keeping my eye on the newest Nexus (now the Pixel) phones, but I really can't see myself giving up my sd card slot. I am also kind of partial to the removable battery.

I really like this phone, but the development has been poor due to Verizon's locked bootloader. I have a feeling this will be the case with ALL Verizon phones, but I have unlocked bootloaders in the past (Even my Note 3 finally got a bootloader unlock!).

My real pull to the Nexus/Pixel was the fact that it's a Google phone, it gets the latest Operating System updates, and AFAIK they were able to unlock the bootloader in the past (please correct me if I am wrong, as I have not really ever owned a Nexus device).

I really enjoy the ability to install a custom Rom and modify the OS (I LOATHE the stock DPI on most devices!!!) and I can't exactly get tethering on my package (but there is usually an app for that ;) ). I would like to find something powerful enough to keep me happy for the next few months, because lets face it, we all start to long for a new device.

Thank you for your time and consideration!


from xda-developers http://ift.tt/2dhIZfZ
via IFTTT
My deepest apologies if this is in the wrong place, but I need to ask this question some place. If this has been asked before, the search did not return anything that caught my eye, please feel free to point me in the correct direction! Considering that I have Verizon as a carrier and live in the US, I thought I would ask this audience to see what device has caught your eye!
My upgrade date is drawing near and I need to decide on a device that I want to give a shot next, and I would like to avoid being disappointed in my next device.

What is your next device going to be, and why?


I have been keeping my eye on the newest Nexus (now the Pixel) phones, but I really can't see myself giving up my sd card slot. I am also kind of partial to the removable battery.

I really like this phone, but the development has been poor due to Verizon's locked bootloader. I have a feeling this will be the case with ALL Verizon phones, but I have unlocked bootloaders in the past (Even my Note 3 finally got a bootloader unlock!).

My real pull to the Nexus/Pixel was the fact that it's a Google phone, it gets the latest Operating System updates, and AFAIK they were able to unlock the bootloader in the past (please correct me if I am wrong, as I have not really ever owned a Nexus device).

I really enjoy the ability to install a custom Rom and modify the OS (I LOATHE the stock DPI on most devices!!!) and I can't exactly get tethering on my package (but there is usually an app for that ;) ). I would like to find something powerful enough to keep me happy for the next few months, because lets face it, we all start to long for a new device.

Thank you for your time and consideration!


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

Auto move files to SD card

The S7, great as it is, stil uses the SD card for some things. For example, for multi shot photos. But also some apps (Sony Playmemories...) do not allow one to select the SD card to store the imported pictures.

I found "Redirect Pro" (http://ift.tt/2dhHP3N). That would probably do what I want (move files from folder on internal SD automatically to folder on SD card), except I also cannot select the SD card in that app as a destination.

So... what am I doing wrong? Does anyone have a working solution?


from xda-developers http://ift.tt/2cIQI99
via IFTTT
The S7, great as it is, stil uses the SD card for some things. For example, for multi shot photos. But also some apps (Sony Playmemories...) do not allow one to select the SD card to store the imported pictures.

I found "Redirect Pro" (http://ift.tt/2dhHP3N). That would probably do what I want (move files from folder on internal SD automatically to folder on SD card), except I also cannot select the SD card in that app as a destination.

So... what am I doing wrong? Does anyone have a working solution?


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

Bootloader Changes Yes to No

Hi Friends, I Need a Help , My Bootloader has changed "Yes" to "No" , After i root , backup TA Backup , Restore the TA, I Saw my drm keys are restored , my bootloader status shows "No" ,
I Attached a Screen Shot Here

Please give me a solution to back No to "Yes"

Attached Thumbnails
Click image for larger version Name: sketch-1474999069802.png Views: N/A Size: 107.1 KB ID: 3887988   Click image for larger version Name: sketch-1474999113882.png Views: N/A Size: 153.7 KB ID: 3887989  


from xda-developers http://ift.tt/2dhHQVE
via IFTTT
Hi Friends, I Need a Help , My Bootloader has changed "Yes" to "No" , After i root , backup TA Backup , Restore the TA, I Saw my drm keys are restored , my bootloader status shows "No" ,
I Attached a Screen Shot Here

Please give me a solution to back No to "Yes"

Attached Thumbnails
Click image for larger version Name: sketch-1474999069802.png Views: N/A Size: 107.1 KB ID: 3887988   Click image for larger version Name: sketch-1474999113882.png Views: N/A Size: 153.7 KB ID: 3887989  


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

One simple question: fast charging

Hi,

CM roms or GPE ROMs support fast charging ? beacuse with my Samsung Fast charger it has a very slow charge like complete in 2-3 hours.

Thanks !


from xda-developers http://ift.tt/2cIPV8h
via IFTTT
Hi,

CM roms or GPE ROMs support fast charging ? beacuse with my Samsung Fast charger it has a very slow charge like complete in 2-3 hours.

Thanks !


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

Monday, September 26, 2016

ADB devices not found

I have a Le 1 Pro US version, recently updated with the official 13s update zip. Trying to root over the weekend, but got stuck on the ADB devices not listed, has installed proper ADB, google driver, but never shows up. Anyone has any idea of why?


from xda-developers http://ift.tt/2duoNIX
via IFTTT
I have a Le 1 Pro US version, recently updated with the official 13s update zip. Trying to root over the weekend, but got stuck on the ADB devices not listed, has installed proper ADB, google driver, but never shows up. Anyone has any idea of why?


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

OPO touch screen issue

Hi

I'm using trying to use the stylus and I get a weird behavior only on OnePlus One phone.

I've activated the "show touches" option in dev settings of OnePlus One, so I see the circle on each touch.
The issue is that the first time the finger touches screen and is moving inside that circle, the circle doesn't move. This makes all drawing apps not register any movement even though the finger is moving. Once the finger goes outside the circle, the circle starts moving and then even very small finger movements are registered by drawing apps.
This doesn't happen on Samsung Galaxy S3 and the drawing happens even inside that little circle from the first time screen is touched. This makes drawing apps very accurate even when writing small letters.

Do you know what might cause this? Is it a hardware or software issue?
I've tried to root OPO, install several mods like CM13, Sultan's mod, SlimSaber or Resurrect mod, didn't solve the issue.

Thank you!


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

I'm using trying to use the stylus and I get a weird behavior only on OnePlus One phone.

I've activated the "show touches" option in dev settings of OnePlus One, so I see the circle on each touch.
The issue is that the first time the finger touches screen and is moving inside that circle, the circle doesn't move. This makes all drawing apps not register any movement even though the finger is moving. Once the finger goes outside the circle, the circle starts moving and then even very small finger movements are registered by drawing apps.
This doesn't happen on Samsung Galaxy S3 and the drawing happens even inside that little circle from the first time screen is touched. This makes drawing apps very accurate even when writing small letters.

Do you know what might cause this? Is it a hardware or software issue?
I've tried to root OPO, install several mods like CM13, Sultan's mod, SlimSaber or Resurrect mod, didn't solve the issue.

Thank you!


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

Contacts won't sync over bluetooth

I am having trouble getting my car stereo syncing my contacts/call logs with my phone.

I have stock rooted 6.0 I flashed myself, and all works very well. I just installed a 2016 kenwood head unit - calling and bluetooth audio work fine with the phone except the actual phone info screen on the head unit.

When you go to the phone info screen on the head unit, it tries to connect to my G3 and download calls and phone book. at this point, most phones pop a little dialog saying "would you like to give permission to device to access your phone contacts/logs, etc". My G3 does not do that.

I tried a Samsung phone running stock 6.0.1 and it popped up the dialog, and the head unit worked as desired. It must be the G3 and/or software issue.

Any one know of a trick or permissions I can edit to get it to allow.


from xda-developers http://ift.tt/2dupZfz
via IFTTT
I am having trouble getting my car stereo syncing my contacts/call logs with my phone.

I have stock rooted 6.0 I flashed myself, and all works very well. I just installed a 2016 kenwood head unit - calling and bluetooth audio work fine with the phone except the actual phone info screen on the head unit.

When you go to the phone info screen on the head unit, it tries to connect to my G3 and download calls and phone book. at this point, most phones pop a little dialog saying "would you like to give permission to device to access your phone contacts/logs, etc". My G3 does not do that.

I tried a Samsung phone running stock 6.0.1 and it popped up the dialog, and the head unit worked as desired. It must be the G3 and/or software issue.

Any one know of a trick or permissions I can edit to get it to allow.


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

Bricked Verizon Note 7?

Hey guys, I was trying to gain root on my New Note 7 With this method( http: //androiding.how/root-verizon-note-7-ph3-userdebug-firmware ) I get to the point where i flash the sprint firmware and it fails with Odin and now i cant boot my phone. Trying to figure out if there is a way to fix this or if i'm just screwed.
Comes up with a dead android with an exclamation point above him when i try to boot and I it won't let me do a factory restore.


from xda-developers http://ift.tt/2d4j12A
via IFTTT
Hey guys, I was trying to gain root on my New Note 7 With this method( http: //androiding.how/root-verizon-note-7-ph3-userdebug-firmware ) I get to the point where i flash the sprint firmware and it fails with Odin and now i cant boot my phone. Trying to figure out if there is a way to fix this or if i'm just screwed.
Comes up with a dead android with an exclamation point above him when i try to boot and I it won't let me do a factory restore.


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

Google Play Music - re-downloading tracks

Hi everybody, I'm a new member, and I come to you with what I hope is a simple enough question.

Before I activate my 90 day free-trial with Google Play Music, I want to know this. Let's follow this example:

1- my track is "song.mp3" 192kbps, customized tags;
2- upload this to Google Play;
3- delete my copy (the one which was just uploaded) from my PC's HDD.

So here's the question:
When I re-download my track, will it be my 192kbps original copy ?
Or will it be Google's 320kbps copy ? (I'm hoping it's this one, then I can enhance all my tracks' quality this way, as most of my CDs were robbed last time I and family moved out, so I can't remake the tracks anymore to 320kbps, even if I wanted to).

Thanks in advance.


from xda-developers http://ift.tt/2dupZw5
via IFTTT
Hi everybody, I'm a new member, and I come to you with what I hope is a simple enough question.

Before I activate my 90 day free-trial with Google Play Music, I want to know this. Let's follow this example:

1- my track is "song.mp3" 192kbps, customized tags;
2- upload this to Google Play;
3- delete my copy (the one which was just uploaded) from my PC's HDD.

So here's the question:
When I re-download my track, will it be my 192kbps original copy ?
Or will it be Google's 320kbps copy ? (I'm hoping it's this one, then I can enhance all my tracks' quality this way, as most of my CDs were robbed last time I and family moved out, so I can't remake the tracks anymore to 320kbps, even if I wanted to).

Thanks in advance.


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

Unable to root phone after installing Custom ROM. PLEASE HELP.

Hi Guys.

I recently installed CyanogenMod 13 on Samsung Galaxy S3 i9300. The Root access was lost and I tried to root it again.
It fails every time I try to root it. I've tried every app that roots the phone.

It's Android 6.0.1. Just in case.

Pls help.
Thanks.


from xda-developers http://ift.tt/2dx8A8D
via IFTTT
Hi Guys.

I recently installed CyanogenMod 13 on Samsung Galaxy S3 i9300. The Root access was lost and I tried to root it again.
It fails every time I try to root it. I've tried every app that roots the phone.

It's Android 6.0.1. Just in case.

Pls help.
Thanks.


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

Windows on Note

Hi,
I've a GT-N5110 and I was wondering if there's any Windows 10 emulator or if anyone tried to install on it. I couldn't find anything on the forum.
Tks!


from xda-developers http://ift.tt/2d4edua
via IFTTT
Hi,
I've a GT-N5110 and I was wondering if there's any Windows 10 emulator or if anyone tried to install on it. I couldn't find anything on the forum.
Tks!


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

Which adaway?

Which adaway should we be using with root?

Sent from my SM-N930V using Tapatalk


from xda-developers http://ift.tt/2dukWeQ
via IFTTT
Which adaway should we be using with root?

Sent from my SM-N930V using Tapatalk


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

Does not boot properly, please help

Hi,

suddenly, after a restart, the phone no longer boots - it boots, wallpaper appears and that's it. No controls, no status, no keys, nothing. The only thing which works is pressing power button the restart menu appears. Nothing else.

How to fix this? I need the data on the phone...


from xda-developers http://ift.tt/2de9TFc
via IFTTT
Hi,

suddenly, after a restart, the phone no longer boots - it boots, wallpaper appears and that's it. No controls, no status, no keys, nothing. The only thing which works is pressing power button the restart menu appears. Nothing else.

How to fix this? I need the data on the phone...


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

Download mode bug

Hello,

My LG G3 (D855 16go) is hard bricked.

I have the qualcomm 9008 Usb connection and I have flashed correctly, following the topic (http://ift.tt/1Xi6FQR)

When I flash sbl1 at the end, I try to get in download mode .
I see the screen download mode during 2 sec, and then black screen and I get back the qualcomm 9008 USB connection.
I have tried many times to flash (V10 tot or V20), but I don't know what to do.

Could someone give me a solution, please?

PS: I have tried LGUP ,but I have model unkown and i cannot select
PS2:With flashtool, I put the port 41 and when I want to flash i got the Download FAIL!!, Model Information Check Fail (with PID:NULL,IMEI:NULL,Model(nothing),DLL : D855
PS3:with Flashtool 2014,I get stuck at 4%(Upgrading S/W)

I have spent some many hours reading topics in xda or googling but I am stuck. So please help if you have an idea

Thanks,


from xda-developers http://ift.tt/2cG6GAU
via IFTTT
Hello,

My LG G3 (D855 16go) is hard bricked.

I have the qualcomm 9008 Usb connection and I have flashed correctly, following the topic (http://ift.tt/1Xi6FQR)

When I flash sbl1 at the end, I try to get in download mode .
I see the screen download mode during 2 sec, and then black screen and I get back the qualcomm 9008 USB connection.
I have tried many times to flash (V10 tot or V20), but I don't know what to do.

Could someone give me a solution, please?

PS: I have tried LGUP ,but I have model unkown and i cannot select
PS2:With flashtool, I put the port 41 and when I want to flash i got the Download FAIL!!, Model Information Check Fail (with PID:NULL,IMEI:NULL,Model(nothing),DLL : D855
PS3:with Flashtool 2014,I get stuck at 4%(Upgrading S/W)

I have spent some many hours reading topics in xda or googling but I am stuck. So please help if you have an idea

Thanks,


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

How to create this in ROM ?

The box appears after Bootanimation .How to edit the Android is upgrading box like Tesla or Xosp roms ? I have decompiled systemUI.apk and framework-res.apk but could find those files ? (Attached image)

Attached Thumbnails
Click image for larger version Name: Screencap.jpg Views: N/A Size: 171.3 KB ID: 3887100  


from xda-developers http://ift.tt/2deatTs
via IFTTT
The box appears after Bootanimation .How to edit the Android is upgrading box like Tesla or Xosp roms ? I have decompiled systemUI.apk and framework-res.apk but could find those files ? (Attached image)

Attached Thumbnails
Click image for larger version Name: Screencap.jpg Views: N/A Size: 171.3 KB ID: 3887100  


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

New to the ATT V10....no root for MM, I know, but a small question to clarify

Hello
I just received my V10, bought from swappa, and it has 5.1.1 on it. I see that there is no way to root MM, so we have to decide on LP rooted or MM unrooted, right?

If I want to root LP, can you point me to the thread? Also, I shouldn't accept the MM update once I activate the phone, right?


from xda-developers http://ift.tt/2cG6Qs4
via IFTTT
Hello
I just received my V10, bought from swappa, and it has 5.1.1 on it. I see that there is no way to root MM, so we have to decide on LP rooted or MM unrooted, right?

If I want to root LP, can you point me to the thread? Also, I shouldn't accept the MM update once I activate the phone, right?


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

Battery level vs raw battery level

Hi dev community,

I was just digging a bit into androids handling of batteries (as it is acting really weird, currently. It only changes the battery level on reboots, I think) and saw, that htc differentiates between a battery level and a raw battery level.

I could find this in the following places:
  • Code:

    grep Percentage /sys/class/power/power_supply/battery/batt_attr_text
  • Code:

    grep level_raw arch/arm/mach-msm/htc_battery_8960.c
    in xboxfanj's kernel (BTW yes, I know, it is a bit awkward that this is only in the htc_battery_8960.c and not in the htc_battery.c file. But the raw percentage gets definitely printed out on my device)

The raw percentage seems to be a bit lower than the percentage. What are the differences between them and is there some UI utility to show these battery infos?


from xda-developers http://ift.tt/2cG83zz
via IFTTT
Hi dev community,

I was just digging a bit into androids handling of batteries (as it is acting really weird, currently. It only changes the battery level on reboots, I think) and saw, that htc differentiates between a battery level and a raw battery level.

I could find this in the following places:
  • Code:

    grep Percentage /sys/class/power/power_supply/battery/batt_attr_text
  • Code:

    grep level_raw arch/arm/mach-msm/htc_battery_8960.c
    in xboxfanj's kernel (BTW yes, I know, it is a bit awkward that this is only in the htc_battery_8960.c and not in the htc_battery.c file. But the raw percentage gets definitely printed out on my device)

The raw percentage seems to be a bit lower than the percentage. What are the differences between them and is there some UI utility to show these battery infos?


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

Samsung s5 - null imei, baseband

I have s5 - sm g900f international and have messed imei, baseband, service log...donno what not...I downloaded firmware and installed after rooting ..seems nothing is working , pls. can any anyone help??
Here goes
pda G900FXXU1BOC7
CSC G900FOXA1BOC7

Pl. can you anyone point to right path?


from xda-developers http://ift.tt/2dmOmey
via IFTTT
I have s5 - sm g900f international and have messed imei, baseband, service log...donno what not...I downloaded firmware and installed after rooting ..seems nothing is working , pls. can any anyone help??
Here goes
pda G900FXXU1BOC7
CSC G900FOXA1BOC7

Pl. can you anyone point to right path?


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

Free TV Promotion

Has anybody gotten their free TV yet?
I was under the impression we would be receiving a prepaid gift card, but as we got the tracking number it says 33 pounds.


from xda-developers http://ift.tt/2deaMO5
via IFTTT
Has anybody gotten their free TV yet?
I was under the impression we would be receiving a prepaid gift card, but as we got the tracking number it says 33 pounds.


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

[warning] do not use bule's rom(s)

Hello XDA,

This is a warning that should prevent you all from getting hijacked.

As mentioned by @emlo16 already it seems like Bule has malware in his ROMs.

Post: http://ift.tt/2cG7HJk

Another one: http://ift.tt/2cG88Dl

For myself I have been hijacked while using his ROM and while using his Email app which was a BULE build.

Details to the attackers:

IP Adress: 240e:cc:b:7d2a:24c5:9fab:90a6:3008
Country: CHINA (CN)
Adress: 100 Xian Dao, Tongwei Xian, Dingxi Shi, Gansu Sheng, China

Next day someone tried to access my Google account again.

IP Adress: 39.177.140.63

AGAIN a Chinese adress. Seems like my data got sold.

What I recommend to everyone who used a ROM from BULE:

1) Change ALL of your passwords
2) Enable Two-step verification if possible
3) Share this thread to possible users who use a build from Bule too or warn them.


I hope I was able to help a few of you all. This is just a part that I and others have discovered, there might be even more. Bule could for example also easily sell the data or your IMEI to replica producers.

Keep care of yourself


from xda-developers http://ift.tt/2debdIv
via IFTTT
Hello XDA,

This is a warning that should prevent you all from getting hijacked.

As mentioned by @emlo16 already it seems like Bule has malware in his ROMs.

Post: http://ift.tt/2cG7HJk

Another one: http://ift.tt/2cG88Dl

For myself I have been hijacked while using his ROM and while using his Email app which was a BULE build.

Details to the attackers:

IP Adress: 240e:cc:b:7d2a:24c5:9fab:90a6:3008
Country: CHINA (CN)
Adress: 100 Xian Dao, Tongwei Xian, Dingxi Shi, Gansu Sheng, China

Next day someone tried to access my Google account again.

IP Adress: 39.177.140.63

AGAIN a Chinese adress. Seems like my data got sold.

What I recommend to everyone who used a ROM from BULE:

1) Change ALL of your passwords
2) Enable Two-step verification if possible
3) Share this thread to possible users who use a build from Bule too or warn them.


I hope I was able to help a few of you all. This is just a part that I and others have discovered, there might be even more. Bule could for example also easily sell the data or your IMEI to replica producers.

Keep care of yourself


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

My broken XT-910 MAXX

My device has a smashed screen, when I charge it the LED blinks green with 3 seconds apart (maybe a message), and the navigation keys lights up if you press the power button. I Could access the Motocast files by plugging it into the USB and it pops up as a XT910 device if you plug it in USB, maybe with the correct drivers I could do something with it.

Razr Maxx XT-910

You think it's worth repairing the screen?


from xda-developers http://ift.tt/2de9P8F
via IFTTT
My device has a smashed screen, when I charge it the LED blinks green with 3 seconds apart (maybe a message), and the navigation keys lights up if you press the power button. I Could access the Motocast files by plugging it into the USB and it pops up as a XT910 device if you plug it in USB, maybe with the correct drivers I could do something with it.

Razr Maxx XT-910

You think it's worth repairing the screen?


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

Systemless SuperSU + suhide

I used SuperSU included in TWRP from http://ift.tt/1hTTAjd to root my device. In this thread, it is said that only this modified version of SuperSU is working.

Is it possible to flash the included SuperSU systemless and then flash suhide from http://ift.tt/2deanv4?


from xda-developers http://ift.tt/2cG6TUQ
via IFTTT
I used SuperSU included in TWRP from http://ift.tt/1hTTAjd to root my device. In this thread, it is said that only this modified version of SuperSU is working.

Is it possible to flash the included SuperSU systemless and then flash suhide from http://ift.tt/2deanv4?


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

Android N notification sound bug

Hey, have you guys encountered this weird behaviour?

I do get the notifications. But the sound doesn't play sometimes, sometimes it plays like for 0.5 seconds. Other times it works fine.

Both my Nexus 6P and my friend's 5X has this happened, both are upgraded to Android N.

Is this a common bug?


from xda-developers http://ift.tt/2d18aZq
via IFTTT
Hey, have you guys encountered this weird behaviour?

I do get the notifications. But the sound doesn't play sometimes, sometimes it plays like for 0.5 seconds. Other times it works fine.

Both my Nexus 6P and my friend's 5X has this happened, both are upgraded to Android N.

Is this a common bug?


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

HD voice on prepaid

Any luck with getting this activated since it released yesterday?


from xda-developers http://ift.tt/2dmNZAN
via IFTTT
Any luck with getting this activated since it released yesterday?


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

MD5 Question

Hello to all. I am attempting to download and install Renegade ROM on my Sprint S6. After working on my phone for apprx. 13 hours, and many problems and lessons learned, I checked the MD5 this morning and found codes do not match. I have downloaded both versions from different links and I keep getting codes do not match. Could someone explain or educate me to what could be causing this. I am THANKFUL that my phone boots and works. I do not have ANY features besides HOTSPOT and I am VERY THANKFUL FOR THAT.
Thank you in advance and Have A Great Day
Blessings


from xda-developers http://ift.tt/2d18h7i
via IFTTT
Hello to all. I am attempting to download and install Renegade ROM on my Sprint S6. After working on my phone for apprx. 13 hours, and many problems and lessons learned, I checked the MD5 this morning and found codes do not match. I have downloaded both versions from different links and I keep getting codes do not match. Could someone explain or educate me to what could be causing this. I am THANKFUL that my phone boots and works. I do not have ANY features besides HOTSPOT and I am VERY THANKFUL FOR THAT.
Thank you in advance and Have A Great Day
Blessings


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

J500fn official marshmallow!

guys, 6.0.1 is OUT!!!! but just for italy, check it out on sammobile!!! THE MOMENT HAS ARRIVED. but wait, can we install in on different country, like im from bulgaria, can i install it without probloems?


from xda-developers http://ift.tt/2cG2QI7
via IFTTT
guys, 6.0.1 is OUT!!!! but just for italy, check it out on sammobile!!! THE MOMENT HAS ARRIVED. but wait, can we install in on different country, like im from bulgaria, can i install it without probloems?


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

I lost my USB storage after installing Resurrection Remix Lollipop 5.1.1

Hello Dear Experts!
I installed Resurrection Remix Lollipop 5.1.1 on Samsung Galaxy S2 (GT-I9100).
After installation I lost my USB storage. I cannot see my USB storage in Settings-Storage & File manager. Anyone please help me...
I will be very thankful
Please...Please....Please :crying: :crying: :crying: :crying: :crying: :crying:


from xda-developers http://ift.tt/2de3ZUS
via IFTTT
Hello Dear Experts!
I installed Resurrection Remix Lollipop 5.1.1 on Samsung Galaxy S2 (GT-I9100).
After installation I lost my USB storage. I cannot see my USB storage in Settings-Storage & File manager. Anyone please help me...
I will be very thankful
Please...Please....Please :crying: :crying: :crying: :crying: :crying: :crying:


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

2 years of trying to find solution but no one know how ( about ipsec vpn l2tp)

Hi, i have galaxy s7 edge rooted and iphone 6s jaillbreaked
First it's very easy to prohibit ipsec from l2tp protocol on iphone vpn
plugin L2TP.ppp" > options
l2tpnoipsec >> options
save options /etc/ppp/
and ipsec will be desabled !

My question is how i must do on android ?
like this but with android ? i wan't prohibit ipsec but i can't found any solution on net , please help
Millions of thank's ^^


from xda-developers http://ift.tt/2cG5368
via IFTTT
Hi, i have galaxy s7 edge rooted and iphone 6s jaillbreaked
First it's very easy to prohibit ipsec from l2tp protocol on iphone vpn
plugin L2TP.ppp" > options
l2tpnoipsec >> options
save options /etc/ppp/
and ipsec will be desabled !

My question is how i must do on android ?
like this but with android ? i wan't prohibit ipsec but i can't found any solution on net , please help
Millions of thank's ^^


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

Unlock carrier on SM-G925F 6.0.1

Hi, guys!

Is there any possibility to unlock carrier on SM-G925F, 6.0.1

Baseband version: G925FXXU3DPF1

Thank you. I really appreciate your answer


from xda-developers http://ift.tt/2de4wG5
via IFTTT
Hi, guys!

Is there any possibility to unlock carrier on SM-G925F, 6.0.1

Baseband version: G925FXXU3DPF1

Thank you. I really appreciate your answer


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

Quick settings Touch Screen Behaviour

Hey all.

I've been testing for a few weeks now, on both my recalled note 7 and my replacement and wondered whether anyone encounters the following issues. Think it could be software related bug or sorts. Definitely not hardware.

Sometimes the quick settings toggles can become unresponsive ( will work after a few presses) including the settings cog. I found this to happen mostly if the screen res is changed to QHD and the font set to small. With medium size font all works great.

Although, IF I reboot after I make any display changes, everything will work fine. I've found messing with the font settings and resolution can make the bug appear. I could pull the drop down and press the settings cog, it may or may not respond after the first press.

Now. If I set the screen res to just FULL HD with any size font, big or small every icon/setting/toggle WILL respond immediately, whether I reboot after making the changes or not.

Don't get me wrong, my phone runs GREAT (Touch wood). Just wondering whether anyone else experiences or takes notice of these things?


from xda-developers http://ift.tt/2cG3Lbw
via IFTTT
Hey all.

I've been testing for a few weeks now, on both my recalled note 7 and my replacement and wondered whether anyone encounters the following issues. Think it could be software related bug or sorts. Definitely not hardware.

Sometimes the quick settings toggles can become unresponsive ( will work after a few presses) including the settings cog. I found this to happen mostly if the screen res is changed to QHD and the font set to small. With medium size font all works great.

Although, IF I reboot after I make any display changes, everything will work fine. I've found messing with the font settings and resolution can make the bug appear. I could pull the drop down and press the settings cog, it may or may not respond after the first press.

Now. If I set the screen res to just FULL HD with any size font, big or small every icon/setting/toggle WILL respond immediately, whether I reboot after making the changes or not.

Don't get me wrong, my phone runs GREAT (Touch wood). Just wondering whether anyone else experiences or takes notice of these things?


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

Does Xposed work with ZUI?

I'm looking to buying this phone, the standard model, and i want to know if xposed works on the ZUI ROM? I've had experience with MIUI where it wouldn't boot after, so just making sure.

Thanks in advance!


from xda-developers http://ift.tt/2de4VIT
via IFTTT
I'm looking to buying this phone, the standard model, and i want to know if xposed works on the ZUI ROM? I've had experience with MIUI where it wouldn't boot after, so just making sure.

Thanks in advance!


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

2 years of trying to find solution but no one know how ( about ipsec vpn l2tp)

Hi, i have galaxy s7 edge rooted and iphone 6s jaillbreaked
First it's very easy to prohibit ipsec from l2tp protocol on iphone vpn
plugin L2TP.ppp" > options
l2tpnoipsec >> options
save options /etc/ppp/
and ipsec will be desabled !

My question is how i must do on android ?
like this but with android ? i wan't prohibit ipsec but i can't found any solution on net , please help
Millions of thank's ^^


from xda-developers http://ift.tt/2cwSzKU
via IFTTT
Hi, i have galaxy s7 edge rooted and iphone 6s jaillbreaked
First it's very easy to prohibit ipsec from l2tp protocol on iphone vpn
plugin L2TP.ppp" > options
l2tpnoipsec >> options
save options /etc/ppp/
and ipsec will be desabled !

My question is how i must do on android ?
like this but with android ? i wan't prohibit ipsec but i can't found any solution on net , please help
Millions of thank's ^^


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

Screen Off Kill Add Turkish Language

Thank you The Prophet

http://ift.tt/2cyzhK4

I added only Turkish Language

Turkish : Telefonun ekranı kapandıntan sonra arka planda çalışan uygulamalardan istediğinizi ekran kapalı iken durdurabilirsiniz. Kesinlikle tavsiye ederim. Programa sadece Türkçe dil ekledim.




Download

Lütfen Teşekkür butonuna tıklayınız.
please click on the button thanks!


Support Language :
1- Türkçe
2- English
3- French
4-Spanish


.
.


from xda-developers http://ift.tt/2dmGqhF
via IFTTT
Thank you The Prophet

http://ift.tt/2cyzhK4

I added only Turkish Language

Turkish : Telefonun ekranı kapandıntan sonra arka planda çalışan uygulamalardan istediğinizi ekran kapalı iken durdurabilirsiniz. Kesinlikle tavsiye ederim. Programa sadece Türkçe dil ekledim.




Download

Lütfen Teşekkür butonuna tıklayınız.
please click on the button thanks!


Support Language :
1- Türkçe
2- English
3- French
4-Spanish


.
.


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

Screen Off Kill Add Turkish Language

Thank you The Prophet

http://ift.tt/2cyzhK4

I added only Turkish Language

Turkish : Telefonun ekranı kapandıntan sonra arka planda çalışan uygulamalardan istediğinizi ekran kapalı iken durdurabilirsiniz. Kesinlikle tavsiye ederim. Programa sadece Türkçe dil ekledim.




Download

Lütfen Teşekkür butonuna tıklayınız.
please click on the button thanks!


Support Language :
1- Türkçe
2- English
3- French
4-Spanish


.
.


from xda-developers http://ift.tt/2cwSebl
via IFTTT
Thank you The Prophet

http://ift.tt/2cyzhK4

I added only Turkish Language

Turkish : Telefonun ekranı kapandıntan sonra arka planda çalışan uygulamalardan istediğinizi ekran kapalı iken durdurabilirsiniz. Kesinlikle tavsiye ederim. Programa sadece Türkçe dil ekledim.




Download

Lütfen Teşekkür butonuna tıklayınız.
please click on the button thanks!


Support Language :
1- Türkçe
2- English
3- French
4-Spanish


.
.


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

how to change the Gapps on sgh t999

Good evening,
I am trying to remove a load of apps from the phone, i tried to install cm13 and Gapps micro (6) but it says that that i am still on 4.3.
I am think i will have to start with 4.4.
I would like cm13,but i am getting errors when installing.


any ideas?

many thanks in advance
:confused::confused::confused:


from xda-developers http://ift.tt/2de4X3f
via IFTTT
Good evening,
I am trying to remove a load of apps from the phone, i tried to install cm13 and Gapps micro (6) but it says that that i am still on 4.3.
I am think i will have to start with 4.4.
I would like cm13,but i am getting errors when installing.


any ideas?

many thanks in advance
:confused::confused::confused:


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

new note 7 has an update

Do I need to do the update that is on my new note 7??? I would rather NOT have the green battery. I was thinking if I just dont take it I wont get a green battery???


from xda-developers http://ift.tt/2cG2VM4
via IFTTT
Do I need to do the update that is on my new note 7??? I would rather NOT have the green battery. I was thinking if I just dont take it I wont get a green battery???


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

Duos 2 Flash by Spflash

My duos 2 is based on mediatek Chip its clone and I was trying to install cwm through Spflash tool I did backup with mtk droid tools. I did whole format with spflash by accident now its all black no booting up etc. what should I do? I did try to install again with backup but its still black. :confused::confused::confused::confused:


from xda-developers http://ift.tt/2dmFFp7
via IFTTT
My duos 2 is based on mediatek Chip its clone and I was trying to install cwm through Spflash tool I did backup with mtk droid tools. I did whole format with spflash by accident now its all black no booting up etc. what should I do? I did try to install again with backup but its still black. :confused::confused::confused::confused:


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

[Hardware Mod][Teclast x98 plus II] Improving WIFI connection

WARNING! Hardware mods can brick your tablet even faster and deadlier than software, so please read carefully.
I am not responsible for your bricked tablet.


As I promised, I will share my experience about my attempts to improve the WIFI on my Teclast X98 plus II(C2D4).

A lot of users reported very bad WI-FI with this particular model, and the reason is simple:
The metal back cover! It simply shields the internals!!!. And we need to find a way around it.

First Step: Open the tablet
  • Have a plastic guitar pick and a cutter around
  • Try to find a gap to insert your pick
  • If you can't find a gap to insert the pick, slowly insert the cutter on the top of the tablet where the plastic strip is, and then insert the pick
  • Don't use the cutter to open, because you will make dents into the plastic
  • Don't force anything, be patient
  • After you inserted the pick, and you poped one part, the rest will follow
  • Don't insert the pick too deep and be extra careful with the cutter

Background: I live on the second floor, and I have a router on the first floor:
Speed before the mod: up to 5 Mbps

Now once the tablet is open we can see the internals, and it looks like it has plenty of space. We are interested in this part, the WIFI antenna:


Notice marking on the board: wifi plus(+) and minus(-)
First thing that I thought, is that maybe there is short between them. I checked with a multimeter and it was none.
I powered the tablet and did a speed test: the speeds were amazing!

So I started to experiment. There were multiple attempts but only two I found good enough.
Step TWO: Hardware mod

1. The basic way
  • You need only a pair of tweezers
  • You tweezers to unglue the tip of antenna
  • Be patient, do not apply to much force, the adhesive is strong but it slowly gives up
  • after the slim part of antena is free, make a fold 90 degrees up, so it will stick out of the case
  • Do not fold to agressive, the antenna doesn't really bends that way, so be carefull not to break it
  • make sure that antenna is not in the nearby clip and close the case
  • antenna still has adhesive, so glue it back to the screen

After you followed the steps from above, you should get something like this:

It is not very nice, but rather than an unusable tablet, this one is pretty good. Also, make sure you are not touching it when you use the tablet.
Speed after this mod: 5-15Mbps

2. Soldering extra wires
Warning! Be extra careful, while is not very difficult to solder on our tablet, I still recommend you to try to solder something before starting to work on the tablet.
You will need:
  • Soldering iron
  • Soldering supplies
  • multimeter
  • Copper wire with plastic cover(internet cable is not very good, phone cable: good)
  • Tape

Steps:
  1. Cut a piece of wire, around 5 cm long
  2. Remove the plastic from one end just a little, so you could solder it
  3. Remove the plastic from the another end, about 3 cm, so that the wires will be free
  4. Solder the short end to the (+) of wifi
  5. Check if there is no shorts between the + and -
  6. check that the original cable actually connects to original antenna
  7. (Optional) Unstick the antenna from original position and stick it to the back cover, see images for details
  8. stick the antenna exactly as shown in the image
  9. be careful, do not rush and do not twist to hard
  10. Get the free end of the soldered cable out of the case
  11. Carefully put back the cover, with the copper wires sticking out
  12. Do not press the cover fully, leave the top area a little open
  13. Insert the thin wires between the gaps(as close to outside as possible)
  14. Do not let the copper wires touch the metal back cover, twist them more to the center
  15. Tape all connections, so it will not short with back cover!!

After you solder everything. You can also see the third cable with an aluminum foil, but that doesn't really do anything



This is the image with copper wires sticking out, better put them in the cracks before snapping the back cover:


Speed after the last mod: 10-25 Mbps

Please tell me the results.

If in doubt, better ASK BEFORE TRYING!!


from xda-developers http://ift.tt/2cwSXcw
via IFTTT
WARNING! Hardware mods can brick your tablet even faster and deadlier than software, so please read carefully.
I am not responsible for your bricked tablet.


As I promised, I will share my experience about my attempts to improve the WIFI on my Teclast X98 plus II(C2D4).

A lot of users reported very bad WI-FI with this particular model, and the reason is simple:
The metal back cover! It simply shields the internals!!!. And we need to find a way around it.

First Step: Open the tablet
  • Have a plastic guitar pick and a cutter around
  • Try to find a gap to insert your pick
  • If you can't find a gap to insert the pick, slowly insert the cutter on the top of the tablet where the plastic strip is, and then insert the pick
  • Don't use the cutter to open, because you will make dents into the plastic
  • Don't force anything, be patient
  • After you inserted the pick, and you poped one part, the rest will follow
  • Don't insert the pick too deep and be extra careful with the cutter

Background: I live on the second floor, and I have a router on the first floor:
Speed before the mod: up to 5 Mbps

Now once the tablet is open we can see the internals, and it looks like it has plenty of space. We are interested in this part, the WIFI antenna:


Notice marking on the board: wifi plus(+) and minus(-)
First thing that I thought, is that maybe there is short between them. I checked with a multimeter and it was none.
I powered the tablet and did a speed test: the speeds were amazing!

So I started to experiment. There were multiple attempts but only two I found good enough.
Step TWO: Hardware mod

1. The basic way
  • You need only a pair of tweezers
  • You tweezers to unglue the tip of antenna
  • Be patient, do not apply to much force, the adhesive is strong but it slowly gives up
  • after the slim part of antena is free, make a fold 90 degrees up, so it will stick out of the case
  • Do not fold to agressive, the antenna doesn't really bends that way, so be carefull not to break it
  • make sure that antenna is not in the nearby clip and close the case
  • antenna still has adhesive, so glue it back to the screen

After you followed the steps from above, you should get something like this:

It is not very nice, but rather than an unusable tablet, this one is pretty good. Also, make sure you are not touching it when you use the tablet.
Speed after this mod: 5-15Mbps

2. Soldering extra wires
Warning! Be extra careful, while is not very difficult to solder on our tablet, I still recommend you to try to solder something before starting to work on the tablet.
You will need:
  • Soldering iron
  • Soldering supplies
  • multimeter
  • Copper wire with plastic cover(internet cable is not very good, phone cable: good)
  • Tape

Steps:
  1. Cut a piece of wire, around 5 cm long
  2. Remove the plastic from one end just a little, so you could solder it
  3. Remove the plastic from the another end, about 3 cm, so that the wires will be free
  4. Solder the short end to the (+) of wifi
  5. Check if there is no shorts between the + and -
  6. check that the original cable actually connects to original antenna
  7. (Optional) Unstick the antenna from original position and stick it to the back cover, see images for details
  8. stick the antenna exactly as shown in the image
  9. be careful, do not rush and do not twist to hard
  10. Get the free end of the soldered cable out of the case
  11. Carefully put back the cover, with the copper wires sticking out
  12. Do not press the cover fully, leave the top area a little open
  13. Insert the thin wires between the gaps(as close to outside as possible)
  14. Do not let the copper wires touch the metal back cover, twist them more to the center
  15. Tape all connections, so it will not short with back cover!!

After you solder everything. You can also see the third cable with an aluminum foil, but that doesn't really do anything



This is the image with copper wires sticking out, better put them in the cracks before snapping the back cover:


Speed after the last mod: 10-25 Mbps

Please tell me the results.

If in doubt, better ASK BEFORE TRYING!!


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

[AOSP] Nexus Experience ROM - 10.4

Hi,

Found a discussion about this ROM at http://ift.tt/2dmFMAY

I didnt find it being discussed here.

I have been using this ROM for a few days and it is very good on stability, very battery efficient, CMTE also works.

The link for download is here :

http://ift.tt/2ddzSy2

*** Dear mods, please delete this topic if it is not approppriate.

Cheers!


from xda-developers http://ift.tt/2dmFryk
via IFTTT
Hi,

Found a discussion about this ROM at http://ift.tt/2dmFMAY

I didnt find it being discussed here.

I have been using this ROM for a few days and it is very good on stability, very battery efficient, CMTE also works.

The link for download is here :

http://ift.tt/2ddzSy2

*** Dear mods, please delete this topic if it is not approppriate.

Cheers!


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

any methode for root xa f3116 without pc?

Root methods without pc, please!!!!


from xda-developers http://ift.tt/2cyzn4z
via IFTTT
Root methods without pc, please!!!!


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

USB Flash Drive

I was wondering if anyone has figured out if this Kindle can use a USB flash drive. Most information I've been able to find says no and some even said yes so I figured I'd go ahead and ask just to make sure since I can't seem to find a difinitive yes/no.

I have the HDX 7 and am currently rooted and running Fire Nexus ROM with Safestrap and a locked bootloader. I have a 64 gig Sandisk flash drive. It's the kind that has a USB on one side and a micro USB on the other so I can plug it directly into the Kindle.

Have tried using the stick root app and that doesn't detect the drive either unfortunately. Anyways was just curious if anyone found a way to do it or if its just not possible period. Thanks for taking the time to let me know!


from xda-developers http://ift.tt/2dbp3xf
via IFTTT
I was wondering if anyone has figured out if this Kindle can use a USB flash drive. Most information I've been able to find says no and some even said yes so I figured I'd go ahead and ask just to make sure since I can't seem to find a difinitive yes/no.

I have the HDX 7 and am currently rooted and running Fire Nexus ROM with Safestrap and a locked bootloader. I have a 64 gig Sandisk flash drive. It's the kind that has a USB on one side and a micro USB on the other so I can plug it directly into the Kindle.

Have tried using the stick root app and that doesn't detect the drive either unfortunately. Anyways was just curious if anyone found a way to do it or if its just not possible period. Thanks for taking the time to let me know!


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

TWRP without format userdata

Hi, is there any solution to install TWRP recovery without having to format user data, and of course without having errors like "unable to mount data".....
Thanks, I have Note 3 SD running the last MIUI for developers (Marshmallow).


from xda-developers http://ift.tt/2cyzFYZ
via IFTTT
Hi, is there any solution to install TWRP recovery without having to format user data, and of course without having errors like "unable to mount data".....
Thanks, I have Note 3 SD running the last MIUI for developers (Marshmallow).


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

Screen Off Kill Add Turkish Language

Thank you The Prophet

http://ift.tt/2cyzhK4

I added only Turkish Language

Turkish : Telefonun ekranı kapandıntan sonra arka planda çalışan uygulamalardan istediğinizi ekran kapalı iken durdurabilirsiniz. Kesinlikle tavsiye ederim. Programa sadece Türkçe dil ekledim.




Download



.


from xda-developers http://ift.tt/2cyAPDU
via IFTTT
Thank you The Prophet

http://ift.tt/2cyzhK4

I added only Turkish Language

Turkish : Telefonun ekranı kapandıntan sonra arka planda çalışan uygulamalardan istediğinizi ekran kapalı iken durdurabilirsiniz. Kesinlikle tavsiye ederim. Programa sadece Türkçe dil ekledim.




Download



.


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