File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
source/AndroidResolver/src Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 1+ # Upcoming
2+ * Android Resolver - Reverse conditional checker for ` packaging ` keyword in maintemplate based on android gradle plugin version. Fixes #715
3+
14# Version 1.2.184 - Jan 28, 2025
25* Android Resolver - Update and resolve ` packaging ` keyword in maintemplate
36 based on android gradle plugin version.
Original file line number Diff line number Diff line change @@ -2354,7 +2354,7 @@ internal static IList<string> PackagingOptionsLines(ICollection<Dependency> depe
23542354 lines . Add ( "android {" ) ;
23552355
23562356 // `packagingOptions` is replaced by `packaging` keyword in Android Gradle plugin 8.0+
2357- if ( ( new Dependency . VersionComparer ( ) ) . Compare ( "8.0" , AndroidGradlePluginVersion ) < = 0 ) {
2357+ if ( ( new Dependency . VersionComparer ( ) ) . Compare ( "8.0" , AndroidGradlePluginVersion ) > = 0 ) {
23582358 lines . Add ( " packaging {" ) ;
23592359 } else {
23602360 lines . Add ( " packagingOptions {" ) ;
You can’t perform that action at this time.
0 commit comments