안드로이드 개발(150)
-
React Native 설치 및 안드로이드 앱 빌드, 실행
1. react-native 설치 및 프로젝트 생성 $ npm install -g react-native-cli $ react-native init TestProject $ cd TestProject $ npm install https://github.com/nashorn74/TestProject nashorn74/TestProject Contribute to nashorn74/TestProject development by creating an account on GitHub. github.com 2. 환경 변수 설정 (안드로이드용) windows의 경우 내컴퓨터 - 속성 - 고급 시스템설정 - 환경변수 로 들어가서 시스템 변수에 '변수이름 - ANDROID_HOME 변수 값 - C:\sdk의 경로' ..
2020.02.03 -
GitLab CI에서 안드로이드 앱 빌드-테스트-서명 및 배포
https://android.jlelse.eu/android-gitlab-ci-cd-sign-deploy-3ad66a8f24bf Android CI/CD with GitLab — Build, Test, Sign, Upload to Dropbox and send an Email I’ve been working on an Android app, that was in early demo stage and not released to the Play Store yet. After a while I found myself… android.jlelse.eu The .gitlab-ci.yml file is completed and the result should look like this: image: jangrew..
2020.01.20 -
안드로이드 테스트 예제
GitLab-CI로 안드로이드 프로젝트에서의 자동 테스트 및 빌드를 성공했으니, 그 다음으로는 자동 테스트를 위한 테스트를 작성해야한다. 안드로이드용 테스트를 작성하기 위해 참고할만한 예제를 공유한다. https://github.com/android/testing-samples android/testing-samples A collection of samples demonstrating different frameworks and techniques for automated testing - android/testing-samples github.com
2020.01.06 -
안드로이드 MQTT 연동 구현
엄청 쉽다. http://androidkt.com/android-mqtt/InstallationThe most convenient way to start a new Android Application is to use Android Studio. Download Paho Android Service and Android MQTT Client library.Go to your libs folder inside app folder and paste all your .jarhttps://repo.eclipse.org/content/repositories/paho-releases/org/eclipse/paho/org.eclipse.paho.android.service/1.1.1/org.eclipse.paho.a..
2017.09.10 -
에뮬레이터에서 로컬 웹서버 접근 문제
안드로이드 앱 개발 시, 에뮬레이터에서 로컬에서 실행 중인 웹서버에 접근하려고 localhost로 접속을 시도하면 다음과 같은 오류가 발생한다. 이전에도 한번 겪어서 로컬 PC의 IP 주소를 넣어주면 되는지 알고 있었지만, 그새 까먹고 다시 삽질했다. ㅠㅠNo Network Security Config specified, using platform default 윈도에서는 커맨드 창에서 ipconfig라고 입력하면 되지만, mac에서는 다음과 같이 입력해주어야 한다.ipconfig getifaddr en0 간만에 안드로이드 개발을 하려니 이것 저것 쓸데없이 발목 잡는 것이 많다.요즘엔 이런 삽질을 경험하지 않아도 되는데, 확실히 안드로이드 개발은 기존 프로그래밍 스타일인 듯하다.
2017.09.10 -
웹뷰에서 파일 업로드 처리 방법 (킷캣 4.4.2 이슈 포함)
아이폰은 그냥(!!) 되는데, 이놈의 안드로이드는 그냥 안된다.그리고, 킷캣에서는 더 안된다... 쯧 Android WebView File Upload 처리http://gogorchg.tistory.com/entry/Android-WebView-File-Upload [Android, Hybrid]openFileChooser 킷캣에서 동작하지 않는 문제( openFileChooser Kitkat bug )http://fimtrus.tistory.com/entry/Android-HybridopenFileChooser-%ED%82%B7%EC%BA%A3%EC%97%90%EC%84%9C-%EB%8F%99%EC%9E%91%ED%95%98%EC%A7%80-%EC%95%8A%EB%8A%94-%EB%AC%B8%EC%A0..
2016.11.04