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

Летучий программист

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

Летучий программист

검색하기 폼
  • 분류 전체보기 (67)
    • Languages (1)
      • Python (0)
      • Kotlin (1)
      • Dart (0)
    • Server (10)
      • Spring (1)
      • PHP (3)
      • DB (0)
      • ETC (4)
      • Django (1)
      • AWS (1)
    • App (47)
      • Flutter (27)
      • Android Native (20)
      • General (0)
    • 그 외 (9)
      • CS (1)
      • SCM (1)
      • ETC (0)
  • 방명록

분류 전체보기 (67)
[Git] - git@github.com: Permission denied (publickey).

: Unavailable to git clone(or pull or push) a repository despite the registered public key in the git account. : Check if the registered ssh key in yout git account has been added in your local mac system. It is automatically or undetectably removed from a list of ssh keys in a local environment. // show a list all added ssh keys ssh-add -l // add the existing ssh key which has already been regi..

그 외 2023. 1. 4. 11:09
[Git] Large files detected. Failed to push a reference to git. - .gitignore is not working properly.

I couldn't push my local branch to the existing remote branch due to the errors warning of maximum file size, but the warned files have already been specified not to upload in .gitignore. 😂 Please note that none of the solutions below managed to sort a git issue out. - "flutter clean" and repush. - Create a new branch and push it. - "git rm -rf --cached ." and readd "git add .". - upgrade flutte..

그 외 2023. 1. 3. 19:05
iOS App Distribution #2 - APNs key && iOS Setup for FCM

👋 Request a certificate from a certificate authority to upload to configure the function above. - Go to "Keychain Access" in your mac and move to [Certificate Assitant] -> [Request a Certificate from a certificate authority]. - Put your email address of the main developer account and name. CA email address is skippable that means you shouldn't select "Emailed to the CA" as a request. Specify key..

App/Flutter 2022. 12. 14. 15:02
iOS App Distribution #1 - Register identifier and app

1. Register an App ID. - Sign in with your apple developer account then select the options below. - Fill in the fields. You should specify an app name in english in the description field and a bundle id by refering to [Xcode - TARGETS(Runner) - General - Bundle Identifier] - Enable capabilities that are used in the app. It's unnecessary to assign possible capabilities right now as it is updatabl..

App/Flutter 2022. 12. 14. 14:21
Flutter - 앱 아이콘, 앱 이름 변경

앱 아이콘 설정 👩🏼‍🦰 가장 손쉬운 방법으로는 flutter_launcher_icons 라이브러리를 사용하는 것. 👱🏼‍♀️본인은 figma를 통해 각 해상도에 맞는 이미지를 추출했으나 없을 경우에는 https://appicon.co/ 를 통해 생성할 것. 1. AOS 1-1. 해상도별 "PNG" 파일을 준비하여 [app] - [main] - [res] 의 mipmap의 각 파일에 원하는 파일명 혹은 기본 파일명(ic_launcher)로 지정하여 넣어준다. 👀 파일 명은 전체 다 동일해야 한다. mdpi 1x (160dpi) hdpi 1.5x (240dpi) xhdpi 2x (320dpi) xxhdpi 3x (480dpi) xxxhdpi 4x (640dpi) 1-2. 파일명이 ic_launcher가 아..

App/Flutter 2022. 11. 30. 11:33
Set up firebase core and flutterfire for flutter v3

1) Install a "flutterfire" cli (make sure your flutter version is not less than 3). 1-1) npm install -g firebase-tools Err) EACCES: permission denied Solution) Set a new configuration for global installation of packages. # create a directory at root dir. mkdir ~/.npm-global # configure npm npm config set prefix '~/.npm-global' # open or create a profile file vi ~/.profile # add a enviromental pa..

App/Flutter 2022. 11. 21. 10:32
Riverpod 2.0 - Concepts

Add all needed dependencies below. ## flutter only flutter_riverpod ## makes to use flutter_hooks and Riverpod together hooks_riverpod ## dart only riverpod Consumer listens to providers inside a StatefulWidget. rebuilds widgets once a provider gets updated. final valueProvider = Provider((ref) => 42); class ProviderPage extends StatelessWidget { const ProviderPage({ super.key, required this.col..

App/Flutter 2022. 10. 18. 14:44
Use multiple accounts for GitHub in one MacOS

Are you facing plenty of fatal errors resulted from adding a ssh key for multiple accounts from the same computer in GitHub? As GitHub technically doesn't allow the same generated ssh key for more than two accounts unlike GitLab or other competitive platforms, there is only way to solve the problem is to generate a new ssh key for your second account. Please kindly be noted that I had registered..

그 외/SCM 2022. 10. 12. 15:05
How to install and configure TailwindCSS in Laravel 9?

*laravel/framework -> 9.19, vite -> 3.0.0 Please refer to the official documentation (https://tailwindcss.com/docs/guides/laravel) and recommend to follow my guide if you failed that one. 1. Command the line below in the project directory. # check if the libraries have been added to package.json npm install -D tailwindcss postcss autoprefixer # it generates "tailwind.config.js" npx tailwindcss i..

Server/PHP 2022. 9. 27. 17:49
Laravel 9 Tutorial Summary I - Setup/Controller/Routing/Database

1. Install composer. sudo php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');" # check if 'composer-setup.php' has been installed in the dir. ls -al # move it to the other path sudo mv composer.phar /usr/local/bin/composer # check the installed version composer 2. Download DBngin - database version manage tool if necessary. 3. Install laravel installer with composer global. ..

Server/PHP 2022. 9. 27. 10:15
이전 1 2 3 4 5 6 7 다음
이전 다음
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
TAG
  • flutter_secure_storage_issue_iOS
  • android_app_link_domain_works_with_adb_but_not_works_with_browser
  • android_app_links_domain
  • FlutterWirelessDebuginAOS
  • android_app_links
  • querydslKotlinError
  • laravel9
  • Kotlin
  • WirelessDebug
  • FirebaseConfigurationForMultipleBuildTypes
  • retrofit_generator
  • retrofit_toJson()_error
  • phplaravel
  • Laravel
  • querydsl5.0.0jakarta
  • RunAFlutterProjectIniPhoneFromVSCode
  • mvvm
  • dagger-hilt
  • flutter_android_app_links
  • futter_api
  • unsplashAPI
  • flutter_storage_not_working_for_the_first_time
  • android_domain
  • Android
  • AndroidWirelessDebug
  • retrofit_generator_conflicts_with_freezed
  • querydslQclass
  • MultipleFirebaseEnvironments
  • flutter
  • KotlinFlow
more
«   2025/05   »
일 월 화 수 목 금 토
1 2 3
4 5 6 7 8 9 10
11 12 13 14 15 16 17
18 19 20 21 22 23 24
25 26 27 28 29 30 31
글 보관함

Blog is powered by Tistory / Designed by Tistory

티스토리툴바