Skip to content

Commit

Permalink
Add support for Android SDK 32, 33, 34 (#983)
Browse files Browse the repository at this point in the history
* add sdks

* readmes

* test extension

* bumping version

* Update signing certificate for Sonatype (#982)

* Prepare for release 0.54.2

* Prepare next development version.

* Revert gradle.properties

* add sdks

* readmes

* test extension

* bumping version

* readme

* back to i3 for tests

* Create secring.gpg

* readme

* test extension back to i3

* cleanup gitignore

* too early to bump

---------

Co-authored-by: Jonathan Baker <[email protected]>
  • Loading branch information
gpolak and jonathanbaker7 authored Dec 18, 2023
1 parent 63c1a2d commit 4863835
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 7 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
.gradle
local.properties
.DS_Store

**build
captures

Expand All @@ -16,6 +17,7 @@ buck-out
**/BUCK

buildSrc/bintray.properties
buildSrc/secring.gpg

# Bazel
bazel-*
Expand Down
9 changes: 6 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,15 @@
* Add configuration cleanCacheDir to conditionally delete the cache directory or
just the existing dependency rules files

### Version 0.54.0
### Version 0.54.0
* Stop using /tmp for Android Lint gen-rule and use buck-out tmp instead

### Version 0.54.1
### Version 0.54.1
* Clean up leftover tmp file for Android Lint genrule

### Version 0.54.2
### Version 0.54.2
* Signing certificate is invalid, replacement release with new signature.
* No other code changes

### Version 0.54.3
* Added support for Android API 32, 33, and 34
2 changes: 1 addition & 1 deletion README-zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ buildscript {
jcenter()
}
dependencies {
classpath 'com.uber:okbuck:0.54.2'
classpath 'com.uber:okbuck:0.54.1'
}
}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ buildscript {
jcenter()
}
dependencies {
classpath 'com.uber:okbuck:0.54.2'
classpath 'com.uber:okbuck:0.54.1'
}
}
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
GROUP=com.uber
VERSION_NAME=0.54.3-SNAPSHOT
VERSION_NAME=0.54.2-SNAPSHOT
POM_DESCRIPTION=A Gradle plugin that lets developers utilize the Buck build system on a Gradle project
POM_URL=https://github.com/uber/okbuck/
POM_SCM_URL=https://github.com/uber/okbuck/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,10 @@ enum API {
API_28("9", "4913185-2"),
API_29("10", "5803371"),
API_30("11", "6757853"),
API_31("12", "7732740");
API_31("12", "7732740"),
API_32("12.1", "8229987"),
API_33("13", "9030017"),
API_34("14", "10818077");

private final String androidVersion;
private final String frameworkSdkBuildVersion;
Expand Down Expand Up @@ -173,6 +176,12 @@ static API from(String apiLevel) {
return API_30;
case "31":
return API_31;
case "32":
return API_32;
case "33":
return API_33;
case "34":
return API_34;
default:
throw new IllegalStateException("Unknown Robolectric API Level: " + apiLevel);
}
Expand Down

0 comments on commit 4863835

Please sign in to comment.