# 1. Move to android folder cd android # 2. Remove build folder and cache files manually rm -rf app/build rm -rf build rm -rf .gradle # 3. Execute cl…
Read more »RAG 구현 과정 (안드로이드 환경) 1. 질의 입력 & 토크나이징 사용자가 앱에서 질문을 입력합니다. HuggingFace Tokenizers (Java) + Android용 Tokenizers 네이티브(AAR) → 입력된 텍스트를 모델이 이해할 수 있는 토큰 시…
Read more »[ReactNative] pod install command 1. Delete Pod pod deintegrate 2. Clean Pod pod cache clean --all 3. Install pod pod install
Read more »What is React Native? React Native is an open-source framework for building native Android and iOS applications using React. JavaScript to access platform-spe…
Read more »What is Next.js? React is a library for building user interfaces. It's not feasible to create a fully-featured application ready for production. We need t…
Read more »JavaScript pseudo classical inheritance pattern JavaScript is not computer language based on class. So developers have used pseudo classical inheritance patter…
Read more »React provids a variety of hooks developer can use. However, some developers want to make custom hook which they need in specific case. So, On this post I in…
Read more »1. useReducer useReducer is a hook that helps manage state. It's an alternative to useState. It's useful for handling complex state logic where the n…
Read more »1. forwardRef forwardRef is React hook which can allow parent component to pass HTML Element through a child component to access child's underlying DOM n…
Read more »You can get song's metadata using MediaSessionManager. Sample code: package com.twobeone.aiagent.framework import android.content.Context import android.…
Read more »1. useCallback useCallback is React Hook which prevent it from being created on every render unless its dependency changes. 2. Before useCallback import log…
Read more »1. useMemo useMemo is react hook for performance optimization by memorizing the result of expensive computation. 2.Sample Code import logo from './log…
Read more »