반응형

2012/01/04 3

[에러메시지] You must have AdActivity declared in AndroidManifest.xml with configChanges

안드로이드에 애드몹 붙이려고 서핑. http://stoptospade.tistory.com/66 에 상당히 친절히 나와 있어서 따라 함. 그런데 이런 에러가 발생. OTL You must have AdActivity declared in AndroidManifest.xml with configChanges 검색해보니 해결책(아래 링크) 발견. http://narakatech.blogspot.com/2011/11/admob431-you-must-have-adactivity.html 따라 했는데 안됨. OTL 확인해 보니, http://stoptospade.tistory.com/66 에서 정한 옵션보다 더 많은 옵션이 필요함. 아래와 같이 해서 문제 해결 1) 아래 activity를 추가 (옵션 정확하게) ..

static const char* vs static const char []

오픈소스에 버그를 하나 등록했는데 아래와 같은 Comment를 받았습니다. "this does not go to the .rodata section in the binary; use static const char foo[] instead." 이게 무슨 소린가 하고, 확인을 하기 위해 간단한 프로그램을 작성해보았습니다. ### c++/* file: constchar.cpp * * gcc -S -O0 constchar.cpp -DCONST_POINTER */ #if defined(CONST_POINTER) static const char* name = "hello"; #elif defined(CONST_ARRAY) static const char name[] = "hello"; #else static co..

반응형