[MS SQL] (varchar(max)) base64로 저장된 값을 ubi report에 이미지 띄우기 [MS SQL] (varchar(max)) base64로 저장된 값을 ubi report에 이미지 띄우기 CAST( CAST( '' AS XML).value('.', 'VARBINARY(MAX)' ) AS IMAGE) AS img base64 -> varbinary -> image 값으로 캐스팅 작업, ubi report 컬럼(사용자 컬럼x) 추가 시 리포트에 이미지 업로드 DB, SQL 2025.03.26
[오류 해결] dependency 'androidx.core:core:1.15.0' requires libraries and applications that depend on it to compile against version 35 or later of the android apis. 오류 메시지 dependency 'androidx.core:core:1.15.0' requires libraries and applications that depend on it to compile against version 35 or later of the android apis. 안드로이드 코틀린 앱 시작할 때 위와 같은 오류가 떴다. build.gradle.kts 빌드 설정 파일의 설정이 변경되어야 해서 설정을 변경해주었다. (Ctrl+Alt+Shift+S) File > Project Structure > Module > app > Properties > Compile Sdk VersionCompile Sdk Version을 35로 적용 후 다시 앱을 실행하니 오류가 해결되었다. APP 2025.03.09