전체 글
-
[React Native] react-native-webview카테고리 없음 2024. 2. 22. 15:25
[참고] https://ssilook.tistory.com/entry/React-Naitve-RN-WEBVIEW-%EC%9B%B9%EB%B7%B0-%EC%82%AC%EC%9A%A9%EB%B2%95 [React Naitve] RN - WEBVIEW (웹뷰) 사용법 안드로이드 편 Part 1. 웹뷰에서 React Native로 메세지 데이터 보내기 Step 1. 설치하기 웹뷰를 사용 할 수 있도록 아래 명령어를 통해 라이브러리를 설치해 주시면 됩니다. npm i react-native-webview Setp 2. ssilook.tistory.com https://yoyostudy.tistory.com/63 React Native WebView postMessage로 네이티브, 웹 데이터 전달 React Na..
-
[React Native] react-native-version-check카테고리 없음 2024. 2. 20. 17:19
[참고] https://blog.xogus.io/2016/12/17/react-native-version-check/ react-native-version-check 그간 작업하던 React Native 버전 체크 라이브러리인 react-native-version-check의 1.0버전이 릴리즈 되었습니다! blog.xogus.io https://github.com/kimxogus/react-native-version-check GitHub - kimxogus/react-native-version-check: A version checker for react-native applications A version checker for react-native applications. Contribute to..
-
[React Native] react-native-splash-screen카테고리 없음 2024. 2. 20. 17:16
[참고] https://medium.com/@svbala99/set-up-splash-screen-in-react-native-for-ios-and-android-2023-dbedb87fe75e Set up Splash screen in React Native for iOS and Android 2023 Hello all. Hope you’re doing great. This time I’m gonna share my experience in setting up the splash screen in react native app for both… medium.com https://focus-on-my.tistory.com/260 [React Native] 앱 첫 로딩 실행 화면 (Splash 화면) 구현..
-
macOS에서 Android 환경 변수 설정 방법OS/Mac 2024. 1. 6. 02:31
1) Android SDK 경로 /Users/kimkyungeun/Library/Android 2) 프로파일 위치 /Users/kimkyungeun/.bash_profile /Users/kimkyungeun/.zshrc 숨김 파일 보기 Command + Shift + . 3) 프로파일 텍스트 편집기로 열기 4) 환경 변수 설정 export ANDROID_HOME=/Users/kimkyungeun/Library/Android/sdk export PATH=$PATH:$ANDROID_HOME/emulator export PATH=$PATH:$ANDROID_HOME/platform-tools 5) 환경 변수 설정 확인 echo $ANDROID_HOME adb
-
macOS에서 Java 환경 변수 설정 방법OS/Mac 2024. 1. 5. 00:52
1) Java JDK 경로 조회 /usr/libexec/java_home 2) 프로파일 위치 /Users/kimkyungeun/.bash_profile /Users/kimkyungeun/.zshrc 숨김 파일 보기 Command + Shift + . 3) 프로파일 편집 터미널 명령어 Bash vim ~/.bash_profile zsh vim ~/.zshrc 입력모드 a 명령모드 ESC 저장 :w 4) 환경 변수 설정 export JAVA_HOME=/Library/Java/JavaVirtualMachines/zulu-17.jdk/Contents/Home 5) 환경 변수 설정 확인 echo $JAVA_HOME java -version
-
[Spring Boot] Visual Studio Code에서 Spring Boot 프로젝트 생성 방법개발 2023. 12. 26. 22:46
# Visual Studio Code 세팅 Extensions 에서 Extension Pack for Java, Spring Boot Extension Pack 설치 # Spring Boot 생성 1) View > Command Palette 선택 2) Spring Initializr: Create a Gradle Project 선택 3) Spring Boot version 선택 버전 옆에 (SNAPSHOT)이 적혀있는 것은 아직 만들고 있는 버전이다. 아무것도 적혀있지 않은 버전을 선택한다. 4) Project Language 선택 5) Group Id(기업 도메인명) 입력 6) Artifact Id(프로젝트명) 입력 7) Packaging 선택 Jar를 선택하면 Tomcat이 내장되어 자동으로 설정 ..