GearFIT & Oppo Find5 - Samsung Gear Fit

Hi everybody,
here are my impressions and questions ( please answer me ) after reading forum threads and playing with my fit.
Its one day im using sgf and impressions are good, except for all the limitations and "walls" met with a non samsung dev.
First of all, my FIT firmware is R350XXU0BND8 and actually im using Fit Manager 1.49
Fit connects well with phone and everything is working except SHealth (is there a way to get rid of this?)
but i will play more with it ... not now cause "fitness" use is not my first need
Even the clock+weather layout doesn't work. I have found somewhere the "SweatherProvider" apk, but it wont install on my FIND5, why? is there a way to fix it?
I have edited build.props (like stated here http://forum.xda-developers.com/showthread.php?t=2718949) and now all the "gear settings, gear phone and gear calendar" apps are working. They are running a little slow, but acceptable.
Is there any way to put the icon in an easier place? instead of scroll--> settings-->apps --> gearPhone app ?
First question: every Manager version works only with relative firmware, right? So if i want to use last mgr version (1.67) i have to put on FIT last firmware (R350XXU0BNE5) right? and this should work even with 1.70 ( found here http://forum.xda-developers.com/showthread.php?t=2789503)
Second question: Wich are all the apk's that i should install except manager? I mean do i need Fitness_with_gear, shealth_service, Shealth apk's?
Final and "stupid" question. With non samsung devices i have to always update firmware and manager versions manually, right?

sorry... missing phone info
My phone OppoFind 5 with OmniRom 4.4.2

Related

[Q] Two versions of one app installed at the same time?

It seems that this is the first time I start a new thread.
Hi, all. I want to know how to install two versions of one same application at the same time.
As a matter of fact, I want to install Opera Mini 4.2 China Version and Opera Mini 4.2 Internaional Version at the time. But...Since Opera Mini 5 makes it difficult to describe the question, here takes HelloWorld.apk as an example.
Well, there are two versions of the application "HelloWorld": 1.0 and 1.1. (This is just an example)
I have installed HelloWorld 1.0 on my phone, and when I try to install HelloWorld 1.1, the 1.0 version will be replaced. But...I want to have both of them installed on my phone. That is to say, there will be two "HelloWorld" icons in the app drawer.
I use APKTool to extract the com.hello.world.apk into some "text" files, including an AndroidManifest.xml and a lot of *.smali files. In the AndroidManifest.xml, I saw this:
<manifest package="com.hello.world" versionCode="100" versionName="1.0">
I chaged the value "com.hello.world" to "com.goodbye.world". Then I re-build the apk file and transferred it to my phone.
I installed the modified package, it was successfully installed and I see two "HelloWorld" icons in my app drawer!
I try to launch the HelloWorld 1.0, it succeeds.
I try to launch the HelloWorld 1.1, it FCs immediately.
Well, this is my situation. How can I make both of them launch-able in my phone? Is it possible? What should I modify apart from "package" filed in AndroidManifest.xml?
Thanks a lot.
~~~~
wzyboy
wzyboy said:
It seems that this is the first time I start a new thread.
Hi, all. I want to know how to install two versions of one same application at the same time.
As a matter of fact, I want to install Opera Mini 4.2 China Version and Opera Mini 4.2 Internaional Version at the time. But...Since Opera Mini 5 makes it difficult to describe the question, here takes HelloWorld.apk as an example.
Well, there are two versions of the application "HelloWorld": 1.0 and 1.1. (This is just an example)
I have installed HelloWorld 1.0 on my phone, and when I try to install HelloWorld 1.1, the 1.0 version will be replaced. But...I want to have both of them installed on my phone. That is to say, there will be two "HelloWorld" icons in the app drawer.
I use APKTool to extract the com.hello.world.apk into some "text" files, including an AndroidManifest.xml and a lot of *.smali files. In the AndroidManifest.xml, I saw this:
<manifest package="com.hello.world" versionCode="100" versionName="1.0">
I chaged the value "com.hello.world" to "com.goodbye.world". Then I re-build the apk file and transferred it to my phone.
I installed the modified package, it was successfully installed and I see two "HelloWorld" icons in my app drawer!
I try to launch the HelloWorld 1.0, it succeeds.
I try to launch the HelloWorld 1.1, it FCs immediately.
Well, this is my situation. How can I make both of them launch-able in my phone? Is it possible? What should I modify apart from "package" filed in AndroidManifest.xml?
Thanks a lot.
~~~~
wzyboy
Click to expand...
Click to collapse
Well I'm not an android programmer but if I'm understanding you correctly you did the following (in the order I'm listing them):
1) Installed helloworld 1.1 (which over-wrote v1.0)
2) Opened the APK for helloworld 1.0 and made the manifest change
3) Installed the modded helloworld 1.0 on your phone
From a programmer point of view (just not with Android), if you followed the above scenario what is happening is HW1.1 installs it's files which are updated versions of the previous one (why else install an update). When you modded the HW1.0 you only changed the name and nothing else.
What is happening is when you go to install the modded version it's overwriting the newer files with the older ones since the phone is assuming the modded app is an entirely new program and allows the process to occur. This is why the modded one works and the 1.1 won't since the files it needs are the wrong version.
The only option of really have is to mod the actual program to look for different filenames, but without the source code to that app, that isn't going to happen.
Basically you need to have version 1.1 use the default files, and with the modded 1.0 you need to tell the software to "look" for the updated filenames (just don't forget to rename the actual files too).
Short of all that, as far as I know your SOL.
Rayvenhawk said:
Well I'm not an android programmer but if I'm understanding you correctly you did the following (in the order I'm listing them):
1) Installed helloworld 1.1 (which over-wrote v1.0)
2) Opened the APK for helloworld 1.0 and made the manifest change
3) Installed the modded helloworld 1.0 on your phone
From a programmer point of view (just not with Android), if you followed the above scenario what is happening is HW1.1 installs it's files which are updated versions of the previous one (why else install an update). When you modded the HW1.0 you only changed the name and nothing else.
What is happening is when you go to install the modded version it's overwriting the newer files with the older ones since the phone is assuming the modded app is an entirely new program and allows the process to occur. This is why the modded one works and the 1.1 won't since the files it needs are the wrong version.
The only option of really have is to mod the actual program to look for different filenames, but without the source code to that app, that isn't going to happen.
Basically you need to have version 1.1 use the default files, and with the modded 1.0 you need to tell the software to "look" for the updated filenames (just don't forget to rename the actual files too).
Short of all that, as far as I know your SOL.
Click to expand...
Click to collapse
Great thanks to your reply. But...
Android uses .apk files to install and run the application. When installing an apk file, the package installer just copys the apk file to /data/app directory and "register" the program in the system. The apk itself will not be "extracted" or anything else. That is to say, an apk file can be installed, and also can be run.
On the other hand, the apk will generate some files in /data/data directory when running. I am considering that it was these file that made the modded version FCs. I will try to look into these files to see will this works...
English is my second language, hoping that I did not made many grammar misktaks...
+1 on this topic. It's been a year and a half since the last reply and I've done a bit of searching online to find no answers. I anyone have some feedback on this? I'd ultimately like to use this to install two Google voice applications. I actually have an app from a blacked out version with a different icon. But if I install it it will overwrite the original Google voice app
cowboyaryk said:
+1 on this topic. It's been a year and a half since the last reply and I've done a bit of searching online to find no answers. I anyone have some feedback on this? I'd ultimately like to use this to install two Google voice applications. I actually have an app from a blacked out version with a different icon. But if I install it it will overwrite the original Google voice app
Click to expand...
Click to collapse
You are one hell of an archaeologist
Sent from My Samsung Galaxy S2 running Paranoidandroid Rom.What else if not?=P
I'd also like to know if that's possible. Even if it were possible, and an updated version of helloworld is relaeased (Say, HelloWorld v1.2), which version would it replace? Would it replace the (original) HelloWorld 1.1 or the (modded)HelloWorld 1.0?
Yes. Titanium backup. Profiles. These are the keywords.
lambstone said:
Yes. Titanium backup. Profiles. These are the keywords.
Click to expand...
Click to collapse
any idea how i would use TB and "profiles" to do it? sounds like you know from experience
Please use the Q&A Forum for questions &
Read the Forum Rules Ref Posting
Moving to Q&A
lufc said:
Please use the Q&A Forum for questions &
Read the Forum Rules Ref Posting
Moving to Q&A
Click to expand...
Click to collapse
thanks cheif i'm not the one who posted this almost two years ago
bbsrailfan said:
I'd also like to know if that's possible. Even if it were possible, and an updated version of helloworld is relaeased (Say, HelloWorld v1.2), which version would it replace? Would it replace the (original) HelloWorld 1.1 or the (modded)HelloWorld 1.0?
Click to expand...
Click to collapse
It would replace the only legitimate version found, the unmodded one. The point of modding the APK is to make Android see it as a completely different app, and not think of one as an update to the other.
dstruct2k said:
It would replace the only legitimate version found, the unmodded one. The point of modding the APK is to make Android see it as a completely different app, and not think of one as an update to the other.
Click to expand...
Click to collapse
do how do you mod the apk? change the filename? i'm sure theres more to it than that
lambstone said:
Yes. Titanium backup. Profiles. These are the keywords.
Click to expand...
Click to collapse
that feature on tibu is for switching DATA profiles basically so two or people can play the same game or whatever and keep they're progress separate like having multiple saved games. its not for switching versions of an app
I've tried to googling how to install multiple same applications in one device,but i didn't found anything how to do that simply...there are lot of stuff using ant and ruby script,but don't understand with that..so anyone figured out how to install multiple same apps with simply method? because i want to install operamini 7.5,but I've already instaled version 6.5...
sorry for my bad english
Need to install Galaxy S4 gallery on custom rom which has S4 gallary apk
Need help to install two versions of Gallary S4 and S5 Gallary can someone help...since I like the spiral option very good in S4 gallary which I miss and I like few features of Gallary from S5....in Ozcan rom on S4 i19500...please help
Necro, sorry. I have the same question. I have a copy of the old ifunny app and want both the new and the old, I would also like to run two versions of the same game (one with a nodded apk for unlimited coins and etc and one stock) I wouldn't mind if they shared data but if there's a way to make it where the asks do not share days that would be cool too.
Possible solution
Hi there,
While searching for a solution I found this thread and as it is one of the first results in google I thought to share what I found (didn't try yet) :
http://android.stackexchange.com/questions/19935/how-to-keep-two-versions-of-an-app-installed
It's first answer has a guide how to run two versions of same app throigh modifying onee of them with apktool.
Greets
Gachmuret said:
Hi there,
While searching for a solution I found this thread and as it is one of the first results in google I thought to share what I found (didn't try yet) :
http://android.stackexchange.com/questions/19935/how-to-keep-two-versions-of-an-app-installed
It's first answer has a guide how to run two versions of same app throigh modifying onee of them with apktool.
Greets
Click to expand...
Click to collapse
Hi
I would also like to do this for Google earth app I want to have both version 7.1.3 and 8.0.1 because the earlier version has more features but the latest looks more beautiful so I read the instructions from that link but it is way too complicated for a noob user like me plus judging from the last message it seems it hasn't been resolved so isn't there an app or xposed mod that does this automatically ?

[Q] Cyanogenmod Galaxy Tab 10.1 (3G VERSION)

Hello,
Starting out, I'm new to this forum and would like to know some details about changing the android 3.2 for ICS on my Galaxy Tab 10.1 (3G model). Attached following a screen of the device information.
I do not usually do such things and would like to know some information about the changing room of my GTAB
1 - If I switch to any room in case I do not like get back to the original factory?
2 - In addition to the camera what else is having problems in version cyanogenmod9?
3 - Could someone pass me the step-by-step how to do this exchange from the beginning, all explained. From what I have to save files, programs etc etc. I then lay the matter would have to be all detailed
4 - The tablet runs faster? which the benefits of changing room
5 - As you can see, I am Brazilian and I wonder if anyone knows when will the ics here ... if it's worth leaving the room or wait?
grateful
I forgot to ask last thing. My 3g will work?
imageshack
/photo/my-images/822/sc20120509015354.jpg/
Eduardo Boyadjian said:
Hello,
Starting out, I'm new to this forum and would like to know some details about changing the android 3.2 for ICS on my Galaxy Tab 10.1 (3G model). Attached following a screen of the device information.
I do not usually do such things and would like to know some information about the changing room of my GTAB
1 - If I switch to any room in case I do not like get back to the original factory?
2 - In addition to the camera what else is having problems in version cyanogenmod9?
3 - Could someone pass me the step-by-step how to do this exchange from the beginning, all explained. From what I have to save files, programs etc etc. I then lay the matter would have to be all detailed
4 - The tablet runs faster? which the benefits of changing room
5 - As you can see, I am Brazilian and I wonder if anyone knows when will the ics here ... if it's worth leaving the room or wait?
grateful
I forgot to ask last thing. My 3g will work?
imageshack
/photo/my-images/822/sc20120509015354.jpg/
Click to expand...
Click to collapse
1- You can find all info and files in the guide bellow to revert back (it's in the bottom line of the guide).
2- The camera is not working in the ICS custom releases, if you going to use gtask or overcome the camera should work (in gtask it worked nice)
3- the guide bellow
4- Yes, the main reason i wanted to go for another ROM was the laggy home screen, but if this is your main gripe, try some launchers before flash, i recommend GO LAucner, ADW Launcher and other. They are all in the market.
5- Dude, if even in the first world they don't have the update, how about us??? XDD
Original post:
As i can see, you're in the same boat as me, i had flashed my gtab 3g (7500) with gtask 14, beside it is for the wi-fi model, it worked flawless in my tab. But then i switch back to the original rom and im thinking in rooting it again and install the overcome rom that supports our model (3g).
The link and step-by-step instruction you can find here:
www teamovercome net/p7500/?page_id=5 (put a . between the spaces)
Just remember that you must copy the file "Overcome_10.1_Series_v2.3.1_P7500_Full.zip" to your SDcard (The guide don't say that). For the rest of the guide, is all ok.
Please use the Q&A Forum for questions &
Read the Forum Rules Ref Posting
Moving to Q&A

Galaxy Gear Connection Issues

So i recently purchased a galaxy gear (1st gen) and tried using it with my z ultra (stock ..not rooted) ...followed all instrctions ...installed galaxy gear atn manager and the samsung bundle of apps (individually) and then fire up galaxy gear app to install ...it is unable to make a connection ...neither via nfc or bluetooth ...anyone experience the same issues.... i read a few threads where people were using z ultra with galaxy gear but seemed like they had GPE rom ...anyone been able to use it with stock ??
Paired perfectly with monx rom. I'm running Tizen gg btw.. Copy/paste galaxygearstub.apk to system/apps changed permissions to match other system apps. Then install gear manager and open and connect - gear manager will then install all the embedded apps one by one. Reboot, clear cache/dalvik if any fc's. You may need to be rooted to put gear manager stub app into the correct location.
I also had it paired prior to Tizen upgrade but was running custom f0mey rom on gear then.
Sent from my C6833 using Tapatalk
Not sure about Gear 1. My Gear 2 is working fine with my Stock Rom.
Gear Manager for Gear 1 and Gear 2 is different. Be sure to install correct version.
And, I saw that Gear 1 firmware was updated to Tizen OS recently.
Johnnynho said:
Not sure about Gear 1. My Gear 2 is working fine with my Stock Rom.
Gear Manager for Gear 1 and Gear 2 is different. Be sure to install correct version.
And, I saw that Gear 1 firmware was updated to Tizen OS recently.
Click to expand...
Click to collapse
Tried everything..just wont connect Sucks!!
Make sure that the two are not already paired in android already. I had this problem then realized thet they were already paired and that was making the gear manager startup fail.
Johnnynho said:
Not sure about Gear 1. My Gear 2 is working fine with my Stock Rom.
Gear Manager for Gear 1 and Gear 2 is different. Be sure to install correct version.
And, I saw that Gear 1 firmware was updated to Tizen OS recently.
Click to expand...
Click to collapse
What did you do to get it working? I can't get messages or S-voice to work.
I follow the instructions here.
http://forum.xda-developers.com/showthread.php?t=2723862
There is a list of what's working and what's not.
Messages, S-Voice is not working.

[Q&A] [ROM][GT-I9300][AROMA][OTA][NG4]🌟S5 Sensation ROM™ v7.0🌟[Stock 4.4.2][Sep

[Q&A] [ROM][GT-I9300][AROMA][OTA][NG4]🌟S5 Sensation ROM™ v7.0🌟[Stock 4.4.2][Sep
Q&A for [ROM][GT-I9300][AROMA][OTA][NG4]?S5 Sensation ROMâ„¢ v7.0?[Stock 4.4.2][Sept 7,2014]
Some developers prefer that questions remain separate from their main development thread to help keep things organized. Placing your question within this thread will increase its chances of being answered by a member of the community or by the developer. Thanks for understanding and for helping to keep XDA neat and tidy! :smile:
bug camera in s5 sensation
I flashed S5 Sensation ROM on my s3 version 7.0, everything works fine except for the camera :crying:
please could someone give me the solution to this bug?
---------- Post added at 05:23 PM ---------- Previous post was at 05:10 PM ----------
I flashed S5 Sensation ROM on my s3 version 7.0, everything works fine except for the camera
please could someone give me the solution to this bug?
all share cast not working (turkey phone)
edit, new post.
Camera Not working
Hi Friend,
I loved your ROM when I installed. But to my surprise the camera is not working any more. Any fixes for that? Or Let me know if I am doing anything wrong.
What about flash player! S5 SENSATION
I've installed this rom and although it is fantastic, can't find the way to get some apps work well.
By example I can't watch the videos on Play Store and in Youtube.
Can anyone help me?
i have installed this rom and it works fine but sometimes when is in "sleep mode" it don't notify new whatsapp messages etc... how can i solve it?
error
pls fix error battery charging boot ty
josua_master said:
pls fix error battery charging boot ty
Click to expand...
Click to collapse
Can't be fixed at the moment. All S5 ports have this issue.
camera fix in ver.7
Guys Two methods u have fix ur camera problem.
First is used stock kernal, in stock kernal camera work f9.
second is if u used boeffla kenal flash it and finish it first then download kernal v5 link gin below and install it with any CWM.
now camera working f9.
:laugh:
http://forum.xda-developers.com/showpost.php?p=55700797&postcount=3123
everything works fine except for the camera
everything works fine except for the camera:crying:
I'm so happy to say It workes on my phone!
I'm so happy to say It workes on my phone!
raviprakash2707 said:
Guys Two methods u have fix ur camera problem.
First is used stock kernal, in stock kernal camera work f9.
second is if u used boeffla kenal flash it and finish it first then download kernal v5 link gin below and install it with any CWM.
now camera working f9.
:laugh:
http://forum.xda-developers.com/showpost.php?p=55700797&postcount=3123
Click to expand...
Click to collapse
Keyboard Problem
Hi! Sorry if my english is not good :/ I have tested lots of s5 roms for my S3 i9300, and all of them work perfectly but all have the same problem, the keyboard don't show the predictions... i mean, i see the place where it should be, but there isn't any word there, i can only see a white line :/ i dont know which is the problem and i hope someone here can help me Thank you all for your work!
Mass storage
How can I make mass storage works on my I9300 with S5 sensation 7.0?
I tried SG Mass storage enabler, scripts, and other apps, but nothing works. Only MTP stops and phone disapear from Win7.
There is 2 Samsung File-Stor Gadget USB Devices, but "no media".
Can someone help me? With stock rom UMS worked, but with s5 sensation 7 doesnt.
Sensation rom v7
Hi first I would like to say your rom is the best from all the other I have tried the only things I could find what I like to use but don't work in the version is the font chooser and the camera shortcut on the patten lock screen other than that it is very stable and fast.
All share cast not work s3 i9300 turkey
all share cast when scan does not find any device.
find a different phone devices in the same network.
help please.
phone information;
Model: GT-I9300
Model name: GALAXY S III
Country: Turkey
Product Code: TUR
PDA: I9300XXUGNB6
CSC: I9300OJVGNB3
MODEM: I9300XXUGNA8
Thank you.
How To Change Fonts
Can Anyone Tell How To Change Fonts In This COOL Rom !!!?
Hello.
First of all, thank you so much for your work. You give people positive energy that is sure to come back to you, but to a much larger size. You have to feel it. Basically, it works normal (vs 1Gb RAM), but there is a problem with YouTube - the latest version 5.10.3.5 does not work - the connection to the server is lost. Through a browser works fine. I think that the problem is not just me? Tried to install older versions of Gapps - only version of 07.26.2014 i can update normally (app works fine, but if i want view intro-video in play store or Flipp book - connection lost). Revision as of 06/06/2014 does not work after the upgrade. Sorry for my English.
Youtube
denben777 said:
Hello.
First of all, thank you so much for your work. You give people positive energy that is sure to come back to you, but to a much larger size. You have to feel it. Basically, it works normal (vs 1Gb RAM), but there is a problem with YouTube - the latest version 5.10.3.5 does not work - the connection to the server is lost. Through a browser works fine. I think that the problem is not just me? Tried to install older versions of Gapps - only version of 07.26.2014 i can update normally (app works fine, but if i want view intro-video in play store or Flipp book - connection lost). Revision as of 06/06/2014 does not work after the upgrade. Sorry for my English.
Click to expand...
Click to collapse
Hi I had the same problem with youtube so I uninstalled it and just installed the latest one from play store it now works.
Cpu stucked
Hello everyone, I've just installed this rom and it looks amazing, except that with stock kernel and boeffla the CPU is stucked ad 1000 Mhz, even if I move the setting in Boeffla Config, with CPU spy or BBS, the max is 1000 Mhz! What did I do wrong? Maybe Aroma settings?
madjim69 said:
Hi I had the same problem with youtube so I uninstalled it and just installed the latest one from play store it now works.
Click to expand...
Click to collapse
I tried to remove YouTube and install the latest version 5.10.3.5, but it did not work - the connection to the server is lost.
-> After that, I downloaded the old version of GAPPS and application started working only on version from 06.27.2014 - runs without problems and updated to version 5.10.3.5 - but does not work in applications such as PlayStore or FlipBook (the connection to the server is lost.).
-> GAPPS version of 06.06.2014 - all works without problems (app, in PlayStore, in FlipBook.....), but after upgrading to version 5.10.3.5 - does not work anywhere (the connection to the server is lost).

ZTE Z7 Max (NX505J) - IR Not Working

I'm deeply puzzled, and a bit annoyed my shiny new Z7 Max doesn't seem to have working infrared. I can see the thing, but software can't.
Bought the phone off Feebay, has a "Westone" logo on the back, along with China Mobile. ROM seems stock, shows as Android 5.1.1 and has no obvious bloatware.
The reception seems no better than on my old THL T6 pro, but the GPS is vastly better (can even get a lock indoors). Both hate having two sims (from the same provider) fitted - Another reason I upgraded, and another irritation, but one I can live with.
There was something about explore Nubia OS when it first started, and I'm used to KitKat, so there might be some tweaks or other away from stock I don't know of.
What's bothering me is I can't find any sign of an IR app on it, and anything I've downloaded just says the phone doesn't have an IR port.
Anyone got any ideas? Or known working/ stable roms where the IR *does* function?
I'm using MoKee, and it seems to work; can control my tv, which is all i've used it for. The app that comes with the ROM is called Infrared control.
This is the one I bought ebay.co.uk/itm/272424574812
I can't find any hint of IR software on the phone as it reached me, so will see if the seller can help (unlikely) and then.. Gasp.. invalidate my warranty by finding a rom that *does* operate the features the phone was sold as having.
I imported mine, but it also came running android 5.1 and with play store. Unfortunately I didn't try out IR before installing custom ROM, and can't remember if there was any IR app installed.
The app which comes with MoKee appears to be a Nubia app though.
barryburton said:
I imported mine, but it also came running android 5.1 and with play store. Unfortunately I didn't try out IR before installing custom ROM, and can't remember if there was any IR app installed.
The app which comes with MoKee appears to be a Nubia app though.
Click to expand...
Click to collapse
I can't find a download for the IR app that came with the phone, so may as well go for a different rom I guess.
Are there any known/ annoying bugs in Mokee?
Nothing I've noticed, but there's some stuff I haven't tested, like second SIM, Bluetooth audio and tap to pay. Probably other stuff too. Do a backup first and you've got nothing much to lose.
Shmbolic said:
I'm deeply puzzled, and a bit annoyed my shiny new Z7 Max doesn't seem to have working infrared. I can see the thing, but software can't.
Bought the phone off Feebay, has a "Westone" logo on the back, along with China Mobile. ROM seems stock, shows as Android 5.1.1 and has no obvious bloatware.
The reception seems no better than on my old THL T6 pro, but the GPS is vastly better (can even get a lock indoors). Both hate having two sims (from the same provider) fitted - Another reason I upgraded, and another irritation, but one I can live with.
There was something about explore Nubia OS when it first started, and I'm used to KitKat, so there might be some tweaks or other away from stock I don't know of.
What's bothering me is I can't find any sign of an IR app on it, and anything I've downloaded just says the phone doesn't have an IR port.
Anyone got any ideas? Or known working/ stable roms where the IR *does* function?
Click to expand...
Click to collapse
I recieved mine yesterday from GearBest. It also has the Westone logo on it and aside from missing the IR app was also missing the FM Radio.
After a little searching around I found a German forum from where I downloaded the, what seem to been stock, apks.
Now my FM Radio is working fine, but IR is still not functioning. An IR Romote App sugested a library is missing....
P.M. If you want the links, since I cannot post them due to new member restrictions.
I wasn't worried about FM radio, but did notice there was no sign of it.
I looked around for the IR app, but kept getting rather suspicious looking, definitely not, IR things in disguise.. Sigh.
It sounds like you've made some inroads though, fingers crossed there's a solution to this (though slapping a non stock rom on isn't a problem, *if* all features work relaibly).
Edit to add:
I've found an official ROM and copied the control and control test apks from it.. But although the app loads/ runs, there's still no sign of life from the IR led itself. No doubt I'm missing something the OS requires, it's been a while since I played with these things (and I wasn't very good at it then!).
I have same problem i extracted from 3.84 romofficial the 2 apk ir control and zfm radio only radio works hope there is a solution out there....
I bought the phone from china bangood and no help is provided...
Infrared works on z7 Max bought from banggood on CM12.1 ROM (www.needrom.com)
But i like the 5.1.1 oficiall rom is there any way to make it work i fixfmradio by finding an zfwapp.apk from previous official rom i also install ircontrol.apk and its the nubia one but is notworking pls help me enable ir here
vkoulbal said:
But i like the 5.1.1 oficiall rom is there any way to make it work i fixfmradio by finding an zfwapp.apk from previous official rom i also install ircontrol.apk and its the nubia one but is notworking pls help me enable ir here
Click to expand...
Click to collapse
this is the infrared apk (cn.nubia.control v3.0.1.1011) from the CM12.1 that works 100% in the CM12.1 ROM, you can try it on your ROM and see.
Note: - i beleive it has to be a system app but you can try installing as normal and see if it works, if not then you will have to make it a system app, also the Z7 Max has to be rooted to be able to do as below.
Here's how to make it a system app -
1). Install the attached app as usual.
2). use an explorer app like 'Root Explorer' and
move "ZTE_IRControl.apk" (which will very likely be in /data/app)
to /system/priv-app
then restart phone and then try the infrared app.
.
.
.
I can't install apk ..... Phone is rooted
---------- Post added at 03:53 PM ---------- Previous post was at 03:35 PM ----------
This apk doesn't install I have the phone rooted and my ircontrol.apk that I got from previous ROM I install it doesn't work then move it to system/priv-app reboot still not working I'm loving this phone but I don't like that ir is not working
I got mine from Banggood as well. Here's how I got both FM and IR working. All referenced apps unless otherwise stated can be found on Needrom under the Z7 Max section.
Phone needs to be rooted - use the utility "Z7 Max All In One Tool v3.3.0" to root and install TWRP, followed by SuperSU ZIP file from Chainfire via TWRP.
Extract the nubia_IRControl1.apk and nubia_ZFM.apk from the Stock ROM V3.89. Place them in your SDCard/microSD card.
Under Settings > Security - Allow installation from Unknown Sources, install the IR and FM APKs.
I used 3C Toolbox Pro from Play Store to move both apps to the system folder. Both runs nicely in the stock Nubia 3.96 that came on the phone.
Further on, I flashed the ResurrectionRemix Nougat Rom dated Feb 03, 2017, both IR and FM apps are already included and working. Both the stock and RR ROMs were working nicely, I just wanted the latest security patch by moving to RR.
For starters thank you very much for your help I already root my device with kingroot and I copy the twoapks from previous ROM 3.89 and install them then made them system apps by copying them to priv-app with root explorer
The problem is that the IR still not working can you help me skittle bit more cause I don't won't to change ROM I like this 3.96 please advise...please
finally I flashed the ResurrectionRemix Nougat Rom dated Feb 03, 2017, both IR and FM apps are already included and working...do you have a link of official rom 3.96??
Unfortunately I cannot find a download for 3.96, the latest available is 3.89 from Needrom.
hi
i too have the same issues, basically the IR has not been built into the lollipop rom. any help greatly appreciated as i love this rom
Radio is working on 3.96 but not ir only in RR nougat
Had other things take my attention off this problem - Glad to see lots of useful info in the thread now
I'd better get downloading and faffing.

Categories

Resources