Build.prop explained - X Style (Pure) Q&A, Help & Troubleshooting

Hey guys,
I´d like to know more about that important build.prop file that resides ower device.
I know that have lots of information about this along the web but between this amount of information, I haven't found what I was expecting.
I'd like to find some information that explains the file. In the detail.
For example, this settings:
'persist.radio.multisim.config=dsds'
'persist.radio.force_get_pref=1'
What does it mean each one? What the 'dsds' means? Why '1'? What are the other possible options for 'persist.radio.force_get_pref'? and so on....
The main question is... How the hell the developers knows where to change to fix something between that bunch of information on the file?
(If this exists on somewhere... please, I apologize, but point me where to go)
Thanks in advance

wesley.mrocha said:
Hey guys,
I´d like to know more about that important build.prop file that resides ower device.
I know that have lots of information about this along the web but between this amount of information, I haven't found what I was expecting.
I'd like to find some information that explains the file. In the detail.
For example, this settings:
'persist.radio.multisim.config=dsds'
'persist.radio.force_get_pref=1'
What does it mean each one? What the 'dsds' means? Why '1'? What are the other possible options for 'persist.radio.force_get_pref'? and so on....
The main question is... How the hell the developers knows where to change to fix something between that bunch of information on the file?
(If this exists on somewhere... please, I apologize, but point me where to go)
Thanks in advance
Click to expand...
Click to collapse
Nobody???

I would say "1" is on, "0" would be off. That's what it is in the digital world. As far as the other. Idk. I've been looking for help with build prop stuff myself to no avail.

Related

Registry guide?

Is there a guide to all the terms and settings used in the registry? Maybe I just haven't found it on this site...
I would like to decipher those things, and find out how to mod my 7501.
Beyond that, is there a newbie guide to programming? The last programming for WM6 I did was Fortran.....
bump, would still like to know about all the settings in registry and how to interpret them...
Take a look at this site and this one.
Thank you, much appreciated.

Auto-Text - Edit? Change? Add?

I'm hoping someone can help here
I know I'm limited in most applications of this... actually, in probably 3/4 of things I use, unless someone knows how to get this working in Opera/Opera Mini or PIE...
Anyway - I tried editing the "Auto Complete" file based on an article, but it wasn't possible to do on the WM that's on the Titan...
Does anyone have any suggestions on how to fix this for at least MOST applications? And if anyone has any tips on how to get autocorrect/complete working in things like Forum Forms, for Opera/etc - I'd very much appreciate that (I've searched and maybe I just suck - because I can't find ANYTHING)

Opinions and ideas on the upcoming beta!

Okay,
I have this problem where I am never pleased with anything I do, so I keep trying to improve it and improve it even further. The time has come.
I have been coding the new features for my website (www.touch-innovation.com) and here is the list I have thought of and has users suggest via email:
- Live submit (Submit directly onto the site... instantly. With lots of security though )
- Screenshots on category lists
- Download names instead of random hash.
- Add comments to news sections
- And lots of admin panel updates which you don't need to know about
Another thing is, what do you think of the design. Does it need a re-design? Does it need to be minimilsed or what not?
Help me out come on, throw me some ideas!
<3
dude, this sounds great
all of those features sound like excellent additions. good work on the coding
no, the site looks fine the way it is
Why do you want to change that site it's clear easy to use and looks cool
Because people have complained about the fixed backgrounds on the left and right. I was thinking of making them a bit thinner to make more room for content and shiz.
Thanks for your compliments, so you don't have any other feature requests? And the Live sumbmission idea, would anyone use it?
Thanks again
Anyone with a decent knowledge of php drop me a line. I'm having problems editing filenames on the fly (sounds easier than it is trust me, complex scenario).
The one and only thing I'd like to see changed? Not use javascript when clicking on applications to take you to their detail page. I get annoyed when I can't open it in another tab
It only uses javascript for the onhover effect and to make the whole td a link. If you want to open it in the new tab, just right click on the name (which is a hard link, for people without javacript).
It's been like this since first release, I did it just incase of no javascript
Napbree said:
Anyone with a decent knowledge of php drop me a line. I'm having problems editing filenames on the fly (sounds easier than it is trust me, complex scenario).
Click to expand...
Click to collapse
I guess I need more specifics, but a nice little loop with the function rename() should do the trick. I am sure you have looked at some resources, but the php.net site is great, here is rename with tons of good examples, some of which I have used in the past:
http://us.php.net/manual/en/function.rename.php
Hope this helps, FYI the site looks great!
Gudy
Thanks, rename isn't on the fly though. I'd have to rename it, then let the user download it... wait till the user has downloaded it, and then rename it back. And what hapens if someone else trys to download it in the proccess of this, they'll get a 404 for the file. I'd have to copy to a new location and do it that way. No point, I need on the fly not permanent. Normally I would use the rename function but it's not helpfull in this sutation.
I just need to play with the headers for a while and get them working .
Thanks for your help though
And thanks for the compliments.
Napbree said:
Okay,
I have this problem where I am never pleased with anything I do, so I keep trying to improve it and improve it even further.
Another thing is, what do you think of the design. Does it need a re-design? Does it need to be minimilsed or what not?
Click to expand...
Click to collapse
hell yeah, I know that feeling...I´m never pleased with my designs as well
And no, it doesnt need a major refresh yet but try to make the background a bit lighter so the whole site gets a bit more contrast. Just lighten up the background by 10-20% or so and show us what it would look like
And tell me if I´m wrong...but "Touch friendly programs for the windows mobile" sounds extremly strange, what about leaving the "the" out ?
regards,
Martin
Napbree said:
Thanks, rename isn't on the fly though. I'd have to rename it, then let the user download it... wait till the user has downloaded it, and then rename it back. And what hapens if someone else trys to download it in the proccess of this, they'll get a 404 for the file. I'd have to copy to a new location and do it that way. No point, I need on the fly not permanent. Normally I would use the rename function but it's not helpfull in this sutation.
I just need to play with the headers for a while and get them working .
Thanks for your help though
And thanks for the compliments.
Click to expand...
Click to collapse
I didn't understand what you needed, and I think now I do, you want to change the name as someone is downloading a file correct? If so, check this sample out, modify the header section as needed, ie this line:
header("Content-Disposition: attachment; filename=\"$file\"");
you could do any type of processing on the name you need, then just pass the string like above. Here is the link to the rest:
http://apptools.com/phptools/force-download.php
Hope this helps
m.schmidler:
Thanks, I'll try that now. And the "The" bit... Well it makes it sound like it's the only decent phone - aka unlike iphone . Its pronounced th-eee not th-u. So it sounds slightly different.
Get what I mean?
mjg7876:
I've been looking into the disposition header for a while, but the way I currrently download files is quite simple but to interlock these 2 things togeather is complex. Especially considering I will need to do checking, exploding (for the file extension) and redirecting if it's not hosted on the server. I make things too complicated lol.
Thanks for your help guys btw
Anyone else?
Is it me or does the logo from this site in this post look very similar to yours?
http://forum.xda-developers.com/showthread.php?t=441647
Great Site
I love your Site. In my opinion : it doesn't need any re-design.
But i do have one suggestion : it would great to have your tables with worting features.... One could just click on the title of one column and it would be sorted.... Understand what i mean ?
Thank for your work.
Thanks for your kind words
And btw, you can already sort them (programs list only atm). Simply click on the title, download, views, etc. and it will resort.
Try it
BTW: That logo looks like a skeleton version of mine :/. There's everthing thats on mine, just minimilised! What's going on? :/
ATM work is up to my eyes, so I've had to slow down on the development. It's not something I can rush due to security.
Any more suggestions I will be more than greatful

