2025/05/29 2

구글이 출시한 안드로이드 폰용 로컬 AI 앱, edge gallery

구글의 공식 github 저장소인 Google AI Edge Gallery에서 로컬로 AI 모델을 실행할 수 있는 앱의 apk 파일을 등록했다.https://github.com/google-ai-edge/gallery GitHub - google-ai-edge/gallery: A gallery that showcases on-device ML/GenAI use cases and allows people to try and use models lA gallery that showcases on-device ML/GenAI use cases and allows people to try and use models locally. - google-ai-edge/gallerygithub.com위 사이트에서 우측의..

IT 트렌드 2025.05.29

어플리케이션, 앱 (Application)/안드로이드 (Android)안드로이드 jetpack compose 공부 정리 3일차 (코틀린, android 14 이후 버전)

함수와 클래스 3일차는 함수와 클래스에 대한 내용이다.1. 함수 (Function) 함수는 특정 작업을 수행하는 코드 블록이다.fun 키워드를 사용하여 정의한다.함수명, 변수명 규칙이 동일하다. (camelCase 권장).main() 함수는 프로그램의 시작점이다.1.1. 함수 정의fun 함수이름(파라미터1: 타입, 파라미터2: 타입, ...): 반환타입 { // 함수 내용 return 반환값 // 반환타입이 있을 시}// 반환값이 없으면 (Unit) 반환 타입 생략 가능fun printMessage(message: String) { // : Unit이 원래 있지만 생략 println(message)}1.2. 함수 호출함수이름(인자1, 인자2, ...)1.3. 함수 예제fun greet(n..