[cocos2d-x]JNI cpp->Java
2013. 5. 31. 19:05ㆍcocos2d-x
336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
안드로이드 단 에서
private native static String test(); //test <-cpp에 정의된 함수 이름
string test_str = test();
Log.d("Cocos2d-x", test_str);
아이폰 단 에선
#include "jni.h"
#include <string.h>
#include <stdint.h>
추가해주고
#ifdef __cplusplus
extern "C" {
#endif
//com_test_Game <- 패키지 이름, Game <-클래스 이름, test <-함수 이름
jstring Java_com_test_Game_Game_test(JNIEnv *env, jobject obj)
{
const char *sou = "abc";
jstring res = env->NewStringUTF(sou);
return res;
}
#ifdef __cplusplus
}
#endif
요래 하면 된다.
되더라....
잘되네...
'cocos2d-x' 카테고리의 다른 글
[android]cocos2d-x 다운로드! 안드로이드 편 (0) | 2013.06.04 |
---|---|
[cocos2d-x]CURL 파일 download ! (0) | 2013.06.03 |
[cocos2d-x]JNI : 안드로이드 함수 호출 하기 (0) | 2013.05.30 |
[cocos2d-x]cocos2d-x 안드로이드 액티비티 이동 (0) | 2013.05.30 |
[cocos2d-x]안드로이드 동영상 재생 (0) | 2013.05.29 |