d4310ac944
This allows us to keep the assigned permissions when apps are temporarily removed due to the SD card being unmounted, and also if you use the facility to uninstall an app but keep its data. Also fixes issue #2515189: Potential permission spoofing attack in Android (external bug 7166) Change-Id: I2a120ec938552028c989f9e0e890c32773957738
22 lines
554 B
Makefile
22 lines
554 B
Makefile
LOCAL_PATH:= $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE_TAGS := tests
|
|
|
|
LOCAL_JAVA_LIBRARIES := framework-tests android.test.runner services
|
|
|
|
# Resource unit tests use a private locale
|
|
LOCAL_AAPT_FLAGS = -c xx_YY -c cs -c 160dpi -c 32dpi -c 240dpi
|
|
|
|
LOCAL_SRC_FILES := \
|
|
$(call all-subdir-java-files)
|
|
|
|
LOCAL_PACKAGE_NAME := AndroidTests
|
|
LOCAL_CERTIFICATE := platform
|
|
|
|
include $(BUILD_PACKAGE)
|
|
|
|
LOCAL_STORED_PATH:= $(LOCAL_PATH)
|
|
include $(call all-makefiles-under,$(LOCAL_STORED_PATH))
|
|
include $(call all-makefiles-under,$(LOCAL_STORED_PATH)/apks)
|