优化:README

This commit is contained in:
2025-08-04 17:04:56 +08:00
commit e6670a19bd
8 changed files with 598 additions and 0 deletions

17
program/jni/Android.mk Normal file
View File

@ -0,0 +1,17 @@
LOCAL_PATH := $(call my-dir)
COMPILE = static
ifeq ($(COMPILE), static)
include $(CLEAR_VARS)
LOCAL_MODULE := printlog
include $(BUILD_STATIC_LIBRARY)
else
include $(CLEAR_VARS)
LOCAL_MODULE := printlog
LOCAL_LDLIBS += -llog
include $(BUILD_SHARED_LIBRARY)
endif

View File

@ -0,0 +1 @@
include ../../ApplicationRules.mk