[NEW!] SGS Forum Etiquette [i9000] [i9003] [i9000B] [i9000T] [i9000M] [M240S] [02B] + - Galaxy S I9000 General

As many of you know the Samsung Galaxy S (Generation 1) family is growing larger and larger with new sub models variations with minor changes in either the screen from SAMOLED to SLCD or the way they are rooted, and or radio for different regions.
It will be in the best interest of everybody here in the forum to please TAG your messages Subject line with the model of your phone when you are posting a new message, in return that will get you quicker responses from other members that have the same phone model as you do.
Here's a list of the most popular models that are seen the most in this section of the forum:
[02B] = [SC-02B]
[i9000] = [GT-i9000]
[i9000b] = [GT-i9000B]
[i9000m] = [GT-i9000M]
[i9000t] = [GT-i9000T]
[i9003] = [GT-i9003SL]
[m240s] = [SHW-M240S]
other less common models in this section of the forum
[i9008] = [GT-i9008]
[i9088] = [GT-I9088]
[d700] = [SPH-D700]
[i897] = [SGH-I897]
[i500] = [SCH-i500]
[i896] = [SGH-I896]
[i909] = [SCH-I909]
[t959] = [SGH-T959]
[t959d] = [SGH-T959D]
[t959v] = [SGH-T959V]

Related

Subject date standardization request

Is there any way we can get everyone to begin formatting their update dates the same way?
1/10/2008 could either mean January 10th, or October 1st depending on the culture.
So if everyone would start spelling the month it would be much less confusing. For example, instead of "11/09/08 - Super Cool update 20!" please use, "11th September, 2008 - Super Cool update 20!" or "November 9th, 08", etc. As long as the month is spelled out there is no confusion as to whether we're looking at an old update or a new update.
Very, very very good idea, I have the same trouble reading the post title...
problems with this are usually that the title gets really long........ once inside the post you should be able to tell because of the time stamp on the developers post
[01/10/2008] = 10 letters
[JAN 10, 08] = 9 letters (including spaces)
Which one is better?
torquefever said:
[01/10/2008] = 10 letters
[JAN 10, 08] = 9 letters (including spaces)
Which one is better?
Click to expand...
Click to collapse
Yeah, even better. Abbreviated month works too!
As far as long subjects go, some people go overboard with their subjects I think. I'd think that the date alone tells us if there's an update or not. We don't need to see what that update is in the subject. Subject should be something like "Jan 10, 08 - ProjectName - v1.03".
A perfect post, in my opinion anyhow, would be like:
Subject:
Jan 10, 08 - ProjectName - v1.03
Message text:
-ProjectName
-Author
-Current version number/date
-Project description
-Installation instructions
-Current version number/date
-Important notes
-changes
-links to download if needed
-Previous version number/date
-Important notes
-changes
-links to download if needed
-Previous... etc.
Many of the developers follow a procedure similar to this, but sometimes I come across a post that is just all muddled up and it's hard to tell where new info is, how to install, or sometimes even what the darn project is about!

[TIP] AdChecker snippet

