CrackMe.apk

Download file
    package com.google.android.exoplayer2.util;

public interface Consumer<T> {
    void accept(T t);
}
    
Download file