forked from mit-cml/appinventor-sources
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adjusted notifier font size for pre-Gingerbread systems. Font was too
large. Added new SDK levels through 17 Change-Id: I151d2b2397e865878e44b8399efef31e9ab084c3
- Loading branch information
Showing
2 changed files
with
22 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,15 +16,18 @@ | |
* @author [email protected] (Sharon Perl) | ||
*/ | ||
public class SdkLevel { | ||
public static final int LEVEL_CUPCAKE = 3; // a.k.a. 1.5 | ||
public static final int LEVEL_DONUT = 4; // a.k.a. 1.6 | ||
public static final int LEVEL_ECLAIR = 5; // a.k.a. 2.0 | ||
public static final int LEVEL_ECLAIR_0_1 = 6; // a.k.a. 2.0.1 | ||
public static final int LEVEL_ECLAIR_MR1 = 7; // a.k.a. 2.1 | ||
public static final int LEVEL_FROYO = 8; // a.k.a. 2.2 | ||
public static final int LEVEL_GINGERBREAD = 9; // a.k.a. 2.3 | ||
public static final int LEVEL_GINGERBREAD_MR1 = 10; // a.k.a. 2.3.3 | ||
public static final int LEVEL_HONEYCOMB = 11; // a.k.a. 3.0 | ||
public static final int LEVEL_CUPCAKE = 3; // a.k.a. 1.5 | ||
public static final int LEVEL_DONUT = 4; // a.k.a. 1.6 | ||
public static final int LEVEL_ECLAIR = 5; // a.k.a. 2.0 | ||
public static final int LEVEL_ECLAIR_0_1 = 6; // a.k.a. 2.0.1 | ||
public static final int LEVEL_ECLAIR_MR1 = 7; // a.k.a. 2.1 | ||
public static final int LEVEL_FROYO = 8; // a.k.a. 2.2 | ||
public static final int LEVEL_GINGERBREAD = 9; // a.k.a. 2.3 | ||
public static final int LEVEL_GINGERBREAD_MR1 = 10; // a.k.a. 2.3.3 | ||
public static final int LEVEL_HONEYCOMB = 12; // a.k.a. 3.0 | ||
public static final int LEVEL_ICE_CREAM_SANDWICH = 14; // a.k.a. 4.0 | ||
public static final int LEVEL_JELLYBEAN = 16; // a.k.a. 4.1 | ||
public static final int LEVEL_JELLYBEAN_MR1 = 17; // a.k.a. 4.2 | ||
|
||
private SdkLevel() { | ||
} | ||
|