본문 바로가기 메뉴 바로가기

코모스튜디오

프로필사진
  • 글쓰기
  • 관리
  • 태그
  • 방명록
  • RSS

코모스튜디오

검색하기 폼
  • 분류 전체보기 (248)
    • 코모 어플리케이션즈 (63)
      • 내가만드는 정각알림 (38)
      • 말하는 일상 카운터 (3)
      • 말하는 시계(전원키, 센서,.. (13)
      • SpeakingAlarmClock (0)
      • 번갯불 (2)
      • 빠른 손전등 (2)
      • 일정 브리핑 알람 (2)
    • [안드로이드 공부] (161)
      • 안드로이드 스튜디오 (28)
      • 프리퍼런스 (11)
      • 안드로이드 공부 (30)
      • 프래그먼트 (7)
      • 동기화 (12)
      • 액티비티 (7)
      • UI (43)
      • 미디어 (2)
      • 알림 (8)
      • 서비스 (3)
      • 애드 (9)
    • [애플] (0)
    • [IT 뉴스] (18)
      • 모바일 (10)
      • 과학 (5)
      • 인터넷 (3)
    • [엔터테이먼트] (1)
      • 영화 (1)
    • 기타 (2)
  • 방명록

안드로이드 스튜디오 (45)
No matching client found for package name

패키지명을 바꾸었을 경우 발생한다. 안드로이드 스튜디오 좌측에 Android 를 Project 로 변경 하면 google-service.json 이 보인다. Firebase에서 앱을 추가 하거나 변경해서 새로 받거나, 이 파일을 열어서 변경한 패키지 명을 넣어주면 된다.

[안드로이드 공부]/안드로이드 스튜디오 2019. 10. 27. 11:50
error: resource style/TextAppearance.AppCompat.Notification.Title

android studio Gradle 3.1.0 업데이트 후 1. error: resource style/TextAppearance.AppCompat.Notification.Title 발생android:textAppearance="@style/TextAppearance.AppCompat.Notification" --> 로 변경 android:textAppearance="@style/TextAppearance.Compat.Notification2. error: cannot find symbol class NotificationCompat import android.support.v7.app.NotificationCompat; --> 로 변경 import android.support.v4.app.Notif..

[안드로이드 공부]/안드로이드 스튜디오 2018. 4. 9. 15:07
please fix the version conflict either by updating the version of the google-services plugin (9.0.0)

please fix the version conflict either by updating the version of the google-services plugin (9.0.0) 에러를 만난다면 최상위 gradle에 dependencies { classpath 'com.android.tools.build:gradle:3.0.1' classpath 'com.google.gms:google-services:3.0.0' // for firebase }요렇게 작성 하지 않았거나,build.gradle 에 apply plugin: 'com.google.gms.google-services' 을 파일의 맨 아래 줄에 작성 하지 않으면 발생 한다.

카테고리 없음 2018. 3. 13. 18:05
bitbucket에 repository 초기화 및 push

1. bitbucket 에 repository 생성--> readme 파일 만들지 말고--> Get started the easy way 화면에서 2. 로컬 소스 폴더에서 git init3. 로컬 소스 폴더에서 git remote add origin https://

[안드로이드 공부]/안드로이드 스튜디오 2018. 3. 8. 17:47
androidstudio please select android sdk

please select android sdk --> build.gradle에가서 sync now를 해주면 해결 됨. 할게 없으면 공백 만들면 sync now 나옴.

[안드로이드 공부]/안드로이드 스튜디오 2018. 3. 8. 17:42
Exception raised during rendering: Could not initialize class android.graphics.Typeface

Exception raised during rendering: Could not initialize class android.graphics.Typeface 보통 안드로이드 스튜디오를 업데이트 할때 생긴다. xml preview가 되지 않는 현상이다. 이번에도 여지 없이 2.3에서 3.0으로 올렸더니 발생 했다. 맥 기준 이때의 해결 방법은1. 홈디렉토리의 .android를 지워주거나,2. .metadata를 지워주라는데 이건 이클립스 같고,3. 클린 리 빌드4. font 문제 등등 많은 방법 그런데 해결이 안되네? 그냥 다 지우고 다시 설치 하면 된다. 괜히 시간 낭비 하지 말자, 터미널에서 지울 필요 없다!그냥 응용프로그램 폴더에서 안드로이드 스튜디오를 휴지통으로 보낸 뒤, android studio..

[안드로이드 공부]/안드로이드 스튜디오 2017. 10. 31. 10:41
[안드로이드] 자바 소수점 자르기

2f는 둘째자리까지, 1f는 첫째자리까지 자른다. String.format(" %.2f",="" 0.123456)

[안드로이드 공부]/안드로이드 공부 2017. 8. 24. 10:28
[안드로이드] Failed to resolve: com.android.support:support-v4:26.0.0

Failed to resolve: com.android.support:support-v4:26.0.0 26 부터는 allprojects { repositories { jcenter() maven { url "https://maven.google.com" } } } 요렇게 url "https://maven.google.com" 을 마지막에 배치 해주어야 한다.

[안드로이드 공부]/안드로이드 스튜디오 2017. 8. 15. 15:30
[안드로이드] CalledFromWrongThreadException

AsynkTask를 쓰다보면 자주 만나는 에러다. Caused by: android.view.ViewRootImpl$CalledFromWrongThreadException: Only the original thread that created a view hierarchy can touch its views. doInBackground에서는 UI 스레드에 직접 접근해서는 안되는데 발생한다. 즉, setText 같은 작업은 onPostExecute에서 처리 하도록 하자.

[안드로이드 공부]/동기화 2016. 10. 5. 11:01
[안드로이드] AlertDailog 버튼 색 변경 하기

AlertDialog를 커스트 마이징 즉, create 했다면 버튼 색은 아래와 같이 바꿔야 한다. 1. dialog = builder.create()2. dialog.getButton(AlertDialog.BUTTON_NEGATIVE).setTextColor(WHAT); dialog.getButton(AlertDialog.BUTTON_POSITIVE).setTextColor(WHAT);

[안드로이드 공부]/UI 2016. 10. 5. 11:00
이전 1 2 3 4 5 다음
이전 다음
공지사항
최근에 올라온 글
  • [말하는 알람 시계] 방해금..
  • [정각알림] - 간격 / 음력..
  • No matching client found..
  • New update version
최근에 달린 댓글
  • 안녕하세요. 좋은 말씀 감사..
  • 말하는 알람시계 유용하게 잘..
  • 좋은정보 감사합니다. 그런데..
  • 두번째 코드에서도 event가 nu..
Total
317,455
Today
289
Yesterday
295

Blog is powered by Tistory / Designed by Tistory