:::: 개발 ::::/:::: 안드로이드 :::: 22

firebase 에서 만든memoApp 구글플레이스토어 등록 구동 오류.. ( GoogleAuthProvider.getCredential )

로컬에선 잘되던게... 구글플레이스토어 올리니 오류 발생.. 부랴부랴 핸드폰 연결해서 log 살펴봄 GoogleAuthProvider..getCredential 정보를 못받아옴.. 다방면 검색중 ( http://family-gram.tistory.com/20 사이트에서 힌트 찾음) 사용자 인증키가 다르면 오류 발생 2곳을 비교 하여 처리 함 https://console.developers.google.com/ 에서 유형 안드로이드 키 확인 Firebase 콘솔하고 비교하여 본다 저같은 경우는 쓸데없이 아래 SHA256인증방식 을 하나 더 추가해서 애러가 발생 삭제 하고 구동 테스트 해보니 구동 성공 심심하면 다운받아 보세욤 ㅋ https://play.google.com/store/apps/details?..

지문인식 키 찾기

안드로이드 FireBase 메모 앱 개발중 SHA 인증서 지문 없어서 오류 발생.. 윈도우는 아래 폴더에 " debug.keystore " 파일이 있다Windows Vista 및 Windows 7: C:\Users\your_user_name\.android\ 해당 경로로 이동하여keytool -list -v -keystore "%USERPROFILE%\.android\debug.keystore" -alias androiddebugkey -storepass android -keypass android 키 값 나옴 복사 해서 추가 완료 ㅋㅋ 참고 : https://developers.google.com/places/android-api/signup?hl=ko

안드로이드 xrdp 사용하기

최신 Microsoft Remote Desktop 으론 접속 불가!! https://github.com/neutrinolabs/xrdp/issues/246 karas84 commented on 29 Jan@timnolte for Android I'm using an old version (8.0.5.24406) of the Microsoft Remote Desktop client that seems to be working with xrdp. You can find the apk around by googling it or ask me if you can't find it. 아우 개삽질 XXXX Microsoft Remote Desktop 8.0.5.24406 APK 요 버젼으로 다운로드 하여 연결하니 ..

안드로이드 스튜디오 gradle 배포 빌드 간단히..( gradlew aR )

gradle 을 정말 무식하게 필요할때 마다 검색해서 사용 ㅎㅎ build.gradle 에서 defaultConfig { .. .. versionCode 5 versionName "1.0.6" } 위에 두개 변경하고 터미널에서 요것만 해주면 새로 업데이트 할수있다 gradlew aR 물론 아래 동영상 처림 기본 세팅은 해줘야 한다 ㅋㅋ 세팅후 몇달에 한번 업데이트 하는데 위 명령어가 항상 새롭다 ㅎㅎㅎ 기본세팅 출처 http://androidhuman.com/544

안드로이드 스튜디오 풀화면 & no titlebar 오류..

안드로이드 스튜디오 @android:style/Theme.NoTitleBar 기본적인요 테마가 안먹는다.. 시작하자마자 뻗어버림 ... 폭풍검색 ActionActivity 를 상속하면서 생기는 버그? 오류? 아 한시간 달려먹고 검색해서 찾음 ㅠㅠ 아래 참고 사이트.. [Android Studio] 'Theme.NoTitleBar' 작업 시 'You need to use a Theme.AppCompat theme' 에러 Android Studio 에서 프로젝트를 생성 후 TitleBar 를 없애기 위해서 AndroidManifest.xml 의 Activity 에 다음과 같이 기술했었다. android:theme="@android:style/Theme.NoTitleBar" 하지만 황당하게도 에러가 발생을 하..

node.js push 구현 정리..

기종 : cent os 6.5 우선 node.js 설치 (root 계정으로 설치) 소스 컴파일 방법입니다.~$ wget http://nodejs.org/dist/v0.10.28/node-v0.10.28.tar.gz~$ tar vxzf node-v0.10.28.tar.gz~$ cd node-v0.10.28~/node-v0.10.28$ ./configure~/node-v0.10.28$ make~/node-v0.10.28$ sudo make install 다음은 apt-get을 이용한 인스톨방법입니다.$ sudo apt-get install nodejs$ sudo apt-get install npm 참고 링크 : http://pyrasis.com/nodejs/nodejs-HOWTO#section-8 node...

안드로이드 스튜디오 앱스토어 apk 만들기 (keystore 관리방법)

참고한 강좌 이클립스보다 뭔가 좀 직관적으로 바뀌었네.. 위 강좌는 리눅스 (mac) 기준으로 윈도우 사용자에 대한 배려가 없다 ㅋㅋㅋ 우선 keystore 파일을 만든다.. Java 가 가지고 있는 keytool 유틸리티로 keystore 를 생성해줍니다.시작 > 실행 > cmd ( java path가 설정되어있어야함 ..)keytool -genkey -v -keystore test.keystore -alias komvo -keyalg RSA -keysize 2048 -validity 10000요거 복사해서 붙여넣기 차례대로 입력... 키 저장소 비밀번호 입력: 새 비밀번호 다시 입력: 이름과 성을 입력하십시오. [Unknown]: nova조직 단위 이름을 입력하십시오. [Unknown]: 조직 이름을..

안드로이드 스튜디오 Unable to start the daemon process JVM 에러

Error:Unable to start the daemon process. This problem might be caused by incorrect configuration of the daemon. For example, an unrecognized jvm option is used. Please refer to the user guide chapter on the daemon athttp://gradle.org/docs/1.10/userguide/gradle_daemon.html Please read below process output to find out more: ----------------------- Error occurred during initialization of VM Could ..

layout 에서 부분 화면 처리.. (레이아웃 인플레이션 )

소스 코드 @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); } public void onButtonClicked(View v){ //뿌려줄 공간 layout id로 찾아온다.이미 메인에서 메모리에 올라 갔으니 찾을 수 있다. LinearLayout container = (LinearLayout)findViewById(R.id.container); //시스템서비스 에서(getSystemService) 참조된 특정 객체를 가져온다 LayoutInflater inflater = (LayoutInflater) ge..