Programing Language
-
-
iOS) Firebase Analytics 적용하기Programing Language/iOS(Swift) 2021. 3. 24. 17:48
대략적인 적용방법은 firebase.google.com/docs/analytics/get-started?authuser=2&platform=ios#java_3 Google 애널리틱스 시작하기 | Firebase 이 빠른 시작에서는 앱에 Google 애널리틱스를 추가하고 이벤트 로깅을 시작하는 방법을 설명합니다. iOS Android 웹 Google 애널리틱스는 앱의 사용량과 행동 데이터를 수집합니다. 이 SDK는 다음 두 firebase.google.com 에서 참고하면된다. 종요한게 테스트환경(debug)에서 logEvent를 보기 위해선 In Xcode, select Product > Scheme > Edit scheme... Select Run from the left menu. Select the..
-
Flutter) Debug 모드 Release 모드 체크 하기(참고자료)Programing Language/Flutter(Dart) 2021. 3. 21. 01:46
google Admobs달아줄때 디버그 모드에서는 실제 광고 단위 유닛 아이디를 입력하면 올바른 값이 나오지 않는다. stackoverflow.com/a/55612795 How to check flutter application is running in debug? I have a short question. I'm looking for a way to execute code in Flutter when the app is in Debug mode. Is that possible in Flutter? I can't seem to find it anywhere in the documentation. Somethin... stackoverflow.com 해당 자료를 참고하여 if 문으로 debug모드일때는 ..
-
Flutter) Android Release로 업로드하기!Programing Language/Flutter(Dart) 2021. 3. 21. 01:17
flutter-ko.dev/docs/deployment/android Android 앱 출시 준비하기 Flutter 앱을 개발하는 동안, 커멘드 라인에서의 `flutter run`을 실행하거나IDE에 있는 툴바 **Run** 과 **Debug**를 선택하여 앱을 테스트할 수 있습니다. Flutter는 기본적으로 앱의 _debug_ 버전을 빌드합니 flutter-ko.dev 여기 부분 참고한다. 그리고 storePassword= keyPassword= keyAlias=key storeFile= 여기에 를 남기고 비밀번호와 경로를 적는게아니라 을 지워준다. 이것 때문에 고생했다.
-
Flutter) 구글 광고 달기 (AdMob) [참고자료]Programing Language/Flutter(Dart) 2021. 3. 21. 01:14
codelabs.developers.google.com/codelabs/admob-inline-ads-in-flutter#0 Adding an AdMob banner and native inline ads to a Flutter app In this codelab, you’ll learn how to add AdMob inline ads (Banner and Native) to a flutter app. codelabs.developers.google.com pub.dev/packages/google_mobile_ads google_mobile_ads | Flutter Package Flutter plugin for Google Mobile Ads, supporting banner, interstitia..
-
-
Flask) 서버 재설정(기존 설치 이후 도메인 바뀌었을때)Programing Language/Python 2021. 3. 18. 14:08
www.digitalocean.com/community/tutorials/how-to-serve-flask-applications-with-gunicorn-and-nginx-on-ubuntu-18-04 How To Serve Flask Applications with Gunicorn and Nginx on Ubuntu | DigitalOcean In this guide, you will build a Python application using the Flask microframework on Ubuntu 18.04. The bulk of this article will be about how to set up the Gunicorn application server and how to launch th..
-
iOS) Rxswift를 textfield에 적용해보기(참고자료)Programing Language/iOS(Swift) 2021. 3. 16. 20:59
myseong.tistory.com/12?category=811860 RxSwift UITextField RxSwift UITextField UITextField에 관한 포스팅이다. 많이 사용한는 컨트롤중에 하나이다. editingChanged에서 변경된 text를 처리하는 로직을 많이 구현했었다. (본인...) UITextField에서 가장 많이 처리하는.. myseong.tistory.com