File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -123,10 +123,12 @@ tasks.withType(KotlinCompile).configureEach {
123123dependencyAnalysis {
124124 issues {
125125 onUnusedDependencies {
126- // This dependency is actually needed otherwise the app will crash with a runtime exception.
126+ // This dependency is actually needed; otherwise, the app will crash with a runtime exception.
127127 exclude(libs. eventbus. android. get(). module. toString())
128- // This dependency is actually needed otherwise UI tests will crash with a runtime exception.
128+ // This dependency is actually needed; otherwise, UI tests will crash with a runtime exception.
129129 exclude(libs. apache. http. client. android. get(). module. toString())
130+ // This dependency is actually needed; otherwise, NoClassDefFoundError will be thrown during card reader connection flow.
131+ exclude(libs. squareup. okhttp3. tls. get(). module. toString())
130132 }
131133 }
132134}
You can’t perform that action at this time.
0 commit comments