Skip to content

Commit

Permalink
keep agp up to date
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredsburrows committed Jan 29, 2024
1 parent 7065966 commit ab6e3d9
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,14 +51,14 @@ internal fun Project.configureAndroidProject() {
}
}

is FeaturePlugin -> {
extensions.getByType(FeatureExtension::class.java).run {
configureVariant(this, featureVariants)
configureVariant(this, libraryVariants)
configureVariant(this, testVariants)
configureVariant(this, unitTestVariants)
}
}
// is FeaturePlugin -> {
// extensions.getByType(FeatureExtension::class.java).run {
// configureVariant(this, featureVariants)
// configureVariant(this, libraryVariants)
// configureVariant(this, testVariants)
// configureVariant(this, unitTestVariants)
// }
// }

is LibraryPlugin -> {
extensions.getByType(LibraryExtension::class.java).run {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ final class LicensePluginSpec extends Specification {
}
dependencies {
classpath "com.android.tools.build:gradle:$agpVersion"
// classpath "com.android.tools.build:gradle:$agpVersion"
classpath files($classpathString)
}
}
Expand Down Expand Up @@ -263,7 +263,7 @@ final class LicensePluginSpec extends Specification {
'android',
'com.android.application',
// FeaturePlugin
'com.android.feature',
// 'com.android.feature',
// LibraryPlugin
'android-library',
'com.android.library',
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ versions = { id = "com.github.ben-manes.versions", version = "0.51.0" }
license = { id = "com.jaredsburrows.license", version = "0.9.4" }

[libraries]
android-plugin = { module = "com.android.tools.build:gradle", version = "3.6.4" }
android-plugin = { module = "com.android.tools.build:gradle", version = "8.2.2" }
commons = { module = "org.apache.commons:commons-csv", version = "1.10.0" }
moshi = { module = "com.squareup.moshi:moshi", version = "1.15.0" }
kotlin-bom = { module = "org.jetbrains.kotlin:kotlin-bom", version.ref = "kotlin" }
Expand Down

0 comments on commit ab6e3d9

Please sign in to comment.