1
0
mirror of https://github.com/ioacademy-jikim/multimedia synced 2026-08-22 13:53:02 +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
+6
View File
@@ -0,0 +1,6 @@
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
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;
}