CrackMe.apk

Download file
    package com.google.common.collect;

import com.android.tools.r8.annotations.SynthesizedClass;
import com.google.common.collect.MapDifference;
import java.util.SortedMap;

@ElementTypesAreNonnullByDefault
public interface SortedMapDifference<K, V> extends MapDifference<K, V> {

    @SynthesizedClass(kind = "$-CC")
    /* renamed from: com.google.common.collect.SortedMapDifference$-CC  reason: invalid class name */
    public final /* synthetic */ class CC<K, V> {
    }

    SortedMap<K, MapDifference.ValueDifference<V>> entriesDiffering();

    SortedMap<K, V> entriesInCommon();

    SortedMap<K, V> entriesOnlyOnLeft();

    SortedMap<K, V> entriesOnlyOnRight();
}
    
Download file