blob: b71f56c2a9de45bbc3c46c6840e042493305b9f4 [file] [log] [blame]
package com.android.wallpaperpicker.common;
import android.app.WallpaperManager;
public class Utilities {
public static boolean isAtLeastN() {
// TODO: replace this with a more final implementation.
try {
WallpaperManager.class.getMethod("getWallpaperFile", int.class);
return true;
} catch (NoSuchMethodException e) {
return false;
}
}
}