'2017/08'에 해당되는 글 8건

  1. 2017.08.19 android studio geny motion plugin install
  2. 2017.08.19 문자 인코딩 문제 해결 1
  3. 2017.08.13 google analytics 설정
  4. 2017.08.10 sprite font 스프라이트 폰트
카테고리 없음2017. 8. 19. 11:42
반응형

genymotion


android studio plugin install


file>settings>plugin>search>genymotion>install







반응형
Posted by Dream Come True
카테고리 없음2017. 8. 19. 11:25
반응형
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<img src="logo.png" border="0"><a href="http://gotopark.blogspot.kr">MDCT</a>
<h2>자유게시판 눈팅 보드</h2>
Version : 1.0.2
<h4>왼쪽끝에서 오른쪽으로 슬라이드 하십시오</h4>
<h4>또는 왼쪽상단 메뉴 버튼을 터치하세요</h4>
<h4>감사합니다.</h4>
</html>


반응형
Posted by Dream Come True
카테고리 없음2017. 8. 13. 03:45
반응형

build.gradle


compile
'com.google.firebase:firebase-core:10.2.1'




MainActivity.java

private FirebaseAnalytics mFirebaseAnalytics;


// Obtain the FirebaseAnalytics instance.
mFirebaseAnalytics
= FirebaseAnalytics.getInstance(this);



Bundle bundle = new Bundle();
bundle
.putString(FirebaseAnalytics.Param.ITEM_ID, id);
bundle
.putString(FirebaseAnalytics.Param.ITEM_NAME, name);
bundle
.putString(FirebaseAnalytics.Param.CONTENT_TYPE, "image");
mFirebaseAnalytics
.logEvent(FirebaseAnalytics.Event.SELECT_CONTENT, bundle);


반응형
Posted by Dream Come True
카테고리 없음2017. 8. 10. 02:14
반응형

 

 

 

 

 

 

 

게임에서 사용 할 수 있는 스프라이트 폰트 입니다.

게임이든 어플리케이션  개발에 유용하게 사용하세요

 

 

반응형
Posted by Dream Come True