File tree Expand file tree Collapse file tree 2 files changed +15
-6
lines changed
Expand file tree Collapse file tree 2 files changed +15
-6
lines changed Original file line number Diff line number Diff line change 1- # Mon Oct 04 12:58:48 PDT 2021
21distributionBase =GRADLE_USER_HOME
3- distributionUrl =https\://services.gradle.org/distributions/gradle-7.5.1-bin.zip
42distributionPath =wrapper/dists
5- zipStorePath =wrapper/dists
3+ distributionUrl =https\://services.gradle.org/distributions/gradle-8.0-all.zip
4+ networkTimeout =10000
65zipStoreBase =GRADLE_USER_HOME
6+ zipStorePath =wrapper/dists
Original file line number Diff line number Diff line change @@ -6,7 +6,16 @@ allprojects {
66 ext. " signing.secretKeyRingFile" = System . getenv(" mavenSigningKeyRingFile" )
77 ext. " signing.password" = System . getenv(" mavenSigningKeyPassword" )
88}
9-
9+ // For AGP 8.x compatibility, configure Android library projects
10+ if (project. plugins. findPlugin(" com.android.library" )) {
11+ android {
12+ publishing {
13+ // Configure publishing for both variants
14+ singleVariant(" release" )
15+ singleVariant(" debug" )
16+ }
17+ }
18+ }
1019afterEvaluate {
1120 publishing {
1221 publications {
@@ -115,5 +124,5 @@ afterEvaluate {
115124}
116125
117126// Publishing task aliases for simpler local development
118- task publishLocal { dependsOn " publishDebugPublicationToMavenLocal" }
119- task publishReleaseLocal { dependsOn " publishReleasePublicationToMavenLocal" }
127+ task publishLocal { dependsOn " publishDebugPublicationToMavenLocal" }
128+ task publishReleaseLocal { dependsOn " publishReleasePublicationToMavenLocal" }
You can’t perform that action at this time.
0 commit comments