1
0
mirror of https://github.com/ioacademy-jikim/multimedia synced 2026-08-22 22:02:57 +00:00

멀티미디어 예제

This commit is contained in:
ioacademy-jikim
2015-08-04 19:14:13 +09:00
commit d3b375295e
59 changed files with 8232 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_CFLAGS += -fPIE
LOCAL_LDFLAGS += -fPIE -pie
LOCAL_MODULE := myapp
LOCAL_SRC_FILES := myapp.c
include $(BUILD_EXECUTABLE)
+8
View File
@@ -0,0 +1,8 @@
#include <stdio.h>
int main()
{
printf("Hello Android\n");
return 0;
}