[Q] RumRaider beta on Rogers HTC Raider - HTC Vivid, Raider, Velocity

I was able to successfully flash the abv mentioned rom on to my device, however, even after adding the Rogers LTE apn settings, I am unable to get data service. Any suggestions/thoughts?

make sure ALL your APN settings are correct and reboot?

Data works here on bell with correct settings. Sadly No MMS at the moment

I think I figured it out. The APN Type has to be '*' for it to work.

Yes I used the apn backup app and just restored and it worked.
With stick it would actually say LTE on status bar with this it just says 4G, but it is LTE.
Sent from my HTC Holiday using XDA App

zombie.raised said:
Yes I used the apn backup app and just restored and it worked.
With stick it would actually say LTE on status bar with this it just says 4G, but it is LTE.
Sent from my HTC Holiday using XDA App
Click to expand...
Click to collapse
im working on that one. the quick and easy (read dirty) method is to rename some icons. i hate doing that, but i will if i have to.

Great rom pirateghost! I just flash the beta 7 and its working really well. I figured out how to solve the mms issue for Rogers, and it might be the same for Bell users. The last line where it says 'APN Type' it has to be set as "*". At least that's what did it for me.
Is there anyway of incorporating the Amaze 4G camera into this ROM? If so, it would be one badass ROM once completed!!
Thanks again for all your hard work, these ROMs are truly a blessing

shoddy said:
Data works here on bell with correct settings. Sadly No MMS at the moment
Click to expand...
Click to collapse
I just replied to this at the bottom, but I believe for the MMS to work you would need to set the APN Type as "*".

finsilva said:
Is there anyway of incorporating the Amaze 4G camera into this ROM? If so, it would be one badass ROM once completed!!
Thanks again for all your hard work, these ROMs are truly a blessing
Click to expand...
Click to collapse
is the amaze camera app better than the sense 3.5 camera app we have here?

Pirateghost said:
is the amaze camera app better than the sense 3.5 camera app we have here?
Click to expand...
Click to collapse
The Amaze 4G camera has a better looking interface and a few more effects option. More importantly, it allows you to take video at 20mbps. There are also a lot of other nice little tweaks included in it. The holicakes rom has it if you want to check it out.

Here's a noob question... If I were to do a factory reset from H-Boot mode, would I loose my CWM recovery option?

finsilva said:
Here's a noob question... If I were to do a factory reset from H-Boot mode, would I loose my CWM recovery option?
Click to expand...
Click to collapse
From hboot mode? Why not just do it from CWM?
Sent from my HTC PH39100 using xda premium