[Q]

temple run the game is not working on my htc hd2 android operating after instilation ????
Put a title to your thread and then I'll help you.
How to do that?
On the bottom right corner of your post click on "Edit", then "Advanced" .. once you go there, you'll find your empty title, retitle it and then I'll help you.
Also, give us more information. What ROM exactly have you installed? What does it say when you try to open it?
Marvlesz said:
Put a title to your thread and then I'll help you.
How to do that?
On the bottom right corner of your post click on "Edit", then "Advanced" .. once you go there, you'll find your empty title, retitle it and then I'll help you.
Also, give us more information. What ROM exactly have you installed? What does it say when you try to open it?
Click to expand...
Click to collapse
I didn't know this until recently but apparently if you double click on the thread title then you can edit it. Haven't tried it out yet though.
Yeah OP, retitle this thread and give us something to work with here, it's pretty much impossible for you to tell someone 'my phone's broken - fix it' and expect any valid suggestions.
Nigeldg said:
I didn't know this until recently but apparently if you double click on the thread title then you can edit it. Haven't tried it out yet though.
Yeah OP, retitle this thread and give us something to work with here, it's pretty much impossible for you to tell someone 'my phone's broken - fix it' and expect any valid suggestions.
Click to expand...
Click to collapse
no title no detail how do you expect people to help you

[Q] Trying to make my own stickers for S-Planner!

Although S-planner has many stickers doesn't cover many professions like my own, so I decided and created some that suits my needs.
These stickers are png images 150x150 32bpp (obviously with Alpha-channel/transparency).
I based mine in the same files as the stickers I downloaded form Samsung trying to achieve maximum compatibility.
I put them in the /data/data/com.android.providers.calendar/sticker where the originals reside and changed (using ES explorer/root on) the permissions to be the same as the originals -rwxr-xr-x plus the owner and the group to u0_a151
But unfortunately the extra stickers aren't appearing in S-planner even after Reboot.
So. There must be something else to consider.
Perhaps another property of some kind, or there is a cache with all these icons that didn't update, or maybe someking of a log where I must add the names of the newest stickers, that I named them in the same fashion as the originals.
Any ideas?
Done it!
Easy peasy!
GreekSofos said:
Done it!
Easy peasy!
Click to expand...
Click to collapse
The owner doesn't respond to private message, perhaps others know how to make your own stikers for S-planner?
Maybe anyone has created and could share? :angel:
Evaldino said:
The owner doesn't respond to private message, perhaps others know how to make your own stikers for S-planner?
Maybe anyone has created and could share? :angel:
Click to expand...
Click to collapse
Anyone still interested?
I have a quick fix I could share if anyone's interested. I don't want to hijack anyone's thread, but if this is still something people wanna know about (and it's not already shared some where else here), I'd be glad to help.
h311sdr0id said:
Anyone still interested?
I have a quick fix I could share if anyone's interested. I don't want to hijack anyone's thread, but if this is still something people wanna know about (and it's not already shared some where else here), I'd be glad to help.
Click to expand...
Click to collapse
oh, please share!
and maybe you've already have some custom stickers created and could share those too?

Categories

Resources