Remove unneeded use of support library in WallpaperCropper.

Test: make -j WallpaperCropper
Change-Id: I46b0d173aeb52e8d638493bbecea8fa6b6ba00a9
This commit is contained in:
Aurimas Liutikas
2017-07-10 17:11:00 -07:00
parent 34149bad4e
commit ca34386397
2 changed files with 1 additions and 2 deletions

View File

@@ -6,7 +6,6 @@ LOCAL_MODULE_TAGS := optional
LOCAL_SRC_FILES := $(call all-java-files-under, src)
LOCAL_JAVA_LIBRARIES := telephony-common
LOCAL_STATIC_JAVA_LIBRARIES := android-support-v4
LOCAL_PACKAGE_NAME := WallpaperCropper
LOCAL_CERTIFICATE := platform

View File

@@ -20,7 +20,7 @@ import android.content.Context;
import android.graphics.Bitmap;
import android.graphics.Rect;
import android.graphics.RectF;
import android.support.v4.util.LongSparseArray;
import android.util.LongSparseArray;
import android.util.DisplayMetrics;
import android.util.Log;
import android.util.Pools.Pool;