전체 글

1. flutter clean # 이전 빌드 정리2. flutter pub get # 의존성 설치3. flutter build appbundle --release # AAB 빌드
연결된 디바이스 확인adb devices====== 예시 출력List of devices attachedR3CN202ABC device 현재 실행 중인 앱(프로세스) 전체 확인adb shell ps | grep u0_========== 예시 출력u0_a123 10793 1234 123456 ... com.stockexam.appu0_a124 10822 1234 123456 ... com.android.chrome 특정 앱의 PID 확인adb shell pidof -s com.stockexam.app========== 예시 출력10793 특정 PID 로그만 보기adb logcat --pid=10793 -v time 특정 PID 로그 중 JS/RN 로그만 보기adb logcat --pid=$(..
원하는 위치에 코드 삽입 console.log('✅ Hello World from OTA build!'); OTA 실행eas update --branch production --message "커밋명" 연결된 디바이스 확인adb devices====== 예시 출력List of devices attachedR3CN202ABC device 현재 실행 중인 앱(프로세스) 전체 확인adb shell ps | grep u0_========== 예시 출력u0_a123 10793 1234 123456 ... com.stockexam.appu0_a124 10822 1234 123456 ... com.android.chrome 특정 앱의 PID 확인 adb shell pidof -s com.stock..
https://drive.google.com/file/d/1V7KOHvvyW-Hz_mRUczfFOK5P-367ur9f/view?usp=sharing profile-character.zip drive.google.com // 동물 50개 (이름과 이미지 경로) const animals = [ { name: '호랑이', image: 'tiger' }, { name: '사자', image: 'lion' }, { name: '곰', image: 'bear' }, { name: '여우', image: 'fox' }, { name: '늑대', image: 'wolf' }, { name: '토끼', image: 'rabbit' }, { name: '다람쥐', image: '..
# Android 프로덕션 빌드 (AAB 파일)eas build --platform android --profile production# Android 개발 빌드 (APK 파일)eas build --platform android --profile development
import { theme } from '@/styles/theme'import styled from '@emotion/native'import React from 'react'import { Modal, Pressable, StyleSheet, View } from 'react-native'interface CommonBottomSheetProps { visible: boolean onClose: () => void children: React.ReactNode height?: number | string backgroundColor?: string backdropColor?: string borderRadius?: number}const CommonBottomSheet = ({ visi..
https://supabase.com/docs/reference/javascript/order JavaScript: Order the results | Supabase DocsJavaScript: Order the results Order the query result by column. You can call this method multiple times to order by multiple columns. You can order referenced tables, but it only affects the ordering of the parent table if you use !inner in the query. Parasupabase.comconst { data, error } = await su..
https://stackoverflow.com/questions/67623952/error-virtualizedlists-should-never-be-nested-inside-plain-scrollviews-with-th ERROR - VirtualizedLists should never be nested inside plain ScrollViews with the same orientationI'm working on a react-native app and I have to put a list of object in a Scrollview, so I use the FlatList component to do it. This is the piece of code that generates the err..
순코딩
순코딩