Related
Does anyone else have issues with the WiFi connection while the screen is turned off? I noticed that not a single one of my music streaming / radio apps work when the screen isn't on. It works for maybe a minute before all sound just stops. Starts just fine again once I power up the screen.
Has there been any changes done to the handling of these matters in ICS perhaps?
Pretty annoying not being able to stream music over WiFi as I think I'll hit my 5GB limit on data pretty fast if I can't use the WiFi at work for this.
So has anyone else noticed these issues?
SBS_ said:
Does anyone else have issues with the WiFi connection while the screen is turned off? I noticed that not a single one of my music streaming / radio apps work when the screen isn't on. It works for maybe a minute before all sound just stops. Starts just fine again once I power up the screen.
Has there been any changes done to the handling of these matters in ICS perhaps?
Pretty annoying not being able to stream music over WiFi as I think I'll hit my 5GB limit on data pretty fast if I can't use the WiFi at work for this.
So has anyone else noticed these issues?
Click to expand...
Click to collapse
Yeah same here. I remember this being an issue with Android 2.1 for my Desire but was fixed in custom roms. Might be the same situation here again.
I remember this being an issue with my Nexus One, don't remember if it was fixed in 2.2 or 2.3. I remember testing file transfer using SwiFTP, with the bug the file transfer would go down to double digits (kB/sec), with the bug fix it would be a few hundred kB/sec, with the screen on it would hit mB/sec or so (in any Android version).
I believe this is the official issue:
http://code.google.com/p/android/issues/detail?id=9781
With my Nexus S I'm not experiencing this bug. Sscreen on still gives me a major wifi speed boost, but screen off I get a few hundred kB/sec, which should be more than enough for any streaming app. KiloBYTES btw, not bits. I'm surprised ICS and/or Galaxy Nexus brought this problem back. Or it could be something else entirely.
Are you connected via 2.4GHz or 5GHz wifi? I would think the new 5GHz radio in the GN probably has more aggressive power saving features. Try switching to 802.11b/g (instead of 802.11n, in any frequency), see if it helps.
Have you changed your WIFI sleep policy?
On my Froyo phone, if you hit menu while in the WIFI settings (I know there is no menu in ICS) you get an option to go into advanced settings where you have the option to choose your WiFi sleep policy (When screen turns off, never when plugged in, never).
There should be a way to access that advanced settings area somewhere.. My phone is a couple hundred miles away right now and I won't see it for another week so I can't be of much further help right now. However, there "was" a setting in previous versions.
best info at the time last year was here for the N1
http://www.google.com/support/forum/p/android/thread?tid=01a47ff5b0a92d52&hl=en
7xx replies there to read, but really good info. somewhere in there, maybe around#600 the info gets good, can't remember. But shortly around this time the problem was gone/fixed.
there was a guy with an app i think it was wifi fixer, i could be wrong. that worked sometimes, but battery drain was bad. Whatever google, or CM did fixed the low power save mode issue. I'm thinking it was something at the kernel level?
edit, on second thought, there's no good reason to read all that. You won't get a fix out of it anyway. It was updated away in the end, something related to MAC addresses and build numbers and frf50 or some such.
BUT this seems like the same kind of thing going on in the power save mode.
Have you checked your advanced settings?
Wi-Fi>>(settings [bottom right])>>Advanced>>Keep Wi-Fi on during sleep...
Mine was set to always by default, so I suspect that the issue lies else where...
Neville.Holland said:
Have you checked your advanced settings?
Wi-Fi>>(settings [bottom right])>>Advanced>>Keep Wi-Fi on during sleep...
Mine was set to always by default, so I suspect that the issue lies else where...
Click to expand...
Click to collapse
Same here. Mine was set to always by default but still getting this issue.
Sent from my Galaxy Nexus using XDA App
I would suggest that this issue is related to the individual applications you are using, rather than anything to do with Android.
I am able to stream music from Google Music via WiFi just fine when the screen is off, and I am also able to talk to someone on Skype via WiFi just fine when the screen is off.
oscillik said:
I would suggest that this issue is related to the individual applications you are using, rather than anything to do with Android.
I am able to stream music from Google Music via WiFi just fine when the screen is off, and I am also able to talk to someone on Skype via WiFi just fine when the screen is off.
Click to expand...
Click to collapse
Thanks for posting that; I was getting pretty worried and disappointed after reading this thread. I had to deal with this when I first got my Nexus One, until Google released the 2.2.1 update with a new Broadcom driver which finally fixed the issue. No streaming, no pushes, just nothing at all from wifi when the phone went to sleep. All traffic to/from the phone would just stop. It was maddening.
The Galaxy Nexus comes to Canada a week from today, and this would've been a show-stopper for me. At least it's working for you, so my day isn't ruined quite yet
Has this issue ever been nailed down? I've seen considerable discussion on it going back years. I've seen considerable speculation regarding WIFI mode and Governor. I've seem many of the bug reports marked closed.
Yet I have a GN on v4.0.4 and the moment the screen goes off - either because you turn it off or it just times out - the WIFI goes to h*ll. I've run ping and network trace from both sides and there is no doubt the WIFI stays connected, however latency goes way up and packets are lost... and with TCP connections it gets congested with retransmits. I've run with the governor set to "Performance" and there is no difference.
So, is there any consensus on what is causing this problem with current stock hardware/software?
I read that it's something that's been coded in for a while. Try using this:
https://play.google.com/store/apps/details?id=com.ratcash.wifiperf
-Sent via XDA Premium-
Ok, to answer my own question, this is still related to the PSP issue from years ago:
code.google.com/p/android/issues/detail?id=9781
code.google.com/p/android/issues/detail?id=15549
Bottom line is that some hardware - like GN - has an additional level of PSP on WIFI. The issue was resolved by inclusion of an additional lock mode - WIFI_MODE_FULL_HIGH_PERF - some time ago. However, its up to an application to request the new lock state if it thinks it needs it. Many don't.
So, its probably not a bad idea to contact developers of the various applications and recommend they look into the new lock level in the later APIs.
Also, the "WIFI High Performance Widget" can be used to manually hold a WIFI_MODE_FULL_HIGH_PERF lock on the WIFI if you're dealing with an application that isn't doing it its self. Beware of the other "WIFI fixes" out there, none of the ones I tested were acquiring the correct lock.
Also, from an adb shell you can use "dumpsys wifi" to see who is holding what lock, for example:
Code:
Locks acquired: 5 full, 5 full high perf, 5 scan
Locks released: 4 full, 4 full high perf, 5 scan
Locks held:
WifiLock{PANDORA type=1 [email protected]}
WifiLock{HighPerformance type=3 [email protected]}
Here you can see Pandora is only holding type=1 (WIFI_MODE_FULL) and HighPerformance is holding type=3 (WIFI_MODE_FULL_HIGH_PERF). Dumping the WIFI state takes the guess work out of it.
Tried that widget, having absolutely no luck with 'in tune' and 'winamp' for radio with the galaxy nexus verizon...
as soon as the device sleeps, wifi goes to hell and buffer drops in and out every 2 seconds. Completely unusable, any recent fixes? this is totally making me think I just bought a $400 brick since this feature was very important for me.
What may be confusing about that widget is that it is a "widget". You have to locate it under "widgets" and then put it on the surface and then click it to enable it... it should be blue when on, and black when its not.
tlum said:
What may be confusing about that widget is that it is a "widget". You have to locate it under "widgets" and then put it on the surface and then click it to enable it... it should be blue when on, and black when its not.
Click to expand...
Click to collapse
I have been trying to put the 'widget' itself (2x2 square) on the home screen but even if i hold and drag it to where I want it, it never actually appears on the screen. And of course i'm still getting crazy ping times...Does anyone else have this working on a GN (verizon - not that it should make a difference)?
I have found a few workarounds to this issue, none are great and frustrate me greatly.
1. Root and use the franco kernel. Seems people with that have no issues - since you can set? the wifi to full performance.
2. Use this wifi performance widget
3. Use an app that has properly set its own wifi settings. - Going through all the radio apps on the google market, i am finding only one app that seems to be doing this right: DI Radio - some kind of dance/techno/etc - confirmed it with ping times, they remain low on sleep.
Not one other radio app seems to have set 'proper' settings - which shows that something needs to be addressed in the os...I was having good luck with the yahoo music app, but depended on the stream (maybe some buffer more :dunno - the ping results are garbage.
EDIT: I tried installing high performance wifi again, and finally got the widget to one of the homescreens! Let me break it down for anyone else who comes across this. After install, the small 1x1 blue app box is put on your desktop and the black screen comes up with the wireless networks and a checkbox. I then went to apps->widgets and tried putting the 2x2 widget on the home screen again, and like always it clicks on like its there (and when you click home and its never there). However, this time I hit BACK instead of home after dropping the widget and it took me back to the black screen with the checkbox, then i hit home and voila its sitting there. You can click on it like you mentioned! Confirmed with ping for tune in...pings remain low.
If this continues to work, it may be a godsend. It is annoying having to have this, but far far better than not.
I had that problem also especially when i tried to download big files when the screen turn off the download speed became extremely slow, this widget solve this, i think to that moment its the easiest solution tap it when you need it tap it again when you done.
By the way i had this problems with franko kernel also and again to my opinion it is the good solution for now, until the apps developers update their apps.
Sent from my Galaxy Nexus using XDA
If you download the SDK - you only need Android SDK Platform-tools - to a PC and use the adb shell it is easy to dump the WiFi lock state with dumpsys wifi and see exactly which app(s) are holding what locks. Completely takes all of the guessing out of who is doing what when. Judging the behavior can be subjective because there are other reasons that the WiFi can break up which can be very frustrating.
developer.android.com/guide/developing/tools/adb.html
Erlang2012 said:
I had that problem also especially when i tried to download big files when the screen turn off the download speed became extremely slow, this widget solve this, i think to that moment its the easiest solution tap it when you need it tap it again when you done.
By the way i had this problems with franko kernel also and again to my opinion it is the good solution for now, until the apps developers update their apps.
Sent from my Galaxy Nexus using XDA
Click to expand...
Click to collapse
The app does work well, however I have been running into some issues as I continue to use it. It randomly decides to turn off the forced max wifi (even though its still blue and looks like its operating) or perhaps the phone is forcing the wifi issue again. It seems to happen when you are downloading, playing with some other apps? You only notice it when you sleep it and the streaming radio immediately starts having issues.
Solution is to flip back to the widget turn it off and turn it on again. It works, but is another annoyance.
I haven't yet ascertained exactly what causes it to switch off yet.
tlum said:
If you download the SDK - you only need Android SDK Platform-tools - to a PC and use the adb shell it is easy to dump the WiFi lock state with dumpsys wifi and see exactly which app(s) are holding what locks. Completely takes all of the guessing out of who is doing what when. Judging the behavior can be subjective because there are other reasons that the WiFi can break up which can be very frustrating.
developer.android.com/guide/developing/tools/adb.html
Click to expand...
Click to collapse
I will look into this, thank you.
---------- Post added at 06:16 PM ---------- Previous post was at 05:28 PM ----------
I used the adb shell (learned how to install all these dev tools and how to use it first ) and here is some updated info:
Tunein = type=1
Pandora = type=1
Audioaddict service (Digitally imported app I posted above previously) = type=3
google music = type=3
High performance app = type=3 (havent figured out why this likes to stop randomly)
I will update with more app info, hopefully others can also email the developers and see that it gets fixed, so we no longer have to use damn workarounds...
jeep364 said:
... It randomly decides to turn off the forced max wifi (even though its still blue and looks like its operating)...
Click to expand...
Click to collapse
Yes, it definitely has an issue holding its lock, and it definitely seems related to another application taking over and also when it switches to cell and back, I can confirm that. It may be related to the OS since the widget thinks it still on when clearly the lock as been released, so it may be that the OS released the lock and the widget has no idea. I haven't taken the time to look into the details yet, and this is something we should make the developer aware of.
tlum said:
Yes, it definitely has an issue holding its lock, and it definitely seems related to another application taking over and also when it switches to cell and back, I can confirm that. It may be related to the OS since the widget thinks it still on when clearly the lock as been released, so it may be that the OS released the lock and the widget has no idea. I haven't taken the time to look into the details yet, and this is something we should make the developer aware of.
Click to expand...
Click to collapse
Yup, from what I can see it loses lock:
1. when cell switching
2. manually killing/starting wifi
3. when ANY application is downloaded/removed (ie. changes in permissions)
4. when playing with dolphin, other apps for more than a few minutes, it will kill it even though the blue stays lit. I think its as you mentioned, during general use of the phone, at some point some permissions are changed and hifi performance is tossed off its lock.
If you only are streaming music and re enter the phone to check a gmail alert or two...it seems to be fine. otherwise you need to hit the lock widget one more time before sending it to sleep with pandora/tune in playing.
So I was hesitant to proceed with the update since my 360 has been working so well and the battery life increased tremendously when I got my Note 5.
After a few days of the update pestering me I decided to go for it.
Now there are 2 things that are very annoying.
The first, whenever the screen comes on, there is a slight delay in the watch face.
It lights up with a black face and the hands are white, then it switches to whatever face I have and respected dials.
I'm not using facer or anything, just the stock moto Dials 2. This is very annoying and makes the watch seem slow.
The second thing is that the watchface doesnt turn on when I receive texts anymore.
The vibrate function still works, but the screen won't light up.
Is there a setting that changed making this the default? I would prefer the screen turn on when I receive texts.
Thanks
Make sure 'card previews' turned on from the android wear app, other wise your experience with the faces sounds buggy! A factory reset would help on that.
Factory reset doesnt work, this also happens to me since the update, looks like this is a firmware problem.
Damnit, I wish I didn't update.
Battery is also noticeably worse.
airjordan223 said:
So I was hesitant to proceed with the update since my 360 has been working so well and the battery life increased tremendously when I got my Note 5.
After a few days of the update pestering me I decided to go for it.
Now there are 2 things that are very annoying.
The first, whenever the screen comes on, there is a slight delay in the watch face.
It lights up with a black face and the hands are white, then it switches to whatever face I have and respected dials.
I'm not using facer or anything, just the stock moto Dials 2. This is very annoying and makes the watch seem slow.
The second thing is that the watchface doesnt turn on when I receive texts anymore.
The vibrate function still works, but the screen won't light up.
Is there a setting that changed making this the default? I would prefer the screen turn on when I receive texts.
Thanks
Click to expand...
Click to collapse
Same exact two issues here and I'm shocked I haven't seen more people complain about them. The first one is a nuisance but the second one completely devalues the purpose of the watch making it useless. Not seeing the text/email/etc... and only having a vibration on your wrist is pointless. I could keep my phone on vibrate in my pocket if I wanted to be notified of a new text/email without seeing the actual message. Please post a fix if one is found!
antknee2016 said:
Same exact two issues here and I'm shocked I haven't seen more people complain about them. The first one is a nuisance but the second one completely devalues the purpose of the watch making it useless. Not seeing the text/email/etc... and only having a vibration on your wrist is pointless. I could keep my phone on vibrate in my pocket if I wanted to be notified of a new text/email without seeing the actual message. Please post a fix if one is found!
Click to expand...
Click to collapse
Can you found a way to fix it?
Enviado desde mi SM-N920I mediante Tapatalk
The first issue is because the watch now comes on in ambient mode first. Even if you don't use ambient mode. It sucks. Luckily i use Watchmaker for my watch face so I went in and made all the parts (hands date etc...) to be visible in ambient mode.
I have noticed that if I wait a couple of seconds the notification does appear on my watch screen but it is after the vibrate, not immediate. I thought it wasn't showing up at first too. Still, I wish it was quicker as I look right away.
Sent from my SHIELD Tablet using Tapatalk
I went back to using Facer for my watchface and the delay is gone.
Also did they completely remove the restart option? Now it's just power off, and then press and hold the side button.
I'm experiencing both issues as you do on 6.0.1.
Also yes, reboot option is gone from update.
The renamed reset with "unpair from watch". Not gone, just to mess with us.
Sent from my SHIELD Tablet using Tapatalk
frenziedfemale said:
The renamed reset with "unpair from watch". Not gone, just to mess with us.
Click to expand...
Click to collapse
Reboot is not reset...
I've also noticed that theater mode does not work after the mm update (unrooted, ota). I usually set it to theater mode at night to avoid burn in and just because I don't want it on all night. Now, it looks like it's blacked out, but when I wake up, the charging screen is lit up. Anyone else getting this?
I have the exact same issue after the update. Theater mode will not keep the display off if the watch is being charged. Off the charger, it works as expected. Quite an annoying bug.
If I turn ON the theatre mod with double press the power button before I put the clock on the charging dock, after that screen continue charge with screen off.
For me it's work.
Can anyone try it?
Sent from my D6503 using XDA Free mobile app
Just tried that - doesn't work for me. Screen turns off but once I put it on the charger, it comes back on after a few seconds. I'm watching it and it's still on a few minutes later.
Same here. Screen always turns back on
I'm getting the first bug the OP mentioned havn't noticed the second one though.
However the first bug is annoying enough, hopefully there'll be a quick patch.
Little patience, update to Marshmallow is great.
Here's what I mean with screen off when charge:
So in the morning until you take it out of the dock and go to work.
Sent from my D6503 using XDA Free mobile app
still on 5.0.1
man i just boughjt it 2 days ago and battery sucks,now i am trying to update cause i heard batter improved,but i cant ,watch start download but take too long and then show me a message charger to update blah blah but phone is charger is over 90 percent i have reset phone and uninstalled app many times this is ridiculous now i know why motorola was giving away this pos when yopu buy the 64gb moto x pure edition arrrrgggg
Srandista said:
Reboot is not reset...
Click to expand...
Click to collapse
Sorry I read wrong...but wouldn't you just use the power off option and then turn back on to reboot?
Just wanted to start a thread to discuss this device. For those not familiar with it, it's a very inexpensive 11.6" laptop that runs RemixOS 2.0 from the factory. It does NOT have a touchscreen and the display is a low resolution (1366x768) TN panel display. The CPU is an Allwinner A64 Cortex A53 quad-core 64-bit processor.
The device I purchased (via their Kickstarter campaign) has 2gb RAM and 32gb storage - and it costs me $89.
Some interesting things I've found so far...
1. To disable the damn "click" sound every time you select something (via the touchpad or a mouse), download the QuickShortcutMaker application from the play store. Then expand the Settings items under the Activities section and find the "Other Sounds" activity. Once you click on the Other Sounds activity, click on "Try" on the right-hand side - this will open the "Other Sounds" dialog where you disable "Touch Sounds"! You can also disable some other sounds here. No idea why Remix doesn't allow access to these sound options. Explore the other Settings activities - there are some other cool things you can do. I also used this app to create "Shortcuts" to specific forums in Tapatalk (something that you do via widgets in standard Android). This QuickShortcutMaker app is pretty damn useful on this device!
2. I've found that I was able to connect my Apple USB->Ethernet adapter to this device and it works! However, it doesn't seem to work with ALL apps. For example, Tapatalk doesn't work with it for some reason - but so far, every other app has worked. You can also access ethernet settings via the QuickShortcutMaker app mentioned above.
3. Enable "Experimental Features" by clicking on the "Kernel Version" section of Settings->About. Once you do this, enable the "Use mouse wheel to simulate swipe gesture". This allows you to zoom in and out of things like web pages, images, etc. To do this, hold down CTRL+ALT while moving the mouse wheel. Apparently, the touchpad on this device does NOT provide pinch-to-zoom functionality, so without this setting, there is no way to zoom in and out in most apps! Kind of a big issue! Unless there is another way that I just don't know about. I know you can CTRL- and CTRL+ to zoom in and out in web pages, but that really just increases the size of the text - not really a true zoom in/out.
4. Gmail app. If you open the Gmail app as a window, you don't get the "split-screen" that you get if you open the app in full screen. But if you open in as a full-screen window and then "restore" it to a smaller window, the split-sceen function still works. I usually just leave Gmail minimized in order to keep the split-screen function active for Gmail.
5. Sometimes, the screen comes back on if you put the device into standby with the power button and then close the lid. I haven't been able to find the exact circumstances where the screen comes back on when closed, but it seems that when it does come on when it's closed, it stays on! Need to figure out why this occurs..
6. Bottom of device gets REALLY hot after any extended use. May be a long-term issue...
7. By default, wifi is set to turn off when in standby (unlike tablets) - unless the device is plugged in - then wifi will stay on. This can all be changed under Settings->Wifi->Advanced. I actually set mine to always turn wifi off when in standby since it seems that the device doesn't actually work while in standby anyway (again, unlike tablets). May help avoid wifi failure over the long-term.
8. I have run into websites (such as microcenter.com) where when you open a drop-down list, there is no way to "scroll" the list if it goes off the screen. To see what I mean, go to microcenter.com and try to set the store location - it opens a drop-down list that goes off the screen and there is no way to scroll down in the list! The "work-around" is to use the down arrow key, but it doesn't work very well (web page wants to update every time you press the down arrow)....
That's about it off the top of my head... It's a shame that this device cannot upgrade to RemixOS 3.0, like was stated in the kickstarted campaign (and later "retracted").
Anyone know how to root this thing?
It's an interesting device for the cost, but what I *really* want is a similar, large'ish device with a higher-quality, higher-resolution touchscreen that is removable from the keyboard - with at least 2gb of RAM (10" and 1gb of RAM isn't enough for RemixOS!) and runs RemixOS 3.0 - so far, I can't seem to find such a device...
Sent from my A1160 using Tapatalk
I got the same model 2GB w/32GB storage. Do you or anyone know how to get it to charge and or power on. Mine only worked for 2 days, now nothing. I contacted Azpen over a week ago about it and still haven't heard from them. Please help.
Cerealius said:
I got the same model 2GB w/32GB storage. Do you or anyone know how to get it to charge and or power on. Mine only worked for 2 days, now nothing. I contacted Azpen over a week ago about it and still haven't heard from them. Please help.
Click to expand...
Click to collapse
I just plugged mine in and it charged fine (blue LED next to charging port turns on when charging and turns off when fully charged).
To turn mine on, I just held down the power button on the keyboard for a while... You can also fully power it off that way as well (if it gets hung or something, which I have managed to do a few times now).
I've *really* put this thing through it's paces over the last few days. Overall, it's a decent device for the price. Personally, I'd rather spend a little more for one with a better, higher-res, removable touchscreen though.
I also have a HP Slatebook 10 x2 - and it's a great device, but stuck on Android 4. Otherwise, it has a MUCH nicer, removable touchscreen and even an extra battery in the keyboard (that charges the tablet when attached). Just wish it was a little bigger (13" or so) and was running Remix OS.
But, for $89, I can't complain, my A1160 actually runs pretty well for what it is...Luckily, I haven't had any issues with mine.
Sent from my HP SlateBook 10 x2 PC using Tapatalk
Hello...
@jtrosky, thanks for starting this thread, i've already gotten something out of it... getting rid of that damn clicking every keypress.
It was also nice to find that quickshortcutmaker, thats really a cool app that seems to allow more access than I could find...
Everyone else, hello!
I am an PC user since 84' and an Apple iPad user since, well the day the ipad 2 came out and now I'm on the iPad now. The only reason I say any of this is because the reason I got this Azpen A1160 was to help learn a bit about android and linux. I would also like to figure out how to get to the root...
Knock on wood but I got this three days ago and have literally beaten the software out of it loading, looking, deleting, and I thought I had screwed it up several times but it just keeps on ticking. The back does get a little warm, I haven't actually measured it yet but I'm going to, but I dont think it's too bad. I've run six full charges on battery and worked on it plugged in. (which it doesn't seem to like)
I'm happy with it right now and I think its going be a fun ride. I bet this is going to be a fun place to be in the next couple of months...
Buddy
Oh - one more thing I found out - and this may be well known already for those more familiar with RemixOS. If you click and hold on the little icons on the bottom-right of the taskbar, you can move them around. So, for example, you can make it so the brightness, volume, bluetooth and wifi icons are always visible, even when that section is "collapsed"...
Also - I *love* having the key to disable the touchpad (the key next to the arrow keys). Since I usually use a bluetooth mouse, it's so nice being able to disable the trackpad so quickly and easily!
Oh - and the Prtscr button on the keyboard brings up the very cool screen capture tool, which let's you select what area of the screen to capture. Very handy tool!
Still not sure what the "Pausc" button does - I'm assuming it's actually a misprint and it's supposed to say "Pause". Gotta love cheap electronics that are made in China!
So far, this device is definitely working well for me. Although, I'm not so sure the screen is big enough to truly take advantage of the RemixOS windowing capabilities... But, it's still better than not having any windowing capabilities.
Sent from my A1160 using Tapatalk
One more quick tip - there are apps out there that will let you boost the volume of the device. Right now, I'm using Music Volume EQ to boost the volume, but there are probably better apps out there for this purpose... Will explore more later and post an update if I find a better app.
Sent from my A1160 using Tapatalk
Hello guys, thank you for creating this thread.
Did anyone have any issue by setting up a password for the lock screen?
I did, and it worked for a couple of times, then it started not to recognize the password (password was correct, no caps lock...). Of course it didn't work after reboot as well.
The only option was to remotely reset the device using the google's tool from another pc. Very annoying. Since then never tried to set another security system for the screen lock.
I'm also getting an a problem after turning off the screen: when I try to turn it on again, most of the time I get a blank screen. I have to try several times to get back to remix os.
Did anyone faced this issue as well?
Regards
sephitoor said:
Hello guys, thank you for creating this thread.
Did anyone have any issue by setting up a password for the lock screen?
I did, and it worked for a couple of times, then it started not to recognize the password (password was correct, no caps lock...). Of course it didn't work after reboot as well.
The only option was to remotely reset the device using the google's tool from another pc. Very annoying. Since then never tried to set another security system for the screen lock.
I'm also getting an a problem after turning off the screen: when I try to turn it on again, most of the time I get a blank screen. I have to try several times to get back to remix os.
Did anyone faced this issue as well?
Regards
Click to expand...
Click to collapse
I have not tried setting up the lock screen (I just leave mine unlocked). And no, I have not had any issues with a blank screen when turning the device back up. What's strange is that the device does not automatically turn on when opening the screen - at least not on my device - I have to press the power button.
Your issues are probably because of the poor quality control with these device. Somehow, I lucked out and got a "good one", but many people seem to be having build-quality issues with them...
Sent from my A1160 using Tapatalk
Great posts and many thanks to the OP.
I got a US 2 pin power plug instead of a UK plug. Does anyone know of a similar products power lead that will fit our A1160?
Need help...
Hi,
First, thanks for creating this thread and posting your tips. Obviously there are not a lot of people using this device yet so it is great to find useful info on it.
Since there is no known root solution yet, I tried installing NetGuard as an adbllocking solution that does not require root. I have used it before without any issues. Unfortunately, on the Azpen, every time that I enable it, it blocks all internet access (it is obviously not supposed to do that). I even tried alternative apps like AdClear and got the exact same result. There is something strange going on with the Azpen. I would really appreciate it if anyone had any pointers as to how I could resolve this.
Thanks...
Welp! I had much higher hopes for this device and I haven't even received mine yet! Will this be rootable?
Thanks for creating this, used both your sound clicking tip and the pinch to zoom in. A bit annoying having your fingers in multiple place to zoom in, but what can you do? I'm a college student and have found that I can't access the net with this device due to it's mac address changing each time. I'm not sure if anyone else has noticed this or if mine is the only one. Just thought I would share that.
HyugaSho said:
Thanks for creating this, used both your sound clicking tip and the pinch to zoom in. A bit annoying having your fingers in multiple place to zoom in, but what can you do? I'm a college student and have found that I can't access the net with this device due to it's mac address changing each time. I'm not sure if anyone else has noticed this or if mine is the only one. Just thought I would share that.
Click to expand...
Click to collapse
That is *really* interesting! Sure enough, if I disable and re-enable the wifi, the MAC address does change!! That makes absolutely no sense - I've never seen such a thing!
I'll look into that a little more - but without root, I doubt there is anything that can be done about it. So strange!
One possible option - set wifi to stay enabled all of the time - maybe that way the MAC will stay the same. You can set that in the wifi settings advanced options. I've found that you have to reboot after setting it to always stay active....
Sent from my A1160 using Tapatalk
So far I have been impressed for the cost of this unit. I have a few concerns and wanted to see if anyone had input:
1. Since the length of the power chord is so short. Is it possible to use a USB to Barrel jack type of adapter to power this? That way you can attach to a portable power bank?
2. battery power, I find it to not last that long and I find it takes forever to charge. I thought that this would last 5-7 hours unplugged, nope. It was supposed to charge within in a hour, nope. Any ideas on this?
I use an external mouse and click on the trackpad disable button. I find it much easier to use the computer when typing.
I'm looking at Pinebook, a notebook having the same AllWinner processor (CortexA53).
It seems this notebook can run all OSs suppoted by Pine64, such as Android, some linux distro, Windows IOT and they are working on a Chroimum porting (try to have a look at the pin64 forum).
Do you think it would be possible to do the same with A1160 ?
Another solution could be PhoenixOs (as pointed out in some comment on Kickstarter).
There are already some devices with CortexA53 processor running PhoenixOS out of the box.
I honestly don't know what OS's can be ported over to this device yet. I have a feeling that it's never going to have a huge user base though, so I wouldn't expect much from the developers out there.
Now that Chromebooks can run Android apps, this device just isn't quite as interesting as it once was. Basically, you can now get an inexpensive, *high quality* Chromebook and still have most of the advantages of this device, plus the high quality and frequent updates part.
To be completely honest, I have very low expectations for this device in the long-term. With how hot it gets after any real usage, I expect the mainboard to fail in short order. We'll see. Although, so far, I've really been using it pretty heavily and it does seem to be holding up, but it's only been about a week....
Sent from my A1160 using Tapatalk
Something else I recently noticed - and this may already be a well-known thing with RemixOS... If you close an app by clicking the back arrow on the top-left of the window, you continue to get notifications for that app. But if you close it by clicking the "X" in the top-right of the window, it seems to completely the kill the process and you no longer receive notifications (or if it's an app that stays around and puts a "permanent" notification in the notification tray, the "x" seems to completely stop the app as well and removes its notification item).
At least that's what seems to happen...
Also noticed that even if you setup wifi to stay active even with power off, the unit eventually goes into a "deep sleep" where you will no longer get new email notifications, etc. It even seems to turn wifi off after a while (even though it's set to stay on all of the time).
Lastly, if you have an external mouse connected, close the laptop lid and then move the mouse, it turns the screen back on - even while closed!
Sent from my A1160 using Tapatalk
Hi All,
Saw this in the comments and thought I would chip in with my experience so far.
I got the 64GB version and so far it is the computer I have paid for.
The track pad as everyone said is very crappy, but I just use an external mouse instead so its not a big problem.
I seem to have a good unit and don't have any problems with the unit.
My only gripe is that the battery kinda sucks and after using it intensive for like 3-4 hrs, it will have almost no battery. I wish it came with my UK adapter instead of the US one, but its okay.
Furthermore, is there anyway to put widgets on it? or Use another launcher?
Has anyone tried to root it or tried to install another OS on top of it? I heard that PhoenixOs is possible?
MindlessManiacs said:
Hi All,
The track pad as everyone said is very crappy, but I just use an external mouse instead so its not a big problem.
Furthermore, is there anyway to put widgets on it? or Use another launcher?
Has anyone tried to root it or tried to install another OS on top of it? I heard that PhoenixOs is possible?
Click to expand...
Click to collapse
For what it's worth, my trackpad actually works really well. I was surprised to read all of the complaints about it. I'm guessing that a lot of them are defective?
Regarding the widgets, no - there is no way to use Widgets in Remix OS 2.0 (not sure about 3.0), which is a huge limitation. Widgets are one of the things that make Android so powerful - and I miss them big time in Remix OS...
I too would like to know if there is a way to load PhoenixOS on this device. I thought I saw it mentioned somewhere that it would be possible (maybe one of the updates on Kickstarter?). I will see if I can email Azpen about this. RemixOS 2.0 is really good, but not quite "finished" in my opinion...
Sent from my A1160 using Tapatalk
Hi! Does somebody receive a blank white screen when laptop booting or waking up?
Every time when I push power button I get a blank white screen... How I can fix it?
hi all
recently been having a prob i cant fix
1) connect my phone to car bluetooth
2) turn on google maps and set up navi using my phone gps
3) turn on youtube (ie google maps is now running in background)
4) turn off screen
after abt 5 mins, google maps will lose gps signal
any thoughts on how to solve this prob?
much thx in advance
peterlee928 said:
hi all
recently been having a prob i cant fix
1) connect my phone to car bluetooth
2) turn on google maps and set up navi using my phone gps
3) turn on youtube (ie google maps is now running in background)
4) turn off screen
after abt 5 mins, google maps will lose gps signal
any thoughts on how to solve this prob?
much thx in advance
Click to expand...
Click to collapse
Uuhh... Don't use youtube when driving in your car?
peterlee928 said:
hi all
recently been having a prob i cant fix
1) connect my phone to car bluetooth
2) turn on google maps and set up navi using my phone gps
3) turn on youtube (ie google maps is now running in background)
4) turn off screen
after abt 5 mins, google maps will lose gps signal
any thoughts on how to solve this prob?
much thx in advance
Click to expand...
Click to collapse
How about you do some research yourself instead of having us do the legwork for you.
There are too many variables with GPS, most likely it's user error or just a lack of signal.
Flash factory images and stop driving while using YouTube. You're a danger to everyone on the road, and it's not to be taken lightly. Someone could die because your negligence.
Sent from my Pixel XL using Tapatalk
I use YouTube playlist for audio in my car all the time, literally every day. Yes, fiddling through songs while driving is a danger to him and everyone else, but who said that's what he was doing? Don't be so quick to assume the worst and think he's doing all this while driving, it's not hard to run this setup before leaving the house/work.
Anyways try calibrating your GPS in the Google maps app, and placing your phone somewhere closer to a window (anywhere else really, experiment with location.). For example, I don't get crap for GPS signal when my pixel is sitting near or in my center console, but if I move it to my passenger seat or put it on my magic mount I never loose signal.
Also try purchasing YouTube red or premium or whatever it's called. That way you can play your music, then return to the maps app, maybe keeping maps as a foreground app will help your problem, but who knows.
Man... You guys are harsh. I have gps issues, but different from what I can find online. Also, don't be so quick to blast him about driving with YouTube. Maybe he likes to listen to music from YouTube or maybe he has tesla auto pilot and likes to watch videos in rush hour traffic.
thx noidea and dinkoh... gonna leave this thread... clearly not worth trying to find an answ here based on the unconstructive prior responses (not yalls responses)
No idea if it is what's going on or not, but VZW has a long history of GPS issues on rooted devices, especially ones running custom firmware. As far as I know it has never been fixed, but not sure of that anymore.
Sent from my Pixel XL using Tapatalk
I'm going to bump the thread real quick because I started having this issue after tweaking my doze settings.
If you're using the "L speed" app turn all the doze settings under the battery section app off. If you used another app to enable any doze mods or disable doze motion detection then disable them all.
wyrdtrtle said:
No idea if it is what's going on or not, but VZW has a long history of GPS issues on rooted devices, especially ones running custom firmware. As far as I know it has never been fixed, but not sure of that anymore.
Click to expand...
Click to collapse
Not in my experience
For what its worth, on my unlocked, rooted, and custom rom'd (purenexus) pixel xl, gps seems to be working just fine. Rather surprising since every previous device had problems. Unless the rom does it by default i haven't done any tweaks to any doze settings so cant rule that out on my end.
Sent from my VK810 4G using Tapatalk
So, I got my new Pixel XL (128 GB, Quite Black, Google Store), and activated it with Project Fi a few days ago. Today, I noticed a bizarre issue. So far, I'm only able to get it to occur consistently in the Play Store. When pressing the back button on the navigation bar to return to the previous screen, the phone locks up, but not completely. The app and the back button both become completely unresponsive to touch, the volume buttons do not do anything, but the overview, home, and power button still function as normal. Navigating away from the app, or turning the screen off and back on fixes it, but it happens consistently enough to be very irritating. However, I can't get it to happen consistently enough to isolate a cause, or to capture a screen recording of it. It seems, though, to be more likely that it is app related, but that also seems strange given that it is the Play Store. The only other correlation I can find is to the Keyboard (which I'm using GBoard). Sometimes, it seems to occur after using the keyboard to search the store.
Does anyone have any suggestions/tips/etc. on a way to deal with it? Its hardly a fatal issue, but strange, and I'm curious if anyone knows what this could be.
Also, a side question: is it even worth unlocking/installing mods/etc.? I got 5+ hours of SOT with my first full charge cycle, curious if anyone has any input.
SonarMonkey said:
So, I got my new Pixel XL (128 GB, Quite Black, Google Store), and activated it with Project Fi a few days ago. Today, I noticed a bizarre issue. So far, I'm only able to get it to occur consistently in the Play Store. When pressing the back button on the navigation bar to return to the previous screen, the phone locks up, but not completely. The app and the back button both become completely unresponsive to touch, the volume buttons do not do anything, but the overview, home, and power button still function as normal. Navigating away from the app, or turning the screen off and back on fixes it, but it happens consistently enough to be very irritating. However, I can't get it to happen consistently enough to isolate a cause, or to capture a screen recording of it. It seems, though, to be more likely that it is app related, but that also seems strange given that it is the Play Store. The only other correlation I can find is to the Keyboard (which I'm using GBoard). Sometimes, it seems to occur after using the keyboard to search the store.
Does anyone have any suggestions/tips/etc. on a way to deal with it? Its hardly a fatal issue, but strange, and I'm curious if anyone knows what this could be.
Also, a side question: is it even worth unlocking/installing mods/etc.? I got 5+ hours of SOT with my first full charge cycle, curious if anyone has any input.
Click to expand...
Click to collapse
I recommend unlocking so at least if you ever have a bad ota update you can still fix you're device with a new factory image. As far as the lag issues. I had something similar when Gboard first came out. What is you're current build. You may need to update you're phone.
toknitup420 said:
I recommend unlocking so at least if you ever have a bad ota update you can still fix you're device with a new factory image. As far as the lag issues. I had something similar when Gboard first came out. What is you're current build. You may need to update you're phone.
Click to expand...
Click to collapse
I'm on the May image, and all my apps are up to date (aside from staggered update I may not have received, always possible). I'll wait for the June image to come out tomorrow and see if that fixes it. Thanks for the input on both fronts!
Although, if I unlock the bootloader I may fall all the way down the rabbit hole, haha.
SonarMonkey said:
I'm on the May image, and all my apps are up to date (aside from staggered update I may not have received, always possible). I'll wait for the June image to come out tomorrow and see if that fixes it. Thanks for the input on both fronts!
Although, if I unlock the bootloader I may fall all the way down the rabbit hole, haha.
Click to expand...
Click to collapse
Nothing wrong with falling down the rabbit hole lol. Personally I run stock system with my mod pack. Gives me incredible battery cuz it's stock system but I also get to have some custom tweaks. Best of both worlds.
toknitup420 said:
Nothing wrong with falling down the rabbit hole lol. Personally I run stock system with my mod pack. Gives me incredible battery cuz it's stock system but I also get to have some custom tweaks. Best of both worlds.
Click to expand...
Click to collapse
Any particular mods? I've been flashing/modding/etc since my Droid Razr M but reading around on the Pixel XL forums is the first time I've felt out of my depth again - all this A/B partition stuff, changes to the way root and GApps work, etc. seems so different.