最近換了SDK,在Android源碼編譯的時候出現app編譯時報No resource found that matches the given name 'Theme.AppCompat'問題。本來以為隻需要加上
LOCAL_STATIC_ANDROID_LIBRARIES := \
android-slices-builders \
android-slices-core \
android-slices-view \
android-support-compat \
android-support-v4 \
android-support-v13 \
android-support-v7-appcompat \
android-support-v7-cardview \
android-support-v7-recyclerview \
android-support-v14-preference
就OK,
實際上依然報錯。
花了1個多小時,仔細看了文檔,也沒有找出原因。
後來從Settings App的Android.mk中得到啟發,加上
LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/res
LOCAL_USE_AAPT2 := true
後編譯通過。