336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
commit failed with error bad signature ...
위와 같은 오류가 뜬 경우는 Git에 Index가 꼬였을 때 발생 합니다.
이럴 경우 Git을 reset 해야 합니다.
1. 윈도우 cmd 창을 연다.
2. Android Studio Project 폴더로 이동 한다.
3. 아래 명령어를 차례대로 입력하세요.
cd .git
del index ( 리눅스는 rm -rf index )
cd ..
"c:\Program Files (x86)\Git\bin\git.exe" reset (또는 git 실행 파일을 Path 지정 하세요)
명령어가 완료 되고 나면 Android Studio에서 git 동작이 정상적으로 이뤄질껍니다.
참고하세요.
'나의 플랫폼 > 안드로이드' 카테고리의 다른 글
[Android] skipped frames the application may be doing too much work on its main thread (0) | 2016.01.20 |
---|---|
[Android] String 에서 Html Tag만 제거하는 방법 (0) | 2016.01.13 |
[Android] View Background를 Rounded corner 형태로 반영 (0) | 2016.01.12 |
[Android] Background animation에 쓸만한 TransitionDrawable (0) | 2016.01.08 |
[Android] getDrawable, getColor deprecated (0) | 2016.01.08 |