Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,8 @@ enum API {
API_31("12", "7732740"),
API_32("12.1", "8229987"),
API_33("13", "9030017"),
API_34("14", "10818077");
API_34("14", "10818077"),
API_35("15", "12650502");

private final String androidVersion;
private final String frameworkSdkBuildVersion;
Expand Down Expand Up @@ -182,6 +183,8 @@ static API from(String apiLevel) {
return API_33;
case "34":
return API_34;
case "35":
return API_35;
default:
throw new IllegalStateException("Unknown Robolectric API Level: " + apiLevel);
}
Expand Down