| Summary: | Changeset 6555 raises minimum Android SDK version to 11 | ||
|---|---|---|---|
| Product: | SDL | Reporter: | Joseba García Echebarria <joseba.gar> |
| Component: | main | Assignee: | Sam Lantinga <slouken> |
| Status: | RESOLVED FIXED | QA Contact: | Sam Lantinga <slouken> |
| Severity: | normal | ||
| Priority: | P2 | CC: | philipp.wiesemann |
| Version: | HG 2.0 | ||
| Hardware: | ARM | ||
| OS: | Android (All) | ||
|
Description
Joseba García Echebarria
2012-10-09 07:38:10 UTC
This could be fixed by replacing the line
| EditorInfo.IME_FLAG_NO_FULLSCREEN;
with
| 33554432 /* API 11: EditorInfo.IME_FLAG_NO_FULLSCREEN */;
which should work for API level 5 and higher because the Java compiler would inline static final ints anyway.
The file README.Platforms lists Android 1.6. This may be changed to 2.0 which is API level 5. And it lists Windows CE.
Fixed, thanks! http://hg.libsdl.org/SDL/rev/47ab7ba21530 |