Since one on my last Android app caused lots of discussion regarding the "ad-checker" tool, today I'd like to share with all the Android developers the simple peace of code that I'm using there, with the hope that other developers could start using and improving it.
Here it is:
Code:
public class AdChecker
{
private static Boolean m_adsValue = null;
private static final String m_adsChecker = "your_ad_provider"; // example: "admob"
private static final String m_adsHostFilename = "/etc/hosts";
public static boolean isAdsDisabled()
{
synchronized(AdChecker.class)
{
if(m_adsValue == null)
{
m_adsValue = Boolean.FALSE;
BufferedReader reader = null;
try
{
reader = new BufferedReader(new FileReader(m_adsHostFilename));
String line;
while((line = reader.readLine()) != null)
{
if(line.toLowerCase().contains(m_adsChecker))
{
m_adsValue = Boolean.TRUE;
break;
}
}
}
catch(Exception e)
{
}
finally
{
if(reader != null)
{
try
{
reader.close();
}
catch(Exception e)
{
}
}
}
}
return m_adsValue.booleanValue();
}
}
}
A simple usage of this class could be:
Code:
public class YourActivity extends Activity
{
@Override
public void onStart()
{
super.onStart();
if(AdChecker.isAdsDisabled())
{
// alert the user here
finish();
}
}
}
Please lets stop the "adblock" shame...
Brilliant.
I hate adblockers. I don't understand why people complain about an app having ads, if the ads are badly placed or obtrusive then simply don't use the app (or put that in the comments so the developer might change it).
Thanks for the code. I'll definitely be using it in the future
wont this block users who aren't currently connected to the internet though?
hyperbyteX said:
wont this block users who aren't currently connected to the internet though?
Click to expand...
Click to collapse
Short answer: no.
Slightly longer answer: You obviously don't know what you're talking about.
I don't like the ad blockers neither, If developers doesn't monetize their work they'll walk away to other platform if they have life with this.
I'm adding advertisement to my app too, this code is very useful to me. I'm gonna use it for sure, but instead of close the app I will place a custom advertisement of the paid version of my app. Thanks for this great snippet!
Hi,
i will not be forced to see advertising!
Adfree or others is a must have on my device.
with friendly greet
starbase64
starbase64 said:
Hi,
i will not be forced to see advertising!
Adfree or others is a must have on my device.
with friendly greet
starbase64
Click to expand...
Click to collapse
Just as u have the right to block ads we have right to refuse service. Just remember nothing is free, if u believe otherwise you are sadly mistaken.
Sent from my MB860 using Tapatalk
Id rather pay to remove ads but many apps don't have an ad-free version, hence i use adblocker.
Hi,
i buy good apps, but I hate this forced.
with friendly greet
starbase64
This is so nice, also you can add something like this
Code:
if(AdChecker.isAdsDisabled()){
AlertDialog.Builder builder = new AlertDialog.Builder(MainActivity.this);
builder.setTitle("Dont be a bad guy!")
.setMessage("You have patched Hosts files. This softwares don't tolerate piracy!")
.setCancelable(false)
.setPositiveButton("Exit", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
System.exit(0);
}
});
AlertDialog alert = builder.create();
alert.show();
}
D4rKn3sSyS said:
This is so nice, also you can add something like this
Code:
if(AdChecker.isAdsDisabled()){
AlertDialog.Builder builder = new AlertDialog.Builder(MainActivity.this);
builder.setTitle("Dont be a bad guy!")
.setMessage("You have patched Hosts files. This softwares don't tolerate priracy!")
.setCancelable(false)
.setPositiveButton("Exit", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
dialog.dismiss();
}
});
AlertDialog alert = builder.create();
alert.show();
System.exit(0);
}
Click to expand...
Click to collapse
very nice!
typo-> priracy
(deleted because of browser spazzing)
D4rKn3sSyS said:
This is so nice, also you can add something like this
Code:
if(AdChecker.isAdsDisabled()){
AlertDialog.Builder builder = new AlertDialog.Builder(MainActivity.this);
builder.setTitle("Dont be a bad guy!")
.setMessage("You have patched Hosts files. This softwares don't tolerate piracy!")
.setCancelable(false)
.setPositiveButton("Exit", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
System.exit(0);
}
});
AlertDialog alert = builder.create();
alert.show();
}
Click to expand...
Click to collapse
Fail.
1: Adblocking is not piracy.
2: Don't insult users by calling them bad guys.
3: Your message implies a demand for a system-wide removal of adblocking (your_ad_provider is probably admob). For most, the benefits of this outweigh your app.
4: IP address > obnoxious message.
5: I've bought apps with (blocked) ads before, simply to support the dev, or remove the still wasted screen space. Good luck seeing a cent if your app sticks it's nose where it doesn't belong, and pops up an insulting demand.
6: There are multiple ways around this.
Lol, any ****ty app that uses this to force feed ads will be deleted off my phone immediately. Want money? Make a paid version with no goddamn ads.
But this is also a catch 22, if your app is ad supported only with no paid version, its *probably* not worth installing anyways.
Sent from my *****'n Nexus S.
Thanks for this snippet of code! I'll be using this here in the next few days as I'm currently making the Ad-Supported free version of my app.
I'll probably go the route that another poster has mentioned and if they have ads blocked, put ad add/link to the pay version of the app.
Mucho gracias
Fnorder said:
Fail.
1: Adblocking is not piracy.
2: Don't insult users by calling them bad guys.
3: Your message implies a demand for a system-wide removal of adblocking (your_ad_provider is probably admob). For most, the benefits of this outweigh your app.
4: IP address > obnoxious message.
5: I've bought apps with (blocked) ads before, simply to support the dev, or remove the still wasted screen space. Good luck seeing a cent if your app sticks it's nose where it doesn't belong, and pops up an insulting demand.
6: There are multiple ways around this.
Click to expand...
Click to collapse
Fail.
1: It's not an insult
2: You have no life
3: People has bought my apps
4: People has donated to me
5: Want some more?
6: uMad?
7: Don't push yourself to answer to this, this thread it's dead for me, because i see some trolls here
@OP Keep it up, it's great, don't feed the trolls, for people who knows what developing means, and how much work you put on it, it's very useful.
Good bye
Cheers,
D4.
What apps did you develop?
Sent from my *****'n Nexus S.
what will come next? check to see if i have a firewall and a virus scan installed?
i understand the decision the dev makes here
but since adfree blocks adds in a browser too its ridiculous in my opinion
especially since a 5min google search will give you 95% of the paid market apps for free
@D4rKn3sSyS
LOL of the day: add blocking = piracy awesome logic there
D4rKn3sSyS said:
Fail.
1: It's not an insult
2: You have no life
3: People has bought my apps
4: People has donated to me
5: Want some more?
6: uMad?
7: Don't push yourself to answer to this, this thread it's dead for me, because i see some trolls here
@OP Keep it up, it's great, don't feed the trolls, for people who knows what developing means, and how much work you put on it, it's very useful.
Good bye
Cheers,
D4.
Click to expand...
Click to collapse
Work is fine, get paid by selling your app, not force feeding ads and using fag code like this. Dipshits like you will never have a really popular app.
Be like a real dev and cripple the demo, make all the sweet features paid for. But then again, your one feature wannabee apps wouldn't work then eh?
And since I'm a pirate for ad blocking what does it make me when I download all your .apks from google and not give you a dime.
P.s before you get all seriously worried, I have over 100 dollars worth of paid apps, all paid for.
Sent from my *****'n Nexus S.
I'm planning to let rooted users to revert their hosts file.
If anyone is interested, I will share that snippet too.

