인터넷에 있는 Android Studio NDK 설정 내용들은 전부다 메인 프로젝트에 NDK 소스파일 들이 있는 내용이고 라이브러리 프로젝트에 있는 내용은 없다. 그래서 라이브러리 프로젝트에서 NDK 빌드를 하는 설정을 해보았다. 그런데 이클립스의 라이브러리 프로젝트와 다르게, so파일이 생성은 되지만 자동으로 메인 프로젝트에 복사가 되지 않는다. 다음 글에서는 gradle로 빌드된 so파일을 복사를 해보겠다. apply plugin: 'com.android.library' // 라이브러리 프로젝트 android { compileSdkVersion 21 buildToolsVersion "21.1.2" defaultConfig { minSdkVersion 18 targetSdkVersion 21 ndk {..
Eclipse NDK 프로젝트를 Android Studio에 import 하였을때 발생하는 에러로서 Android.mk에 링크가 다음과 같이 정의가 되어 있음에도 불구하고 undefined reference to __android_log_print가 발생했다. Android.mkLOCAL_LDLIBS := -llog -landroid -lEGL -lGLESv2 이런 에러가 발생할때는 다음과 같이 build.gradle을 열어서 ndk에 다음과 같이 ldLibs를 추가해 주어야 한다. Android Studio에서 import시 ldLibs를 추가해 주지 않기 때문이다. ndk { moduleName "mediaweb" ldLibs "log", "android", "EGL", "GLESv2" }
package com.example.surfaceviewsample; import android.app.Activity; import android.content.Context; import android.graphics.Bitmap; import android.graphics.BitmapFactory; import android.graphics.Canvas; import android.graphics.Color; import android.graphics.Paint; import android.graphics.PixelFormat; import android.os.Bundle; import android.view.Menu; import android.view.SurfaceHolder; import an..
public class MainActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); // 리스트뷰 및 패스 얻기 ListView listView1 = (ListView) findViewById(R.id.listView1); String path = Environment.getExternalStorageDirectory().getAbsolutePath(); // 폴더 리스트 읽기 File file = new File(path); File[] files = file...
안녕하세요? 비니아빠 바야바입니다. 일단 조회수를 위해 제목만 거창하게 달아봤습니다. 죽여주세요. 오늘은 제가 만든 온라인 게임들은 어떻게 만들어졌는지 진짜 간단하게 소개해보려고 합니다. 2G->3G->LTE를 거치면서 모바일 네트워크 성능은 점점 더 진화하고 있고, 앞으로 모바일 온라인 게임이 마켓의 트렌드가 자리잡을 날도 머지 않았기 때문입니다. 1. 게임 서버 알까기 온라인의 초창기 시절에는 집에서 개인PC 한대를 서버 전용으로 돌렸습니다. 동접이 늘어나서 향후에는 17만원 상당의 서버 호스팅 서비스를 이용했구요. 알까기, 장기, 오목, 탱크가디언까지 4개 온라인 게임을 1대의 서버에서 모두 실행했습니다. 최근에 개발한 치킨팝 온라인은 KT의 클라우드 서비스를 이용하고 있는데 성능은 괜찮습니다만, ..
#include #include #include GLubyte rasters[24] = { 0xc0, 0x00, 0xc0, 0x00, 0xc0, 0x00, 0xc0, 0x00, 0xc0, 0x00, 0xff, 0x00, 0xff, 0x00, 0xc0, 0x00, 0xc0, 0x00, 0xc0, 0x00, 0xff, 0xc0, 0xff, 0xc0}; void init(void){ glPixelStorei (GL_UNPACK_ALIGNMENT, 1); glClearColor (0.0, 0.0, 0.0, 0.0);} void display(void){ glClear(GL_COLOR_BUFFER_BIT); glColor3f (1.0, 1.0, 1.0); //drawing F 3 times glRasterPos2..
- Total
- Today
- Yesterday