Skip to content

Commit

Permalink
Update SamplePlugin to compile and target API 35 (#215)
Browse files Browse the repository at this point in the history
  • Loading branch information
calren authored Nov 18, 2024
1 parent 1e91431 commit 06d584d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,11 +64,11 @@ class SamplePlugin : Plugin<Project> {

pluginManager.withPlugin("com.android.library") {
configure<LibraryExtension> {
compileSdk = 34
compileSdk = 35
defaultConfig {
minSdk = 21
@Suppress("DEPRECATION")
targetSdk = 34
targetSdk = 35
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}

Expand Down

0 comments on commit 06d584d

Please sign in to comment.