shoddy said:
Data works here on bell with correct settings. Sadly No MMS at the moment
Click to expand...
Click to collapse
Have you tried the following. I got it from phandroid, it is not my work, I simply found it and copied it. Credit goes to a user named cocomuo or something like that.
Kokumuo
New Member
Join Date: Jun 2010
Posts: 3
Device(s):
Thanks: 0
Thanked 0 Times in 0 Posts
Post
You settings will not work. Not sure how it works with other carriers but on CBW you cannot use two different APN's for Internet and MMS. What I mean is that you're using "web.gocbw.com" for internet and "wap.gocbw.com" for MMS. Either change you Internet to "wap.gocbw.com" or make a single APN setup with both sets of setting (I'd use wap.gocbw.com still). Using one APN might not work as some devices are a bit touchy with trying to use one APN for MMS and Internet and some are fine.
Single APN setup Example:
Name: CBW Internet & MMS
APN: wap.gocbw.com
Proxy: 216.68.79.202
Port: 80
Username: cbw
Password: (none)
Server: 216.68.79.199
MMSC: http://mms.gocbw.com:8088/mms
MMS Proxy: 219.68.79.202
MMS Port: 80
MCC: 310
MNC: 420
Authentication Type: PAP
APN: default,mms
Two APN setup Example:
WAP Settings:
Name: CBW Internet
APN: wap.gocbw.com
Proxy: 216.68.79.202
Port: 80
Username: cbw
Password: (none)
Server: 216.68.79.199
MMSC: (none)
MMS Proxy: (none)
MMS Port: (none)
MCC: 310
MNC: 420
Authentication Type: PAP
APN: default
MMS:
Name: CBW MMS
APN: wap.gocbw.com
Proxy: (none)
Port: (none)
Username: cbw
Password: (none)
Server: (none)
MMSC: http://mms.gocbw.com:8088/mms
MMS Proxy: 219.68.79.202
MMS Port: 80
MCC: 310
MNC: 420
Authentication Type: PAP
APN: mms

slapshot30 said:
From hboot mode? Why not just do it from CWM?
Sent from my HTC PH39100 using xda premium
Click to expand...
Click to collapse
I feel like even though I do all the three wipes from the CWM, I feel like there are still remnants of the old rom I had on there previously. Just curious to see if its any different from doing a full wipe.

finsilva said:
I feel like even though I do all the three wipes from the CWM, I feel like there are still remnants of the old rom I had on there previously. Just curious to see if its any different from doing a full wipe.
Click to expand...
Click to collapse
its not possible for remnants to be there. let me explain:
the install script for the rom does the following in regards to formatting:
format("ext4", "EMMC", "/dev/block/mmcblk0p29");
format("ext4", "EMMC", "/dev/block/mmcblk0p35");
where mmcblk0p29 is /system (this is the whole rom, essentially. if this wasnt formatted there would be major problems loading a new rom)
mmcblk0p34 is /data, where all your user apps get stored along with settings (this doesnt get formatted in the actual install script, so its up to you if you want to format it)
mmcblk0p35 /cache
/cache
This is the partition where Android stores frequently accessed data and app components. Wiping the cache doesn’t effect your personal data but simply gets rid of the existing data there, which gets automatically rebuilt as you continue using the device.
Click to expand...
Click to collapse
doing a full wipe will actually FORMAT those partitions that you wipe....aka, NOTHING left on them. its not deleting and sending to a recycle bin, its actually formatting them, much like you do when you reinstall the OS on your computer.
basically, it will all yield the same results, with formatted partitions, so there is nothing that can carry over. the only things that can carry over are items on your internal/external sdcard and if you didnt wipe /data. i have never had any negative results from leaving stuff on my internal/external sd cards when switching roms, so that area is safe.

slapshot30 said:
From hboot mode? Why not just do it from CWM?
Sent from my HTC PH39100 using xda premium
Click to expand...
Click to collapse
Pirateghost said:
its not possible for remnants to be there. let me explain:
the install script for the rom does the following in regards to formatting:
format("ext4", "EMMC", "/dev/block/mmcblk0p29");
format("ext4", "EMMC", "/dev/block/mmcblk0p35");
where mmcblk0p29 is /system (this is the whole rom, essentially. if this wasnt formatted there would be major problems loading a new rom)
mmcblk0p34 is /data, where all your user apps get stored along with settings (this doesnt get formatted in the actual install script, so its up to you if you want to format it)
mmcblk0p35 /cache
doing a full wipe will actually FORMAT those partitions that you wipe....aka, NOTHING left on them. its not deleting and sending to a recycle bin, its actually formatting them, much like you do when you reinstall the OS on your computer.
basically, it will all yield the same results, with formatted partitions, so there is nothing that can carry over. the only things that can carry over are items on your internal/external sdcard and if you didnt wipe /data. i have never had any negative results from leaving stuff on my internal/external sd cards when switching roms, so that area is safe.
Click to expand...
Click to collapse
I just flashed back to the holiday ROM and then back to the RumRaider ROM and both times, my wallpaper and sound settings carried over. I'm not sure if thats the backup feature from google at work or not, but I will try and test it further.
I also noticed that with the beta 7 ROM, the buttons don't light up. I believe someone mentioned that in the dev section.
Thanks again for all of your help and input. Its turning out to be a great rom.

Amaze 4g Camera
I second that request for the Amaze 4g camera. I am currently running Holicakes .3 and I love the camera app, its slick. I am dying to try RumRaider and Sense 3.5. But, I want to wait for Beta 8 for you to improve the music app by removing beats. RumRaider + tweaked music + Amaze 4g camera + Sense 3.5 would be the king of all things Vivid Rom. Thank you PG for all of your hard work thus far!

finsilva said:
I just flashed back to the holiday ROM and then back to the RumRaider ROM and both times, my wallpaper and sound settings carried over. I'm not sure if thats the backup feature from google at work or not, but I will try and test it further.
I also noticed that with the beta 7 ROM, the buttons don't light up. I believe someone mentioned that in the dev section.
Thanks again for all of your help and input. Its turning out to be a great rom.
Click to expand...
Click to collapse
yes, thats the google backup feature
as for the lights, re-read the dev section. its the same as it was on stock. they light up when in dim room. cover the light sensor to test

Rogers Raider - RumRaider Beta 10 + Beats 0.2 mod
So far so good..flashed my phone last night and am already enjoying the differences I'm seeing.. Phone is nice and responsive, everything worked great and as expected the only thing I had to manually enter were my Rogers APN settings. Once I did that (I just wrote them all down & manually re-entered them) everything was perfect. Glad I read thru the dev forums or the data icons would have messed with me. LTE is working just fine for me. (shows as 4G but really thats what LTE is so..afaic its more accurate than stock.)
I also added the beats mod using cwm recovery, and I have to say that my Sennheisers really appreciated it. I mean, there are some ok EQ apps out there (like the EQ that comes with this rom for example) but there's a pretty noticable difference in the bass reproduction when using the beats audio mod. I'd say it was a definite upgrade to the rom, and I'm curious why it was taken out, as it was in the earlier betas..?
I like pretty much everything about this ROM.. no complaints, and my phone has even stopped randomly shutting off. Stock ROMs can officially bow to RumRaider and all involved in its creation - AWESOME JOB!! ...and of course many thanks, because as competent as I like to think I am, this was my first time rooting and flashing custom anything to a phone. I was a little freaked..but I lurked the forums for a couple weeks and kept tabs on the RumRaider and Bananacakes mods..but I ended up choosing RumRaider and I'm glad I did. Installation was easy, and the results were worth the risk. I'm excited to see when a "final" release is polished up and put out to sample. For now, I'm just glad not to have to look at the giant red rogers logo when my phone boots up anymore.. LOL!

^ No offense, but frankly speaking, beats was taken out because it sucks. Pirateghost did a lot of reading up in what it actually does and it isn't anything special. Real EQ? Try out poweramp. Beats is all for show, and that's exactly all it is for these HTC phones too. If you were really serious about audio, you shouldn't be buying HTC. You'd buy an old device out of the galaxy family with that Wolfson dac.
Sent from my HTC PH39100 using xda premium

Related

Mms

I'm using zenexp 9.7 rom. Works perfect but I decided to try something different so I downloaded the cm7. Full 8 cyanogen and I loved it but certain mms won't download it tells me download unsuccessful so I went back to Zenexp no issues there wit mms so my question is am I doing something wrong why can't I get certain mms to download?
intermittent mms is a known issue for CM roms, but I would say that the goodies you get with CM7 gingerbread specifically, it's worth not getting a few mms IMO.
Yeah, I get that too. He's right though. Maybe one day it'll get fixed.
I've actually had this problem with froyo too, not just GB. That's why I'm back on a sense ROM. It's outdated but everything I need works, as I get and send a ton of picture mail for work. Unfortunately sacrifices sometimes need to be made. Sigh...
Sent from my HERO200 using XDA App
il Duce said:
intermittent mms is a known issue for CM roms, but I would say that the goodies you get with CM7 gingerbread specifically, it's worth not getting a few mms IMO.
Click to expand...
Click to collapse
I think I've read something about how Sprint uses an "uncommon" method for handling mms, and therefore its not 100% compatible with AOSP/non-Sprint ROMS.
A workaround may be available though. This is just a thought, and I don't send/rcv many mms so I cannot easily test it. Just throwing it out there and maybe someone can provide results.
I know you can access your mms via your profile on Sprint's website. I assume that all mms still go to your account, regardless of whether or not you can view them traditionally on the phone. Based on that assumption, I would think that you could bookmark a link to the webpage and view the missed mms from the browser in CM7.
Any thoughts?
Sent from my HTC Hero CDMA using XDA App

Data works but not in browser

My data works but for some reason no browser will ever open a web page but apps like facebook and xda etc. all work without a problem. On wifi the browser will work as well but not on data connection.
I tried clearing cache, rebooting, airplane mode disable and then enable but got some reason data won't work in browser. I tried stock and dolphin as well but neither worked.
Any ideas?
Btw I'm on miui v6
Sent from my GT-I9000 using XDA App
What network are you on??
Sent from my CM7 modded I9000. Kernel is one mean son of a Glitch!
Bell using
Kc1 modem
Sent from my GT-I9000 using XDA App
Same issue here, hardly believe it's network/carrier related.
On russian forum (4pda.ru) found a guy with the same issue on his Galaxy Ace: it looks like everything works after resetting to factory defaults, but before the first time you
1. are out of wi-fi network range
2. have wi-fi enabled on the phone
3. trying to use browser (looks like all you have to do is to launch it)
Surprisingly enough Opera Mini works. Opera Mobile gives (slightly) more informative message: "Error requested content (site name here) cannot be resolved". DNS related stuff?
p.s. mine has stock froyo for EMEA/CIS (XWJPF), no root
Have you checked your APN settings to make sure they're all there and correct? solW might be right with it being a DNS issue.
Have you had the same problems with other ROMs?
It's not that data isn't working it's that it won't work in the browser only in apps
Sent from my GT-I9000 using XDA App
I also have the same problem...I was on v6 miui, then flash to twooey thinking it would fix the problem, but the issue is still there. I tried different modems also.
Samsung Galaxy S, Miui twooey Build, JK4
aznboi625 said:
I also have the same problem...I was on v6 miui, then flash to twooey thinking it would fix the problem, but the issue is still there. I tried different modems also.
Samsung Galaxy S, Miui twooey Build, JK4
Click to expand...
Click to collapse
I still have the problem too. Try using opera mini that was the only browser for me that worked maybe it will work for you too
Sent from my GT-I9000 using XDA App
Based on my previous idea about DNS issues, I've just tried to access sites directly and somehow it worked (not without any issues of course).
Using direct IP I was able to access google page and do some search, following the search results was out of the question. Similarly I got xda-developers.com to load (but only text - no images, flash, banners, etc.).
So it looks like it is DNS related issue. It would be nice if someone with rooted device could investigate this.
utsmaster18, could you try this on your device? just to verify my guess ...
For me, same issue, is there any way to uninstall/reinstall internet-google stuff from the android? opera mini 100% funcitonal, nothing with dolphin
solW said:
Based on my previous idea about DNS issues, I've just tried to access sites directly and somehow it worked (not without any issues of course).
Using direct IP I was able to access google page and do some search, following the search results was out of the question. Similarly I got xda-developers.com to load (but only text - no images, flash, banners, etc.).
So it looks like it is DNS related issue. It would be nice if someone with rooted device could investigate this.
utsmaster18, could you try this on your device? just to verify my guess ...
Click to expand...
Click to collapse
Sorry I'm not understanding, what exactly do you want me to do? I'm not familiar with internet terminology. You want me to go to a website by entering in an ip address?
What's a signature?
Yes, you got me right. Try typing ip address instead of site name/link for several sites
For example: "www.google.com" in my case was replaced by 74.125.39.105, "www.xda-developers.com" by 50.23.231.74 (to get site ip address you can use ping in windows/linux/(don't know about mac ^)) command line, i.e. ping "www.google.com").
Full address should look like "http://74.125.39.105", but in stock browser just the numbers will be enough. This should give you normal google seach page instead of internal error as result. Just in case, clear browser cache before that
Ouch ... had to wrap some links in quotation marks, because forum does not allow me to post links yet
solW said:
Yes, you got me right. Try typing ip address instead of site name/link for several sites
For example: "www.google.com" in my case was replaced by 74.125.39.105, "www.xda-developers.com" by 50.23.231.74 (to get site ip address you can use ping in windows/linux/(don't know about mac ^)) command line, i.e. ping "www.google.com").
Full address should look like "http://74.125.39.105", but in stock browser just the numbers will be enough. This should give you normal google seach page instead of internal error as result. Just in case, clear browser cache before that
Ouch ... had to wrap some links in quotation marks, because forum does not allow me to post links yet
Click to expand...
Click to collapse
This is still not working for me. And still working Opera, I really think that is some sort of messed up configuration at the internet browser android comes with...
sounds a bit like proxy problems of some sort, could you try resetting the browser to default settings?
Have you been using OpenVPN?
So did anything happen before this? Was it working before?
Reason I ask was that I had something similar when I flashed a different modem on a new ROM (even though the modem worked previously on a different rom). I flashed back to previous modem and it worked again.
Also thinking that APN may be the issue (possible ports configured which allow other apps internet access?). I would use download APN Global from market, backup my APN settings, delete and then use the database version pulled from the APN to refresh the APN's. So if it's not a modem issue (or haven't made modifications), then maybe try refreshing the APNs?
My 2c
Yeah it was working, even on the same rom but then just randomly it stopped working for some reason. I had never changed modems kernels or anything, it just decided to stop working.
What's a signature?
I am thinking it is APN issue. Any apps that could have potentially modified the APN's? I don't want to point to anything specific, maybe APN disabler? Otherwise, backup and get fresh APNs.
Yeah guys, I recon it would be APN.
In my case APN settings sent to me by my provider (in a configuration message) were wrong because they included Proxy: and Port: values. However when I checked the settings on local forums they didn't have the Proxy: or Port: (they were left blank). So, as soon as I removed values from those two fields it started working again. And yes, opera mini worked despite having Proxy and Port fields filled. So try blanking those fields out and see how you go. Remember to write down the original values first in case you need to go back to them.
Thanks guys for an interesting discussion and fix, nice work
Insanity cm031/platypus neo 15
fatboy323 said:
Yeah guys, I recon it would be APN.
In my case APN settings sent to me by my provider (in a configuration message) were wrong because they included Proxy: and Port: values. However when I checked the settings on local forums they didn't have the Proxy: or Port: (they were left blank). So, as soon as I removed values from those two fields it started working again. And yes, opera mini worked despite having Proxy and Port fields filled. So try blanking those fields out and see how you go. Remember to write down the original values first in case you need to go back to them.
Click to expand...
Click to collapse
Yep, that'd explain name resolving issue. Recreated APN with access point setting only and it worked for me. Thanks for the solution

[MOD] 4G and MMS on O3D roms

Ive been running the O3D 10j firmware for a couple days now, havent upgraded to 10k yet but heres something to help out with mms/4g and how I got them working.
MMS is as simple as changing the apn. For whatever reason trying to change the default apn has been spotty for me, so what I do is just create a new apn with the following information:
Name: AT&T
APN: wap.cingular
Proxy: leave blank
Port: leave blank
Username:[email protected]
Password:CINGULAR1
Server: leave blank
MMSC: http://mmsc.cingular.com
MMS Proxy: wireless.cingular.com
MMS Port: 80
MCC:310
MNC:410
APN Type: leave blank
Now save that and select it as your default. mms should now be working. For whatever reason that is the only ATT apn info I could get to work with mms. If I try to use any other configuration for ATT I lose mms functionality. Which was frustrating because I kept copying the apn off my other ATT phones and mms would not work. Neither my Aria nor my Captivate need the password but apparently this phone NEEDS that password to get mms on P920 roms...
4G is a little more complicated and, at the moment, has a trade-off. So from here you have to make a decision, because I have as of yet been able to fix this issue. But you have to choose to either have 4G and use a 3rd party dialer/contacts app OR you can keep the default apps and not have 4g. You're call but here how its done. Go into /system/etc/flex/flex.xml and change it to read like this:
<?xml version="1.0" encoding="utf-8"?>
<Flexinfo>
<Flexinfo
FLEX_COUNTRY_CODE="US"
FLEX_OPERATOR_CODE="ATT"
FLEX_MCC_CODE="310"
FLEX_MNC_CODE="410"
FLEX_REGION_CODE="0"
FLEX_SIMLOCK_ON="0"
FLEX_MODEL_CODE="0" />
</Flexinfo>
Now you should be getting the H+ symbol in the notification bar AND the up/down arrows. If you dont have the arrows then your apn is set incorrectly. If you dont have the H+ then you messed up in the flex.xml file.
Some notes:
Ive tried replacing the default Phone.apk/Contacts.apk with their equivalents from aosp roms, O3D roms, and Thrill roms. None of them have any affect on the issue. And trying to change the TelephonyProvider.apk has only resulted in frequent FC's. I can only assume its a framework issue but since I use a 3rd party dialer anyways Im not inclined to look into it.
I removed the default Contacts.apk because I got the occasional FC when ending a phone call. Removing it has no effect on anything since you cant use the default contacts app with the above 4G method. You have to keep the stock Phone.apk or you will lose the ability to make changes to your apn. It does not however affect your ability to make/receive calls with a 3rd party app. ContactsProvider.apk is also required or you wont be able to sync contacts to your phone.
Speaking of 3rd party dialers, Ive tested GoContacts and DialerOne so far and both work with no issues what so ever and have built in contacts functionality. Im going to assume there are many more that work as well.
So now theres really no excuse not to dive into the wide world of O3D roms!
EDIT: Just remembered that the time will be wrong after this too. Im trying to remember what I did to fix that. In the mean time you can go to menu>settings>Date & Time> and manually set the time. Its just that the GMT is being calculated incorrectly for each timezone so it gets the hour wrong so you need to set it manually. The minutes are correct though, you dont need to mess with those.
That's awesome news callmearia! Much appreciation for all the hard work you put in to get this working. Ill try this out 2nite when i get home. Thanks again
Sent from my LG-P925 using XDA App
Wait, you're telling me that I can run O3D roms on my Thrill? Sorry if this is a dumb question but I just picked one of these up a few days ago and still learning more about it.
formuk said:
Wait, you're telling me that I can run O3D roms on my Thrill? Sorry if this is a dumb question but I just picked one of these up a few days ago and still learning more about it.
Click to expand...
Click to collapse
Yes you can (cuz its essentially the same device) but up till now you lost the 4g and MMS with an o3d rom.
Sent from my LG-P925 using XDA App
03d??
any word of getting a 3d coverter for movies?? or where i can find 3d movies at for our phones??? please reply thxs
---------- Post added at 06:55 PM ---------- Previous post was at 06:54 PM ----------
By the way this firmware works awsome appreciate it
no problems so far
when i do this mod, my google voice stops working...any ideas? i get the H+ and 4g speeds. is that part of the trade off?
mafiadesi said:
when i do this mod, my google voice stops working...any ideas? i get the H+ and 4g speeds. is that part of the trade off?
Click to expand...
Click to collapse
Ooh i didnt test google voice. Ill look into it tomorrow though.
Sent from my LG-P925 using Tapatalk
Have you tried also doing the telephony.apk? I noticed the Thrill and O3D have different sized telephony.apk sizes by a significant amount. I will try and test myself sometime tomorrow or Monday depending on my schedule.
pjcforpres said:
Have you tried also doing the telephony.apk? I noticed the Thrill and O3D have different sized telephony.apk sizes by a significant amount. I will try and test myself sometime tomorrow or Monday depending on my schedule.
Click to expand...
Click to collapse
Yea if i remember correctly it caused a few issues with fc's. But it couldnt hurt to try it again.
Sent from my LG-P925 using Tapatalk
claro pr
so what if im on another carrier not att but claro puerto rico ? how i fix the 3g?
bubuphonik said:
so what if im on another carrier not att but claro puerto rico ? how i fix the 3g?
Click to expand...
Click to collapse
3g SHOULD just work. But if not then go into your stock rom and copy the contents of /system/etc/flex/flex.xml and oaste them into the same file on your o3d rom. You might also want to get the stock apn settings off your phone to setup an apn on your o3d rom. Just follow the directions from the original post. I would recommend trying to change the apn first an then if that doesnt work go ahead try modifying your flex.xml file necuse the latter can cause issues.
Sent from my LG-P925 using Tapatalk
constant fc
after trying this with my thrill.. all the steps mentioned.. i rebooted and began to recieve FC for com.android.phone and com.lge.android.hime
glad i saved a copy of the old xml before trying this.
geraldf80 said:
after trying this with my thrill.. all the steps mentioned.. i rebooted and began to recieve FC for com.android.phone and com.lge.android.hime
glad i saved a copy of the old xml before trying this.
Click to expand...
Click to collapse
Which rom? So I can look into it.
Sent from my LG-P920 using Tapatalk
claro pr only has h+ which i still have after flashing king rom is that normal ?
CallMeAria said:
Which rom? So I can look into it.
Sent from my LG-P920 using Tapatalk
Click to expand...
Click to collapse
[ROM][06/10] ThiaiZO3D V1.5-BaseV10K-Stock,Stable and fast
is the title.. everything else works great... but when i change the flex.xml info it starts all the trouble..
apn works great.. up and down arrows.. but no more than an "h" symbol.. no +
Edit: any ideas?
geraldf80 said:
[ROM][06/10] ThiaiZO3D V1.5-BaseV10K-Stock,Stable and fast
is the title.. everything else works great... but when i change the flex.xml info it starts all the trouble..
apn works great.. up and down arrows.. but no more than an "h" symbol.. no +
Edit: any ideas?
Click to expand...
Click to collapse
The apn wont add the h+. That's where the flex.xml comes in. The apn is just for mms.
I have ThaiZ booted right now but with Franlovs kernel and the only time I get a fc is if I try to use the stock dialer or contacts app. Is that what you're doing or are the fcs happening all the time? This is why the 3rd party dialer/contact app is required.
Sent from my LG-P920 using Tapatalk
bubuphonik said:
claro pr only has h+ which i still have after flashing king rom is that normal ?
Click to expand...
Click to collapse
Is the phone model a P925 or P920? I tried to look into it and Claro does offer 4g, although I couldn't determine on what devices.
Sent from my LG-P925 using Tapatalk
CallMeAria said:
The apn wont add the h+. That's where the flex.xml comes in. The apn is just for mms.
I have ThaiZ booted right now but with Franlovs kernel and the only time I get a fc is if I try to use the stock dialer or contacts app. Is that what you're doing or are the fcs happening all the time? This is why the 3rd party dialer/contact app is required.
Sent from my LG-P920 using Tapatalk
Click to expand...
Click to collapse
So your saying i need to remove the phone and contacts apk files completely.. thought i could just not use them..
Yes. Im getting constant fc's when i have the modified flex.xml..
unless im wrong.. im gonna try deleting the phone.apk and contacts.apk files.. um.. later..
could you save a tired guy the trouble of sifting through search results and lemme know the filepath for said apk files?
Sent from my LG-P920 using xda premium
geraldf80 said:
So your saying i need to remove the phone and contacts apk files completely.. thought i could just not use them..
Yes. Im getting constant fc's when i have the modified flex.xml..
unless im wrong.. im gonna try deleting the phone.apk and contacts.apk files.. um.. later..
could you save a tired guy the trouble of sifting through search results and lemme know the filepath for said apk files?
Sent from my LG-P920 using xda premium
Click to expand...
Click to collapse
Don't remove phone.apk. Too many things dependant on it. Contacts.apk is in /system/app/Contacts.apk
Have you messed with anything telephony related? That's when I started getting a lot of fc's.
Sent from my LG-P920 using Tapatalk

[ROM] TOUCHLITE GE TOUCHWIZ Version 1.1

[ROM] TOUCHLITE GE TOUCHWIZ Version 1.1 for the Google Edition Galaxy S IV
Welcome to the TOUCHLITE GE TOUCHWIZ ROM ( version 1.1 ) based off of the[ROM][MGA][26July] Barebone Firmware V3 by Stavr0s91i which is a I9505XXUBMGA Base debloated deodexed Touchwiz Firmware. First a Big Thank you to Stavr0s91i, for the Base to work with and Illogic6, nfsmw_gr who also made it possible for us to get this far. Finally a Big Thank you to Ktoonsez for his tireless work developing Kernal's. After a couple of months of modification we have something to start with here. I spent over a month using Stavr0s91i work to cut down the MH1 base with no success but thanks to Illogic6 he did get the Barebone firmware to boot by adding some libs and modules from the 4.3 OTA. I added some tweaks, applications, a kernel, and made some other modifications to come up with this lightweight and stable Touchwiz ROM. I have been testing it for almost a week and I have been very pleased with how nice it performs, the battery life is good as well. ALOHA from MJ
Also Thank you to
SamuriHL
occupational_hazzard
Jonny
Connexion2005
Chainfire
Woody
and our Loyal I9505G community here on XDA
Kernel Source can be Found
https://github.com/ktoonsez/KT-SGS4
The [ROM][MGA][26July] Barebone Firmware V3 [Stock[[Rooted][Deodexed] can be found
http://forum.xda-developers.com/showthread.php?t=2349369
What's working? ..Everything you tell me. ( 4G + LTE speed in my area )
What's under the Hood? ( Size 639mb )
[ROM][MGA][26July] Barebone Firmware V3 Base
KT-SGS4-JB4.2-TW-INTL-08.25.2013
Galaxy S4 Camera
Clock
Gmail
Maps
MyFiles
Transparent Clock Weather Widget
Flayvr Photo Gallery [ FLAYVR MEDIA LTD ]
Google Calendar
KT Tweaker
Goo Manager ( TWRP Recovery )
SuperSU ( Rooted )
Sketchbook For Galaxy Note 3
Youtube
Screenshots
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
DISCLAIMER ( I nor anyone on this forum is responsible if you brick your phone, lose your job, or life as we know it ends. We are here to help if you need it, READ the Forum FIRST, then ASK.
DOWNLOAD Version 1.1 HERE
MD5 Check 7F3E25422A04B7BE0CDB651793B22C2D
INSTALLATION INSTRUCTIONS
1. For the Best Performance Odin back to stock and Wipe Data to make space for Touchwiz ( Please Refer to the Odin threads ) You can store nandroid backups on your external SD card.
2. Place the TouchLite GE ROM on your SD Card
3. TWRP Recovery Recommended, WIPE data, cache, and dalvik 3 times, Wipe System once.
4. Install Zip from SD Card, ( Wipe cache and dalvik, Reboot and Enjoy ) Patience Booting up takes awhile.
When the ROM boots up it looks very bare so you will have to set up your Google account from settings, email, or the Play store and set up your lock screen and widgets. Also please note that you will have to probably input your APN ( Access Point Names ) so that Data works. I personally had to input my AT&T APN's.
Bugs & Reporting
As with any Custom ROM nothing is a 100% perfect. If you have found a legitimate bug please post as much information as possible so that I can address it. I cannot promise when or if this ROM or any other work I am involved in will be updated due to changes, time, or other things I am involved in which may take priority.
APPRECTIATION:
The best way to show your appreciation for any of the work that I or any other member or developer that is associated with this is to
1. Hit the Thanks Button
2. Leave a Good Comment
3. Hit the DONATE button
4. Get Involved with some work here on XDA
Reserved
Sent from my GT-I9505G using Tapatalk 2
Top
Downloading now!
EDIT: Looks awesome so far!
Here are the LTE APN settings for anyone on ATT.
Name: ATT LTE
APN: pta
MMSC: http://mmsc.mobile.att.net
MMS Proxy: proxy.mobile.att.net
MMS Port: 80
MCC: 310
MNC: 410
Authentication type: none
APN type:default,admin,fota,mms,supl,hipri,internet
BEARER: LTE
BTW the added the transparent clock weather widget because it has more customization and looks great. The Galaxy Note 3 sketchbook application is pretty nice as well.
I am not sure if anyone has used Flayvr but the Gallery is very nice
Sent from my GT-I9505G using Tapatalk 2
Some screenshots would be Nice
Gesendet von meinem GT-I9001 mit Tapatalk 2
Yey finally!
Quick question though... Last night I was bored out of my mind, so I flashed one lite touchwiz rom from the i9505 and I flashed the 4.2.2 kernel after that, and I noticed that when im on the call, and i move the phone close to me and away, and the screen starts turning on and off - at some point it just turns off, and gets stuck.
I wanted to make sure that this does not happen on here too.
Other than that - thank you, sir
Edit: Here are the APNs for T-Mobile US:
Name: T-Mobile US LTE
APN: fast.t-mobile.com
Proxy: not set
Port: not set
Username: not set
Password: not set
Server: not set
MMSC: http://mms.msg.eng.t-mobile.com/mms/wapenc
MMS Proxy: not set
MMS port: not set
MCC: 310
MNC: 260
Auth type: none
APN type: default,mms,supl
APN protocol: IPv4
APN roaming protocol: IPv4
APN enable/disable: check (APN Enabled)
Bearer: Unspecified
MVNO type: none
MVNO value: not set
I just copied those from my existing t-mo on 4.3 stock, lets jump right in TouchWiz !!
TheTechnolgyhelper said:
Some screenshots would be Nice
Gesendet von meinem GT-I9001 mit Tapatalk 2
Click to expand...
Click to collapse
They are coming later today
UPDATE: Wish Granted. I put one screenshot up.
Sent from my GT-I9505G using Tapatalk 2
Alright,
A few things.
1st - the clock on the lockscreen is missing. Like, its there, but its invisible. It only shows up once I receive a txt msg.
2nd - Initial start of the rom - it will automatically load up. It doesn't ask about google account. Which means that once I set up my google account - it would not install all my existing applications back.
EDIT: To fix the clock - you have to go to settings->my device->lockscreen->lockscreen widgets->clock or personal message->choose clock->save
It does not work with personal message. Also, for some reason - weather is also missing.
Will report with more bugs shortly
t0ny0 said:
Alright,
A few things.
1st - the clock on the lockscreen is missing. Like, its there, but its invisible. It only shows up once I receive a txt msg.
2nd - Initial start of the rom - it will automatically load up. It doesn't ask about google account. Which means that once I set up my google account - it would not install all my existing applications back.
EDIT: To fix the clock - you have to go to settings->my device->lockscreen->lockscreen widgets->clock or personal message->choose clock->save
It does not work with personal message. Also, for some reason - weather is also missing.
Will report with more bugs shortly
Click to expand...
Click to collapse
Those are not bugs. This ROM is very light lots of things were removed like the google sign in and you have to set up your lock screen the way you want, widgets the way you want. If your looking for something that is pure stock with everything already running and set up out of the box this isn't for you.
Touchwiz is just too big for our partition so some sacrifices have to be made
The screenshot was how I set up mine you can configure yours as you wish
Sent from my GT-I9505G using Tapatalk 2
BTW bugs are force closes and key settings not working ...I.E. Dealbreakers
Sent from my GT-I9505G using Tapatalk 2
MJHawaii said:
BTW bugs are force closes and key settings not working ...I.E. Dealbreakers
Sent from my GT-I9505G using Tapatalk 2
Click to expand...
Click to collapse
Have you looked at whats nesscary to get the CM mms apk to work on TW roms?
I know its changing some frame work and a few other things
Installed the new version. I'll kick, break, and test today and report back
I really am surprised how fast this is given it's TW..
great so far
I've been running since the release and haven't had any issues yet. Very quick
The only thing I did was install the email app from Aroma so I could still use it for work.
I'll keep using it for another week and report any issues I find
Good job on this release
deezytg1 said:
I've been running since the release and haven't had any issues yet. Very quick
The only thing I did was install the email app from Aroma so I could still use it for work.
I'll keep using it for another week and report any issues I find
Good job on this release
Click to expand...
Click to collapse
I am interested in getting email app as well. Could you explain how you got it from Aroma?
I got aroma from here
http://forum.xda-developers.com/showthread.php?t=2349369
you just copy to sd and run it from your recovery
deezytg1 said:
I got aroma from here
http://forum.xda-developers.com/showthread.php?t=2349369
you just copy to sd and run it from your recovery
Click to expand...
Click to collapse
Thanks, That did the trick!
np
jkassay said:
Thanks, That did the trick!
Click to expand...
Click to collapse
No prob
Finally got to test the ROM last night....very smooth and fast. I've had no booting issues compared to the many other GE ROMs.
Thank you for your persistence!
Anyone know the right combo of installs to get the voice commands working for the camera?
I've installed S-Voice via Aroma and that gets me to the point of setting it up but once I say "shoot" "cheese" etc, nothing happens. Several of the other S-Voice commands seem to work fine but this one is stumping me.

[Q] JB 4.3.1 - edit RTSP / HTTP proxies

Just a quick question.
I just moved from an Evo 3D to a Sprint HTC One, and previously in GB and ICS, I had to nuke out the Sprint RTSP / HTTP proxies since they were godawful and I wanted better speed.
I can't seem to find where in JB the RTSP / HTTP proxy settings are. I'm not talking about for WiFi - I'm worried about GSM / CDMA / WCDMA / LTE. It's rooted, S-OFF'd, and SIM-unlocked, so I don't doubt that I can get to what I need to to get this done.
Anyone have any ideas?
Thanks in advance!
http://www.pocketables.com/2011/06/how-to-boost-htc-evo-3d-data-speeds.html
http://forum.xda-developers.com/showthread.php?p=41765879
Sent from my HTCONE using xda app-developers app
I should clarify - I'm running an AOSP ROM and really don't want to have to go back to Sense, as PACman is too addictively good to lose.
For some reason, MSL Reader won't pull my MSL either; it claims that it's not a CDMA device, even though it's on CDMA only ATM and the LTE SIM is ejected.
Double-post. Sorry.
tuxedojack said:
I should clarify - I'm running an AOSP ROM and really don't want to have to go back to Sense, as PACman is too addictively good to lose.
For some reason, MSL Reader won't pull my MSL either; it claims that it's not a CDMA device, even though it's on CDMA only ATM and the LTE SIM is ejected.
Click to expand...
Click to collapse
you cant modify this on AOSP, you need to make a backup of your rom, flash a sense rom, dial ##data#, enter edit mode, enter MSL (sprint should give it to you), and you will see an option somewhere in there to change those settings.....then simply restore your backup you made, the settings will stick....

Categories

Resources