This thing baffle me...

I was checking my code, and decided to change the build target from 2.3 to 2.2 to make sure every 2.3 API that I use is wrapped in a nice android.os.Build.VERSION.SDK_INT check.

But somewhere I make a call to java.text.Normalizer.normalize() that does not check for the SDK version. Curious as why this wasn't found by QA, I started the app on a 2.2 phone in debug mode and it works fine!

The phone is a LG-P505R version 2.2.2.

So, why does this 2.2 phone can call some API that were added in 2.3?

The only logical explanation that I could think of is that the manufacturer has added this API to the Android stack.


[Update] More madness...

I tested this code on a 2.2. emulator and it works fine:

public class NormalizerTestActivity extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(final Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        final String s = "This \"é\" will become an \"e\"";

        final TextView tv = (TextView) findViewById(R.id.tv);

        final String temp = Normalizer.normalize(s, Normalizer.Form.NFD);
        final Pattern pattern = Pattern.compile("\\p{InCombiningDiacriticalMarks}+");
        final String strNormalized = pattern.matcher(temp).replaceAll("");

        tv.setText(strNormalized);
    }
}

Emulator settings

Results

link|improve this question

Are you using any of the compatibility jars? Any additional jars that might provide those APIs? – chubbard Nov 18 '11 at 16:08
@chubbard good question. Yes, I do use some libs. So I created a simple project without any jar and ran the code. It worked fine. So I'm not using any Normalizer from a jar. – Thierry-Dimitri Roy Nov 18 '11 at 16:19
feedback

1 Answer

up vote 0 down vote accepted

So for now my only guess is that it was made public in 2.3, but it was there all along...

link|improve this answer
It's probably like that it was there all along but no one noticed it or cared until you do :) – Serdar Dogruyol Nov 18 '11 at 16:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.