CheogramLicenseChecker.java
1package com.cheogram.android;
2
3import android.content.Context;
4import android.util.Log;
5
6public class CheogramLicenseChecker {
7 public CheogramLicenseChecker(Context context) { }
8
9 public void checkLicense() {
10 Log.d("CheogramLicenseChecker", "skipping license checks in free build");
11 }
12}