[BOUNTY - Metropcs Samsung Galaxy Indulge 4g SCH-R910]

[BOUNTY - Metropcs Samsung Galaxy Indulge 4g SCH- R910]
Conditions:
1. Full Root(New Superuser.apk)
2. Clockwork Recovery
3. Custom Rom(Talk and surf, Better Battery Life, Native Hotspot Support, Removal of Samsung Block)
4. Nand Lock
Total = $580
NOTE:
If you are interested in donating just pledge how much u want to donate in a post and it will be added to the total amount. No transactions should be made until job is finished and developer has made a link for u to donate, anything outside of this is fraudulent. Any users who are interested in donating please send money to whom ever complete these tasks. However this is not mandatory and is based off the " Honor System", this is still open source.
Donation Pledges
coreyharris101 = $50
ickster = $60
rjsweesy = $20 plus extra phone for testing and creating rom
Silvist = 25
mikestoolz = $15
moonlitwolf20 = $25
chulow = $25
Nickrussel = $25
pistapete = $20
TRS-80 = $50
isujoy = $20
tiede = $20
isujoy = $20
tiede = $20
BIGSHIRLY = $30
gus4269 = $25
miariver = $60
sookieball = $20
dongemus = $30 if wifi thether works otherwise $20
ive got another 20 on it and the phone to work with
I pledge $20.
I'm assuming "Custom ROM" by definition is going to have full unrestricted 4G tethering - both wifi and USB - with Android native hotspot app?
Also, why m860 in the thread title? Isn't Indulge SCH-R910 ?
nickrussel said:
I pledge $20.
I'm assuming "Custom ROM" by definition is going to have full unrestricted 4G tethering - both wifi and USB - with Android native hotspot app?
Also, why m860 in the thread title? Isn't Indulge SCH-R910 ?
Click to expand...
Click to collapse
typo, i had someone start this for me while i was at work
i have an extra phone to work with, i can send someone who is willing to build the rom for us
And how could I forget... I'll throw in another $5 on top of my previous pledged, if we have the ability to "talk and surf". We all know it can be done and we all want it!
It's really too bad this is not bring picked up. I've been kicking around getting this phone but without any dev support there is no way in hell! It looks like a good phone, especially for pcs users!
Sent from my HERO200 using XDA App
If someone is able to achieve the first two tasks -
1. Full Root(New Superuser.apk)
2. Clockwork Recovery
I will donate to them through paypal. Custom roms will come with time, only the full root and clockwork are required for the rest of us to start playing
From http://androidforums.com/samsung-ga...galaxy-indulge-4g-sch-r910-3.html#post2541396
rjmjr69 -
Thanks for the recovery and Download Mode info. I have 3 versions of Odin and non pull the dump but all see the phone but assign 0 as an id which is odd as the epic gets anywhere usually from a 7 to 14 then the port number. Anyhow. version 1.67 doesnt open the dump id option nor does it offer the nand dump option as does the 1.3 versions. But those are all tested on the epic not sure if they apply here. I have not had the time to read thru all these threads so a cheat sheet would be greatly appreciated here.
Any more information is very much appreciated. Remember this is to BENEFIT you all.
I do not own one of these phone never plan on it and am here to merely help. Shabby "an ACSyndicate top dev" will be the one collecting the bounty and anyone he decides to bring in on it. I have the actual phone in my possession. and will be coordinating as much of this project as possible. AS to the member who sent me the phone. Thank you for taking that risk The rest of you should consider a huge thank you for him taking the risk for the sake of the rest of you all.
I am the team founder and leader of ACSyndicate.net
Have this same username on all forums and irc channels.
You can keep track of the project as well as many of the other projects roms kernels themes apk modifications root kits etc that ACSyndicate.net are working on please all feel free to join us at
ACSyndicate forum link at the top register if you so choose. IDK if this is against forum rules here but if it is please mods take delete this portion of my post.
Also you can join us on IRC channels
Fossnet #acs-users #epic and freenode #samsung-epic
Look forward to having a good time working with you all on this. Please do keep on subject. No question is a dumb question no suggestion is a stupid suggestion. All links and any information you think pertinant please do not hesitate to post or if you feel like so PM me or Shabby.
Click to expand...
Click to collapse
better start getting that bounty together, root has been done
The details of the root and the required files can be found here - http://androidforums.com/indulge-al...g-galaxy-indulge-fully-working-4-10-11-a.html
So long and thanks for all the fish
Hey I just ported clockworkmod for ya guys.... what do I get
I just thought it was funny that I spent a month on cwm for indulge, not knowing of any "bounty"
Many thanks to Drockstar for his CWM port. K0nane also has released his CWM friendly ROM Basix for RCH-910 Indulge. For those who pledged for Clockwork Mod then donate to Drockstar for those who wanted custom rom donate to K0nane. Or please spread the love around to the major contributors.
hi every body i have metro pcs samsung SCH-r 910
can i install cooked rom on it ???
and how to install recovery ???
I have a problem, do a backup, and install a custom rom and not connected to the network restore the backup, now does not start and not let me get into Recovery, only stays on the screen for samsung mobile, anyone knows how I can fix this please help.

