-
Notifications
You must be signed in to change notification settings - Fork 4.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[core] Change class modifiers if used outside the package #729
Comments
@skylot This could be a part of |
@sergey-wowwow |
Thanks! But please check class @org.jetbrains.annotations.NotNull
public final okhttp3.CertificatePinner build() {
return new okhttp3.CertificatePinner(kotlin.collections.CollectionsKt___CollectionsKt.toSet(this.pins), null);
} In this case class And similar thing in class private final /* synthetic */ com.google.android.gms.common.api.internal.GoogleApiManager.zac zajg; in this case inner class private class zac implements com.google.android.gms.common.api.internal.zach, com.google.android.gms.common.internal.BaseGmsClient.ConnectionProgressReportCallbacks { APK: https://drive.google.com/file/d/1qC3tlWs9AtPBpyS6iU9kcSphLryfJOxi/view?usp=sharing |
@sergey-wowwow another fix, same branch. |
Thanks @skylot! public void onSuccess(com.stripe.android.model.Source source) {
if (source != null) {
com.stripe.android.model.StripeSourceTypeModel sourceTypeModel = source.getSourceTypeModel(); // <<< class and class u.displayName = builder.displayName();
u.extras.putAll(builder.extras());
return u; fields APK: https://drive.google.com/file/d/1Umqt8wXZTm4sBqsvzjEFq-97qC-i8l-b/view?usp=sharing |
@sergey-wowwow I made a fix for the first case. In the second case variable |
@sergey-wowwow commit a fix for second case. |
Checks before report
Describe error
Hi, I've noticed a lot of classes (which in their past life were lambdas/anonymous classes) placed to different package, but have package-private modifiers. Example is in file
com/paypal/android/sdk/contactless/reader/tlv/TLVTransformer.java
and
Can it be changed to
public
(as a part of--respect-bytecode-access-modifiers
argument)?APK: https://drive.google.com/file/d/1AH04tuU-rwCGpznW5IrjlunnxApQGnLo/view?usp=sharing
The text was updated successfully, but these errors were encountered: