CrackMe.apk

Download file
    package com.facebook.common.time;

public class SystemClock implements Clock {
    private static final SystemClock INSTANCE = new SystemClock();

    private SystemClock() {
    }

    public static SystemClock get() {
        return INSTANCE;
    }

    public long now() {
        return System.currentTimeMillis();
    }
}
    
Download file