Welcome Back DX :)

[Notice
Due to some objective circumstances, I have to give my X8 to one of my cousins by the end of this month. That means I will not be able to support all of my X8 works (GDX, FB, OC, UV, etc.). I will not be able to stay in our X8 scene, or to support our friends in X10M/X10MP section. v009 is the last version of my GDX series.
It's a bit pity that I cannot continue my "Sensify" progress.
I will miss you all
Click to expand...
Click to collapse
This is the shocking statement of DX just earlier.
Most of us will be probably sad for this, so I guess we take action and we help DX to get a new x8, coz development never stop. Its payback time for us to help the person who makes x8 worth using for.
doixanh said:
Oh well, thanks for the idea. Actually I'm in a progress of looking for another X8. Currently I'm living in France, and it is not too hard to find. I think you guys can help me to raise my fund to get another one.
Click to expand...
Click to collapse
This thread is intended for all those who want to contribute in any amount that is warm in our heart.
If you will post something that against this, maybe you better shut up!
I guess we have to raise 200 (might change) dollars.
I dont know what is the exact price of x8 in france.
To start with i will give 1dollar (might raise).
GUYS THIS IS SERIOUS IF YOU SAY YOU WILL DONATE PLEASE DO.
Please Share this to Other​
Donate Link
Paypal Donation
Email Account:
{
"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"
}
DX please monitor your account.
Donators:
1. deedii = 1 dollar
2. yenoh = 5 euros
3. eagleeyetom = 7 dollars
4. alfsamsung = 15 dollars
5. Denoo = 3 dollars
6. tibob77 = 1 dollar
7. FireMax_ = 15 dollars
8. lollpaff = 3 dollars
9. trainiart = 5 dollars
10. Chefkoch_81 = 15 euros
11. Jezzzy = 20 dollars
12. Superuser.Angga = 16 dollars
13. tek640 = 5 euros
14 MASVA = 5 dollars
15. timara = 5 dollars
16. URINUDNK = 5 dollars
17. Chucky-PT = 1 dollar
18. bryke = 5 dollars
19. arox5 = 7 dollars
20. Fetz Braun = 7 dollars
21. biscoitu = 10 dollars
22. DeanBoro = £10
23. st3ch = 3 + 7 dollars
24. vigo00 = 5 dollars
25. panchop = 5 dollars
26. swechrill = 5 dollars
27. pavlodar = 5 dollars
28. darth666 = 5 euros
29. pluto21 = 3 euros
30. LiboraA. = 5 euros
31. oferas = 10 dollars
32. Minioglowy = 5 dollars
33. 2273 = 10 euros
34. marmolu = 3 euros
35. navidpaya = 3 dollars
36. Rockey_ssr = 2 dollars
37. Hontch = 7.92 dollars
38. sew00 = 5 dollars
39. GreatApo = 3 euros
PS: If you donated and your name was not on the list please PM me.
Sorry if i overlook some of you, but you can PM me and ill include you in the list.
RESULT
doixanh said:
Notice
Thanks for the community support, I will get another X8 and still be a part of this community
Click to expand...
Click to collapse
Note:
I would like to personally thank's all the people behind this success of helping hands, you may not be included in the list of Donators but Im sure you know to yourself that you contributed and dedicate your time to bring DX back, and with the positive result we made it. DX is staying and continue developing a great work for us. This doesn't mean that we should stop giving him a love gift, we can always donate to him coz i know this little amount of money is nothing compare to the hapiness we felt each time DX realease a module a rom and etc. Please also be aware that DX is not the only developer we have here, we have a lot of developer here also that needs our support, so I'm encouraging everyone to help other developer as well. Again Im so happy and Thank you so much for all of us. Pros and Cons I thank you all. I love this community so much
I suggest that the one who will contribute donating some money should thank the first post here, then it would be easy to count how many people are gonna do it !
I've just come to XDA and now he said he's going to leave
I will contribute 5 euros.
7$ straight from Poland (I can't afford more). Good luck, DX.
May one of the Moderators make this thread an official one. Please
I can not help with money, but I will offer to buy X8 on this site - http://www.handtec.co.uk/product.ph...xperia-x8--android--sim-free-unlocked--white-
150$
PS: I created page on popular russian SE forum.
http://topse.ru/forum/showthread.php?p=557921
omg...i cant believe this...i would help if i could...too bad i dont have money...im soo sad now
I cant pay via the paypal link, can you add to your thread paypal email adress?
Ok i will ask dx about his paypal info, i guess it [email protected]
i am sorry
i am in remote area.....
their is no any way to send balance and i dont have any m,card and any paypal way
if i got any friend ar respective people who have m.card or paypal acc i will donate eu my dear diox...
lope u man... ur great
i always wanted to donate him but i dont have any international account
PLEASE someone help me HOW CAN I COMMON
i'm waiting for you replies now...
15$ sendt now.
I don't know if there's any western union or any money transfer in France so that people dont have International Accounts eg. master card can also donate.
DX I think we need your help here or someone also lives in france.
133€ (190$) on this french site :
http://www.cdiscount.com/telephonie...-xperia-x8-noir/f-144040203-ericssonx8no.html
Donated , but only 3$ since school starting and i need moneys.
some money is the least way to thank him , not only for maintenance him here
i have no international accounts like visa or masteCard or etc
i'm from a country that is banned from these accounts , so how can share in this movement ?
$1 sent (I'm still on FB^^)
15$, keep working DX!
maybe it's better to somebody make a link in x10mini/pro
also send PM to other developers like nobodtAtall & D4 to enclose this issue to their users
Yes indeed maybe they can do the same. Go guys thanks much within this week we can buy dx a new x8. Im happy with the positive response.
Thanks so much guys
5 euros sended (like i say). Thanks doixanh!

Getting Project Treble dev (@phhusson) a OnePlus 6T

Hello everyone,
@phhusson is a Recognized Developer who also has a has played a major role in creating GSIs for Project Treble Devices and supporting them (Android 9.0) and fixing allot of software bugs. We can help him continue this project by getting this OnePlus 6T in the hands of the developer.
See: https://forum.xda-developers.com/pro...reble-t3831915
https://forum.xda-developers.com/pro...reble-t3831915
I created a PayPal money pool to collect the needed money: MOD EDIT: LINK REMOVED
We aiming for about €559,00 Euro (Price OnePlus Store)
Donations List:
I am matching Euro to Euro
Target = €559,00 Euro
Received =
Total Received =
Lol
EugenStanis said:
Lol
Click to expand...
Click to collapse
This is no laughing matter. Per the forum rules, you may not use XDA to make money in any way, even if you claim to be giving it to someone else.
Do not use XDA-Developers as a means to make money.
Click to expand...
Click to collapse
THREAD CLOSED
tabletmen said:
Hello everyone,
@phhusson is a Recognized Developer who also has a has played a major role in creating GSIs for Project Treble Devices and supporting them (Android 9.0) and fixing allot of software bugs. We can help him continue this project by getting this OnePlus 6T in the hands of the developer.
See: https://forum.xda-developers.com/pro...reble-t3831915
https://forum.xda-developers.com/pro...reble-t3831915
I created a PayPal money pool to collect the needed money: MOD EDIT: LINK REMOVED
We aiming for about €559,00 Euro (Price OnePlus Store)
Donations List:
I am matching Euro to Euro
Target = €559,00 Euro
Received =
Total Received =
Click to expand...
Click to collapse

Categories

Resources