1package com.cheogram.android;
2
3import android.content.Context;
4import android.util.Log;
5
6import eu.siacs.conversations.utils.BiConsumer;
7
8public class CheogramLicenseChecker {
9 private BiConsumer<String, String> mCallback;
10
11 public CheogramLicenseChecker(Context context, BiConsumer<String, String> callback) {
12 mCallback = callback;
13 }
14
15 public void checkLicense() {
16 Log.d("CheogramLicenseChecker", "skipping license checks in free build");
17 mCallback.accept(null, null);
18 }
19}