bagipro
bagipro
https://github.com/bitrise-io/bitrise/blob/master/_docs/step-development-guideline.md#step-grouping-convention Add `security` to the list
Hey! I've noticed weird conditions when decompiled. Let's assume that we have the following code: ```java void test(String action) { if ("a".equals(action)) { do1(); } else if ("b".equals(action)) { do2();...
Hey! Please check the `kotlinx/android/extensions/CacheImplementation.java` file: ```java public final class CacheImplementation { SPARSE_ARRAY, HASH_MAP, NO_CACHE; ``` It's declared as `class`, but should be declared as `enum` APK: https://drive.google.com/file/d/1NEIPWFwukzv1BgJDHpaqKZAznMf25lqW/view?usp=sharing
Hey! APK: https://drive.google.com/file/d/1XBpFGkIORvQkPu8sYaWFpSZ1ZI87QpxR/view?usp=sharing File `com/samsung/android/knox/location/GeofenceFactory.java`: ```java public static Geofence createGeofence(int i, Parcel parcel) { if (i != 1) { if (i != 2) { if (i != 3) { return...
Hey, Please check the `com/ebay/db/notifications/FcmTokenEntity.java` file. It contains a few duplicated methods: ```java @org.jetbrains.annotations.NotNull /* renamed from: component1 reason: from getter */ public final java.lang.String getHashedUserId() { return this.hashedUserId; }...
Hey! Please check the `com/ebay/db/annotation/processor/EbayDatabaseAutomaticMigrations.java`: ```java public final java.util.List getVersionMigrations() { com.ebay.db.annotation.api.EntityMigration entityMigration = new com.ebay.db.annotation.api.EntityMigration(kotlin.collections.CollectionsKt.listOf((java.lang.Object[]) new java.lang.String[]{"DROP TABLE IF EXISTS `apls_beacon`", "CREATE TABLE IF NOT EXISTS `apls_beacon` (`beaconId` INTEGER...
Hey! Please check the `com/ebay/db/annotation/api/VersionMigration.java` with the easiest example I found: ```java private final java.util.List entityMigrations; ``` ```java public final java.util.List drainSql() { java.util.ArrayList arrayList = new java.util.ArrayList(); java.util.Iterator it...