I have received my OnePlus 3 yesterday (updated today), and I have a weird bug in Google Chrome. My website (www.vry.sexy) has a Webkit CSS animated circle which you should be able to see as soon as you visit the site. Google Chrome on the OnePlus 3 does not display the circle, but Google Chrome on my Nexus 4 and Nexus 7 (2013) displays the circle just fine. Firefox on my OnePlus 3 also displays the circle. The issue was present before and after the latest update.
The code is on codepen.io if you wish to review it: http://codepen.io/badpixel/pen/GqNPzK
In the meantime I have also asked two friends with OnePlus 3's to test the website and they both experience the same issue.
I have also tested the site on a Samsung Galaxy Note II, Nexus 5X and Moto G 2nd Gen. It works as expected on everything else.
I have tried the usual clear data, install - uninstall.
I've contacted chat support which suggested a hard reset, which I have done to no avail. Another chat with chat support suggested I do an RMA but I cannot since the OnePlus site will not let me, as there is no way currently to contact support or start an RMA from their site. Their support must be swamped.
I have nevertheless emailed support, but I am not counting on a reply soon.
Does anyone have any idea regarding this issue? Do you experience the same issue?
Update July 14, 2016: OnePlus support contacted me and asked me to contact Google Support. I have made a thread to report the issue in the Google Chrome support forums and currently waiting. I have also asked OnePlus support how they wish I contact Google. They provided a phone number without a country code (it is not a local number for me) and I replied asking to which country the phone number is to, as I would not want to receive an inflated bill from international calls by the end of the month.
Try using an older version, if that doesn't help, wait for a new version. :/
_MartyMan_ said:
Try using an older version, if that doesn't help, wait for a new version. :/
Click to expand...
Click to collapse
Do you experience the same issue?
bad pixel said:
Do you experience the same issue?
Click to expand...
Click to collapse
Yes.
I have the same issue if it can help.
Also I had a look at the logcat and found a few interesting errors (they occur each time you reload the page).
I cannot assure you they are related to your issue but it could be.
Code:
07-14 17:16:43.334 5166 5178 E chromium: [ERROR:texture_manager.cc(2746)] [.CommandBufferContext.RenderCompositor-0xf50e8560]GL ERROR :GL_INVALID_OPERATION : glTexImage2D: <- error from previous GL command
07-14 17:16:43.388 5166 5178 E chromium: [ERROR:gles2_cmd_decoder.cc(2167)] [.CommandBufferContext.RenderWorker-0xf50e8640]GL ERROR :GL_INVALID_OPERATION : GLES2DecoderImpl::DoBindTexImage2DCHROMIUM: <- error from previous GL command
07-14 17:16:43.397 5166 5178 E chromium: [ERROR:gles2_cmd_decoder.cc(2167)] [.CommandBufferContext.RenderWorker-0xf50e8640]GL ERROR :GL_INVALID_OPERATION : GLES2DecoderImpl::DoBindTexImage2DCHROMIUM: <- error from previous GL command
If you try to debug, the circle is definitely there. It's just the blending option that does not work.
mix-blend-mode: multiply;
_Man0waR_ said:
I have the same issue if it can help.
Also I had a look at the logcat and found a few interesting errors (they occur each time you reload the page).
I cannot assure you they are related to your issue but it could be.
Code:
07-14 17:16:43.334 5166 5178 E chromium: [ERROR:texture_manager.cc(2746)] [.CommandBufferContext.RenderCompositor-0xf50e8560]GL ERROR :GL_INVALID_OPERATION : glTexImage2D: <- error from previous GL command
07-14 17:16:43.388 5166 5178 E chromium: [ERROR:gles2_cmd_decoder.cc(2167)] [.CommandBufferContext.RenderWorker-0xf50e8640]GL ERROR :GL_INVALID_OPERATION : GLES2DecoderImpl::DoBindTexImage2DCHROMIUM: <- error from previous GL command
07-14 17:16:43.397 5166 5178 E chromium: [ERROR:gles2_cmd_decoder.cc(2167)] [.CommandBufferContext.RenderWorker-0xf50e8640]GL ERROR :GL_INVALID_OPERATION : GLES2DecoderImpl::DoBindTexImage2DCHROMIUM: <- error from previous GL command
If you try to debug, the circle is definitely there. It's just the blending option that does not work.
mix-blend-mode: multiply;
Click to expand...
Click to collapse
Thank you so much for this. This is what I figured as well. The question is why does this not work on the 1+ 3 but works on every other phone I have tested.. I have posted in Google Webmaster and Chrome product forums but no replies from Google. 1+ support is just dodging the question of if they can replicate the error. I asked directly many times in my 1+ month old ticket with them and they always reply with something completely random.
Related
Hi guys
I've just started working with Silvermoon. When testing the demo app (as well as my own app) on my HD2, it works fine for 6 times, but when I start the app for the 7th time, it crashes without any message.
Has anyone else had this problem? Any ideas?
Any help would be appreciated!
Thanks, Rob
I don't have these problems on my HD. It looks like some resources are not cleaned up at application exit. Do you call 'Screen.Close();' when exiting the application?
edit:
As you're using an HD2 you don't have the libGLES_cm.dll and I assume you have copied the one of the demo. This is a software implementation and could also be the reason of running out of memory. The OpenGLES 1.x dll on GLES2 devices is called something like libGLESv1.dll. To use OpenGLES in a managed application/library the methods have to be imported from the dll and the dll name has to be defined at compile time. So, take a look at the silvermoon sources and if you find dllimport(...) using libGLES_cm.dll you'll have to replace this dll name with libGLESv1.dll (look up the correct name in your /windows directory) and rebuild framework.
(had to do that in my OpenGL test app for gles2 devices)
edit2:
Had a quick look into the silvermoon sources and for gles2 devices it has to be recompiled after changing the dll names:
in Silvermoon\OpenGL\Native\
egl.cs: change const string LibGlesDllName = "libgles_cm.dll"; to ... = "libEGL.dll"
gl.cs: change const string LibGlesDllName = "libgles_cm.dll"; to ... = "libGLESv1.dll"
(the egl dll could also be changed to "libGLESv1.dll" just in case this doesn't work)
You'll need VS2008 to compile the solution.
Hello heliosdev,
Thank you very much for your reply, I really appreciate it!!! I am calling Screen.Close() in my app and have the same problem in Silvermoon demo, so this shouldn't be the issue...
My HD2 has the following files in Windows directory:
libEGL.dll
libEGL_org.dll
libGLES_CL.dll
libGLES_CM.dll
libGLESv1_CM.dll
libGLESv2.dll
I recompiled OpenGl.dll in VS2008 with the folowing combinations & results:
libGLES_CM.dll in gl.cs & libEGL.dll in egl.cs -> app not starting at all.
libGLES_CM.dll in gl.cs & egl.cs -> app crashes at 7th start
libGLESv1_CM.dll in gl.cs & egl.cs -> app not starting at all.
libGLESv1_CM.dll in gl.cs & libEGL.dll in egl.cs -> app crashes at 7th start
Any further ideas?
I think the last version (v1 and egl) should be used on gles2 devices instead of the software renderer.
Now it's getting difficult.
Maybe try to disable Manila (Sense) restart device and test your app.
If it still fails:
Try to start another opengles app several times. (try my opengl test app (snapdragon version))
edit:
something else to try (yes, I'm getting out of ideas...)
Before Screen.Close() you could call gl.DeleteTextures() with for example an array of 100 uints starting at 1.
Disabling "HTC Sense" allows for one extra launch of the app, meaning it crashes at the 8th start attempt. Exactly the same problems using your TestOpenGL.
The only difference is, that when trying to launch my app for the 7th/8th time, the busy cursor appears shortly on the screen, as if it were starting up, but then just disappears and nothing more happens. When I launch TestOpenGL, the busy cursor appears and freezes, then nothing more happens.
ok, so it looks like resources are not cleaned up.
Try the glDeleteTextures suggestion. (even though this is called)
btw: Are you using a stock rom? Have you installed any 3d drivers (like chainfire's patch found in the sticky thread in the forum)?
Nope, unfortunately gl.DeleteTextures(1, 100) just before Screen.Close() is not helping either...
I'm using Xannys Pandora ROM which has GLTweaks integrated. However, taking into consideration the posts from codeplex, where several people are having the exact same problem on different phones (tg01, hd2), can it really be a ROM problem?
BTW: Thank you so much for taking the time to try and help!!!!
I struggle with the same issue in my own app (here) using silvermoon (7th start fails using HW renderers).
heliosdev Test app runs fine and can start numerous times without problems (gave up after 20 starts), also tried "coin toss" (here) without problems running multiple times.
Running on Miri's 6.5.x v8 without any enhancements installed.
Ok, I've created a small test app, which simply loads a form containing a Silvermoon window control, with a ChromeButton on it. On clicking the button, I call Screen.Close() to exit the app.
Testing on the Emulator works fine, but on my HD2 the 7th attempt to launch the app results in the following error: "Error on glGenTexture.". I have traced this Error to Line 37 in "Texture.cs" of the OpenGL source:
Code:
public Texture()
: base()
{
this.Name = gl.GenTexture();
[b]if (this.Name == 0) throw new OpenGlException("Error on glGenTexture.");[/b]
}
I added a line in Texture.cs to output the gl.GenTexture() uint value. On the first 6 start attempts it returns the values 1 and 2, but on the 7th it returns 0, which obviously is what causes the error.
Digging further, the GenTexture() method (which is returning 0) comes from pInvoking glGenTextures() in libgles_cm.dll.
Sadly, this is where my programming skills end... I really hope we can find a solution to this issue! It would hurt, having to give up on Silvermoon.
Looks like 'out of memory'. Call the following method before and after the GenTexture call (1285 is out of memory error).
Code:
private void CheckErrorGL(string info)
{
uint err = gl.GetError();
if (err != gl.GL_NO_ERROR)
{
MessageBox.Show(err.ToString(), "GL " + info);
}
}
Doesn't seem to be OutOfMemory... gl.GetError() is returning 0.
The exception is thrown without any glerror message box?
Run cleanRAM before calling it for the 7th time.
Correct, it's not throwing a glerror! Although, VS2008 is not showing me GL_NO_ERROR option on gl. But an if I remove the if-clause from your code (if (err != gl.GL_NO_ERROR)), the messagebox always returns 0.
Just ran a level 3 purge with cleanRAM... problem remains
The error definitions are in the namespace Silvermoon.OpenGL.Native (gl/egl)
And what does egl.GetError() return? (EGL_SUCCESS is 12288)
Code:
private void CheckErrorEGL(string info)
{
int err = egl.GetError();
if (err != egl.EGL_SUCCESS)
{
MessageBox.Show(err.ToString(), "EGL " + info);
}
}
the error definitions are surrrounded by a
#region obsolete
#if false
...
#endif
Change the false to true to access them.
get a EGL 12294 before calling gl.GenTexture()
seems to be a EGL_BAD_CONTEXT
Before calling gl.GenTexture() I'm also getting error code 12294 (EGL_BAD_CONTEXT) and afterwards 12288 (EGL_SUCCESS).
(Had a typo in my code, therefore I got the wrong result previously...)
I have the same problem with my tiny graphics engine. I think its the same problem because the egl.cs and its setup are nearly identical. So here's what I've found out:
- Its only about Egl, not about OpenGl, so forget deleteTextures etc (I've written a little test, that simply creates a display, context and surface and destorys them, no Gl calls and the same bug)
- create context creates a "Gl_Bad_Alloc" error
- everything that is allocated by egl is also destroyed
I think its also not a bug in the driver, because there is for example that ogles 2 game electopia or something like that, and this game is not affected!
I found a solution!!! I don't know about Silvermoon, but it works with my tigre engine. I can't explain it, I have no idea, and itse not the best solution, but it seems to work. Just DO NOT destroy the display, DO NOT delete context and DO NOT delete the surface. Any one have a idea why it is like that?
Phippu said:
I found a solution!!! I don't know about Silvermoon, but it works with my tigre engine. I can't explain it, I have no idea, and itse not the best solution, but it seems to work. Just DO NOT destroy the display, DO NOT delete context and DO NOT delete the surface. Any one have a idea why it is like that?
Click to expand...
Click to collapse
Amazing! That did the trick with silvermoon too. Great find, thanks!
No idea why that works though.
Sometimes it seems to be better leaving a mess instead of cleaning everything up properly
Hello, developers and users.
I want to write an extension that parses Last.FM friends feed and the tracks they loved recently. I haven't found one on the Internet so I decided to write one myself. I took the Sony's EDK SnsSampleExtension example for Timescape to start from.
I hope to find the answer to a very interesting issue I've found. So there's SNSDataProvider - a class that extends Android's ContentProvider in order to customize data fetching. In the example SQLite DB is used. And calling ContextResolver's insert(), query(), update() or delete() methods should (or at least I expect it to) result in calling SNSDataProvider's methods relatively. BUT despite overrided insert() and query() are called ok delete() is NOT called at all! I've added a line at the beginning of SNSDataProvider.delete() method:
Code:
Log.d("Database", "Delete URI: " + uri.toString());
and similar lines in insert() and query() methods. The log is in the attachement. Note: there must be the "Delete URI: ..." note in logs just before "Logout done" as the first Log note should be caused by database.cleanup(); line (that calls mCr.delete() in tis turn) in SNSSampleService.logout(), but it doesn't!
The main problem is that (old) events in the database can't be deleted so every time I login or logout or add more events to DB wthout being able to delete old ones I run into exception that is caused by overfilled DB.
Just in case: I got Sony Xperia S with Android 4.0.4 . Let me know if some more info needed.
I do hope I can use some help of experienced devs here.
Cheers.
OK. Thanks for not helping me. Gonna find the answer myself. Mods can shut this thread down.
I'd love to help, but I'm not familiar with making something like you are making..
Sent from my LT26i using xda app-developers app
Hi all,
Since I was unable to find a thread or stickey (which are the same actually) to report some website issues I encouter I decided to create this thread.
(perhaps it will be closed and perhaps it will stay open).
In here you can post any website related issues. Is a page not opening, is a link not working? Sometimes even specific browsers will give problems.
Post it here and perhaps the staff will take a look
What kind of information do you need to tell before we (users and staff) can help:
- What page were you visiting or trying to visit (Give the url = website link)
- What Internet Browser were you using and wich version (Internet Explorer, FireFox, Opera, Google Chrome, Safari)
- What is the operating system your computer or laptop is running on?( Windows 8/7/XP/Vista Mac OS (Give version) )
- What are the stepps you tried yourself? (cleaned cache of webbrowser, rebooted computer etc)
- What kind of Anti Virus software or Firewall are you using (Avast!, AVG, Windows Security Essentials etc)
- If possible give us a screenshot of the problem or error you encounter
This kind of information will help us help you with the problem. Perhaps the cause can be find in there.
For tablet users:
Even visiting this website can give sometimes issues please provide the following details:
- What kind of tablet are you using (Samsung Note, iPad, Nexus 10)
- What kind of OS is running on your tablet (Android 3.x / 4.x or iOS (version number will come in handy)
- What browser were you using ( Google Chrome, Dolpin Brower, Opera (for android devices) or safari (iOS users)
- What kind of steps you tried to fix it yourself? (delete cache and data of the app, reboot device, fixed permissions)
- If possible give is a screenshot of the problem or error
If you encounter any issues please post them here. We'd love to help you
For SPAM USERS go here: http://forum.xda-developers.com/showthread.php?t=306366
For Tapatalk or XDA APP ISSUES go here:http://forum.xda-developers.com/showthread.php?t=841646
For Operator logo's and country flag issues go here: http://forum.xda-developers.com/showthread.php?t=650541
For reporting intusive ads go here: http://forum.xda-developers.com/showthread.php?t=1696660
(In a minute my first issue will be posted here)
Regards,
Mrjraider
So my first issue I encounter was like this:
Tablet: Ipad 3rd generation running iOS 6
Browser used: Safari
Website I tried to visit: www.forum.xda-developers.com/index.php
Problem: Website stays blank and empty. However on my computer (Win 7 Google Chrome no issues)
Any tips?
Performed selfsteps:
- Reboot device (multiple times)
- Deleted date of safari
All the other websits of forum.xda-developers.com seems to work without issues. I've made several posts today with my iPad
(yeah I know this is more of a android website)
Can anybody show me how to name url links??
My phone details :
Rom : carbonrom stable v1.8
Kernel : dorimanx v9.36
Governor : nightmare
No OC or UV
Battery : stock 1650mah
Sent from i9100
budsixz said:
Can anybody show me how to name url links??
My phone details :
Rom : carbonrom stable v1.8
Kernel : dorimanx v9.36
Governor : nightmare
No OC or UV
Battery : stock 1650mah
Sent from i9100
Click to expand...
Click to collapse
[URL=http://www.google.com]Write anything here to name your URL[/URL]
It will appear like this :
Write anything here to name your URL
recent changes causing continuous refresh of page
I use Firefox 22.0. I have NoScript installed.
About a week ago, whenever I come to XDA, my page refreshes continuously. I have to hit the "stop" button at just the right moment to get the loop to stop long enough for me to read anything.
I tried temporarily allowing all scripts on this page. This did not change the behavior.
P.S. This only happens if I am logged in. If I log out, behavior returns to normal...
mrjraider said:
Hi all,
Since I was unable to find a thread or stickey (which are the same actually) to report some website issues I encouter I decided to create this thread.
(perhaps it will be closed and perhaps it will stay open).
In here you can post any website related issues. Is a page not opening, is a link not working? Sometimes even specific browsers will give problems.
Post it here and perhaps the staff will take a look
What kind of information do you need to tell before we (users and staff) can help:
- What page were you visiting or trying to visit (Give the url = website link)
- What Internet Browser were you using and wich version (Internet Explorer, FireFox, Opera, Google Chrome, Safari)
- What is the operating system your computer or laptop is running on?( Windows 8/7/XP/Vista Mac OS (Give version) )
- What are the stepps you tried yourself? (cleaned cache of webbrowser, rebooted computer etc)
- What kind of Anti Virus software or Firewall are you using (Avast!, AVG, Windows Security Essentials etc)
- If possible give us a screenshot of the problem or error you encounter
This kind of information will help us help you with the problem. Perhaps the cause can be find in there.
For tablet users:
Even visiting this website can give sometimes issues please provide the following details:
- What kind of tablet are you using (Samsung Note, iPad, Nexus 10)
- What kind of OS is running on your tablet (Android 3.x / 4.x or iOS (version number will come in handy)
- What browser were you using ( Google Chrome, Dolpin Brower, Opera (for android devices) or safari (iOS users)
- What kind of steps you tried to fix it yourself? (delete cache and data of the app, reboot device, fixed permissions)
- If possible give is a screenshot of the problem or error
If you encounter any issues please post them here. We'd love to help you
For SPAM USERS go here: http://forum.xda-developers.com/showthread.php?t=306366
For Tapatalk or XDA APP ISSUES go here:http://forum.xda-developers.com/showthread.php?t=841646
For Operator logo's and country flag issues go here: http://forum.xda-developers.com/showthread.php?t=650541
For reporting intusive ads go here: http://forum.xda-developers.com/showthread.php?t=1696660
(In a minute my first issue will be posted here)
Regards,
Mrjraider
Click to expand...
Click to collapse
RandyB201 said:
I use Firefox 22.0. I have NoScript installed.
About a week ago, whenever I come to XDA, my page refreshes continuously. I have to hit the "stop" button at just the right moment to get the loop to stop long enough for me to read anything.
I tried temporarily allowing all scripts on this page. This did not change the behavior.
P.S. This only happens if I am logged in. If I log out, behavior returns to normal...
Click to expand...
Click to collapse
I have also been having this issue, both on Chrome 29 for Windows, and Chrome 29 for Android on my Note 2.
Other threads reporting same issue:
http://forum.xda-developers.com/showthread.php?t=2197302
http://forum.xda-developers.com/showthread.php?t=2404881
http://forum.xda-developers.com/showthread.php?t=2391978
http://forum.xda-developers.com/showthread.php?t=2391690
http://forum.xda-developers.com/showthread.php?t=1766646
http://forum.xda-developers.com/showthread.php?t=2367598
http://forum.xda-developers.com/showthread.php?t=2418022
http://forum.xda-developers.com/showthread.php?t=2239777
Le bump..
Now we need to collect more issues and perhaps fixes
Restarting Firefox 23.0.1 in safe mode stops the looping, but all of the Search for Your Device and QuickLinks drop downs from the menu open behind the ad at the top of the page.
no issues
RandyB201 said:
Other threads reporting same issue:
http://forum.xda-developers.com/showthread.php?t=2197302
http://forum.xda-developers.com/showthread.php?t=2404881
http://forum.xda-developers.com/showthread.php?t=2391978
http://forum.xda-developers.com/showthread.php?t=2391690
http://forum.xda-developers.com/showthread.php?t=1766646
http://forum.xda-developers.com/showthread.php?t=2367598
http://forum.xda-developers.com/showthread.php?t=2418022
http://forum.xda-developers.com/showthread.php?t=2239777
Click to expand...
Click to collapse
I would love to be able to fix this issue, but I can not recreate this problem so I can't push a fix. Any web developers seeing the reloading problem who can point out the issue?
The only thing I can figure out is that it seems to happen to people with NoScript or AdBlock installed, but I've run the site with both and it doesn't happen to me (in multiple browsers/os). But then again, some people say they don't have it installed and it still does the reloading.
Changing to the 2013 - 1024 theme seems to fix it for folks.
I use an Adblock and I have no issues with the website in that matter. The only thing I encounter at the moment is that I need to login on every page. It seems like I can't be remembered for some reason. Will clear cache tomorrow tho.
mrjraider said:
I use an Adblock and I have no issues with the website in that matter. The only thing I encounter at the moment is that I need to login on every page. It seems like I can't be remembered for some reason. Will clear cache tomorrow tho.
Click to expand...
Click to collapse
That's a Chrome issue. I don't have to login every time I go to a new thread but it asks me to login every few hours. Loads of people have reported the issue but afaik there's no known fix other than using a different browser.
I even get logged out on Opera Mini, though I get logged in after clicking on any link on forum, so I don't think it's only Chrome issue
Good Answer!
bitpushr said:
...Changing to the 2013 - 1024 theme seems to fix it for folks.
Click to expand...
Click to collapse
Thank you. That seems to have worked for me. I changed to the theme, have closed and reopened the browser, logged in and out and it seems to have stopped....
bitpushr said:
I would love to be able to fix this issue, but I can not recreate this problem so I can't push a fix. Any web developers seeing the reloading problem who can point out the issue?
The only thing I can figure out is that it seems to happen to people with NoScript or AdBlock installed, but I've run the site with both and it doesn't happen to me (in multiple browsers/os). But then again, some people say they don't have it installed and it still does the reloading.
Changing to the 2013 - 1024 theme seems to fix it for folks.
Click to expand...
Click to collapse
And XDA is crashing my Chrome desktop browser again...
It always happens when trying to load the ads. I'm running a new computer with windows 8.1. No browser extensions.
For such a tech-oriented site, this is kind of sad. You really need to reign in your advertisers. It's been 2+ years of these issues.
jamus28 said:
And XDA is crashing my Chrome desktop browser again...
It always happens when trying to load the ads. I'm running a new computer with windows 8.1. No browser extensions.
For such a tech-oriented site, this is kind of sad. You really need to reign in your advertisers. It's been 2+ years of these issues.
Click to expand...
Click to collapse
This has nothing to do with the original issue. Ads should not be able to crash the browser. I've had them get very slow, we try to weed out any advertisements that are unduly taxing to system resources. We don't pick which ads run on the site. If you are still having issues, you can open a new thread with a full description of the problem. It doesn't sound like it would just be XDA if your computer is crashing.
Closing thread for now as original issue is fixed.
I have installed the tweaked version but my xiaomi mi band doesn't recive notofication from wtsapp or messangee (i have set it inthe option)
I have lg g2 with cloudy rom thk
Help
@hackarchive do u now why?
Mi Band still with active fatal bugs.
[Reviews] Mi Band still with active fatal bugs. My clients make complains
#1
41| 01:17, Jan-20-2015 | Promote| |Go to reply no.
Mi Band still with active fatal bugs. My clients in EU make complains agains me becouse of that. They want to return goods.
Please help me. I sell every day new device. After week client return becouse of bugs. Please fix this bugs.
Report 1
Date 01.06.2015
Bug description: When I choose image from my gallery to add profile image orientation of picture in xiaomi mi band is wrong. Check my profile image to see orientation and fix bug.
Report 2
Date 01.06.2015
When send message feedback it is appear modal message for confirmation? Language is korean, it is not english.I set to english option,but still have korean text after press feedback. I do not understand. Please fix this bug too.
Report 33
Date 07.01.2015
Alarm software is not good. It is very poor. I miss my tomorrow appointments because you. Thank you for that.
Alarm vibration cannot wake me up, because missing option for vibration activity interval length. It have only max count 3 alarms. This totally wrong. It must be 10 or 20 for example.
Report 4
Activities not work at all on Galaxy S4 Android 4.3
Everything work good but activities not work at all.
Missing running activities.
Favorite1
Rate
Reply Edit
forum1
Senior Member
Rank: 2
Credits67Online time5 Hours
#2
Author| 01:19, Jan-20-2015 |
Missing public API for external integration for example according Google fitness.
Did you give the app privileges to allow notifications in your phones security settings?
Settings -> security -> notification access -> BleNotificationService make sure that box is checked
forum11111 said:
[Reviews] Mi Band still with active fatal bugs. My clients make complains
#1
41| 01:17, Jan-20-2015 | Promote| |Go to reply no.
Mi Band still with active fatal bugs. My clients in EU make complains agains me becouse of that. They want to return goods.
Please help me. I sell every day new device. After week client return becouse of bugs. Please fix this bugs.
Report 1
Date 01.06.2015
Bug description: When I choose image from my gallery to add profile image orientation of picture in xiaomi mi band is wrong. Check my profile image to see orientation and fix bug.
Report 2
Date 01.06.2015
When send message feedback it is appear modal message for confirmation? Language is korean, it is not english.I set to english option,but still have korean text after press feedback. I do not understand. Please fix this bug too.
Report 33
Date 07.01.2015
Alarm software is not good. It is very poor. I miss my tomorrow appointments because you. Thank you for that.
Alarm vibration cannot wake me up, because missing option for vibration activity interval length. It have only max count 3 alarms. This totally wrong. It must be 10 or 20 for example.
Report 4
Activities not work at all on Galaxy S4 Android 4.3
Everything work good but activities not work at all.
Missing running activities.
Favorite1
Rate
Reply Edit
forum1
Senior Member
Rank: 2
Credits67Online time5 Hours
#2
Author| 01:19, Jan-20-2015 |
Missing public API for external integration for example according Google fitness.
Click to expand...
Click to collapse
Hello sir,
I just received the Mi Band. I looked at your reports, and I have experienced the following:
I also use the Samsung Galaxy S4. But you need to run at least Android 4.4 to have the Mi Band working properly. Why do you have such an old version of Android? Also..., android Lollipop (5.0.X) is almost coming for the Galaxy S4.
You should also use the tweaked version. This one is English and also has got wayyy more options for notifications. You can customize the notifications per app. Wonderfull!
About the reports:
Report 1: I can upload a picture, and it doesn't rotate. It's OKAY in the Tweaked Mi Band app!
Report 2: Feedback is in English for me! Use the tweaked app! (Link to the correct thread below).
Report 3: Yes, the Alarm function could be more sophisticated. I suggest you to use this alarm for waking up without an annoying sound. Use Timely as a backup. Why would you rely on just one vibrating alarm? Not really smart huh...?
Report 4: Activities working just fine now. In the latest release, there is also a running activity! (including GPS from you phone, you can even track your run!)
Here is the link to the thread where you can download the Tweaked Mi Band app. This one is really good! Just update you android firmware, install this tweaked app, and you're good to go!
Link: http://en.miui.com/thread-53761-1-1.html
Good luck!
versions
what is diference between this two version?
TW version
MiFit_1.2.922_351_en.apk (10.11 MB, Downloads: 205)
Notification version
MiFit_1.2.922_351_en_notify.apk (10.13 MB, Downloads: 475)
---------- Post added at 07:19 PM ---------- Previous post was at 06:28 PM ----------
I register my account with my old phone number.
Now I use new phone number on the same phone. How to change my number on my MiBand account?
Or switch to email logon option?
On my Andorid 5 after install this version try to update ROM but failed with messages that rom is not update my MiBand.
Run tracing direction not have googe or bing card only simple geo data cordinate and direction line.
Please add map images - google or bing.
KNOX Security alert on Galaxy S4 unrooted I9505 LTA, version for Bulgaria Android 4.3 is lattes.
This if very fatal bug according KNOX Security alert that MiBand try to access some security data.
By the way SDK log files are empty.
Latest bug is fatal because it is happing every time.
After that device cannot connect.
One hour hard operation,restarts and more device work.
Here is image of exception message.
After press button boom
can anyone add minute repeater function to this tweak?
after touching, the miband will vibrate like minute repeater function, to notify us what time it's
https://en.wikipedia.org/wiki/Re ... %29#Minute_repeater
thanks for reading!!
Hi XDA operators,
Your form for reporting issues doesn't seem to work, I can't send anything trough http://www.xda-developers.com/contact/#technical. The arrows spin forever after clicking the send button and nothing else happens.
Apart from that, the issue I meant to report was that one of your mailservers is misconfigured, maybe you want to look into this...
Log excerpt:
Code:
Jul 17 11:48:12 ****** postfix/smtpd[4387]: NOQUEUE: reject: RCPT from pyramid.php.va.us.xda-developers.com[207.244.73.233]: 450 4.7.1 <pyramid.localdomain>: Helo command rejected: Host not found; from=<[email protected]> to=<[email protected]> proto=ESMTP helo=<pyramid.localdomain>
Cheers!
Just btw.... the error still persists
@bitpushr
Thank you for reporting these, see below:
sbreit said:
Your form for reporting issues doesn't seem to work, I can't send anything trough http://www.xda-developers.com/contact/#technical. The arrows spin forever after clicking the send button and nothing else happens.
Click to expand...
Click to collapse
This is due to the web application firewall we have on the portal, it didn't like all of the extra characters in your mail message. I've fixed it so that messages like this can be sent through.
sbreit said:
Apart from that, the issue I meant to report was that one of your mailservers is misconfigured, maybe you want to look into this...
Log excerpt:
Code:
Jul 17 11:48:12 ****** postfix/smtpd[4387]: NOQUEUE: reject: RCPT from pyramid.php.va.us.xda-developers.com[207.244.73.233]: 450 4.7.1 <pyramid.localdomain>: Helo command rejected: Host not found; from=<[email protected]> to=<[email protected]> proto=ESMTP helo=<pyramid.localdomain>
Click to expand...
Click to collapse
You are correct, the hostname was not set up correctly and this could cause mail delivery issues on some domains. I've fixed this so it should now work properly. Thank you for pinging me @Trafalgar Square