CrackMe.apk

Download file
    package com.google.common.collect;

import com.android.tools.r8.annotations.SynthesizedClass;
import java.util.Map;
import java.util.SortedMap;
import java.util.SortedSet;

@ElementTypesAreNonnullByDefault
public interface RowSortedTable<R, C, V> extends Table<R, C, V> {

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

    SortedSet<R> rowKeySet();

    SortedMap<R, Map<C, V>> rowMap();
}
    
Download file