Skip to content

Commit bae9601

Browse files
authored
Merge pull request #1214 from AzureAD/shahzaibj/fix-asm-conflict
Fix asm conflict
2 parents c5738d5 + e29b683 commit bae9601

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

msal/build.gradle

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,14 +122,16 @@ dependencies {
122122
implementation "androidx.appcompat:appcompat:$rootProject.ext.appCompatVersion"
123123
implementation "androidx.browser:browser:$rootProject.ext.browserVersion"
124124
implementation "com.google.code.gson:gson:$rootProject.ext.gsonVersion"
125-
implementation "com.nimbusds:nimbus-jose-jwt:$rootProject.ext.nimbusVersion"
125+
implementation ("com.nimbusds:nimbus-jose-jwt:$rootProject.ext.nimbusVersion") {
126+
exclude module: 'asm'
127+
}
126128
implementation "androidx.constraintlayout:constraintlayout:$rootProject.ext.constraintLayoutVersion"
127129

128130
// test dependencies
129131
testImplementation "junit:junit:$rootProject.ext.junitVersion"
130132
// TODO the below dependency should be mockito-core but the MockMaker isn't working...
131133
testImplementation "org.mockito:mockito-android:$rootProject.ext.mockitoAndroidVersion"
132-
testImplementation "org.robolectric:robolectric:$rootProject.ext.robolectricVersion"
134+
testImplementation ("org.robolectric:robolectric:$rootProject.ext.robolectricVersion")
133135
testImplementation "androidx.test:core:$rootProject.ext.androidxTestCoreVersion"
134136
testImplementation project(':testutils')
135137
// instrumentation test dependencies

0 commit comments

Comments
 (0)