안녕하세요 
특정 기기로 말씀주신 미니앱 테스트시 위치 정보가 받아와지지 않는 것을 확인했습니다.
useGeolocation 훅 테스트앱을 만들어서 테스트했는데, 위치 정보 실패했던 기기에서도 잘 받아와지더라구요 
코드를 한번 확인해봐주실 수 있을까요 ?
테스트한 코드 공유드립니다.
import { createRoute } from '@granite-js/react-native';
import React, { useState } from 'react';
import { StyleSheet, View, Text, TouchableOpacity } from 'react-native';
import { useGeolocation, Accuracy } from '@apps-in-toss/framework';
export const Route = createRoute('/', {
component: Page,
});
function Page() {
const [isTracking, setIsTracking] = useState(false);
const location = useGeolocation({
accuracy: Accuracy.Balanced,
distanceInterval: 10,
timeInterval: 1000,
});
const handleStartTracking = () => {
setIsTracking(true);
};
return (
<View style={styles.container}>
<Text style={styles.title}>위치 정보 테스트</Text>
{!isTracking && (
<TouchableOpacity
style={styles.button}
onPress={handleStartTracking}
>
<Text style={styles.buttonText}>내 위치 가져오기</Text>
</TouchableOpacity>
)}
{isTracking && location == null && (
<Text style={styles.loadingText}>위치 정보를 가져오는 중이에요...</Text>
)}
{isTracking && location && (
<View style={styles.locationContainer}>
<Text style={styles.locationText}>
위도: {location.coords.latitude}
</Text>
<Text style={styles.locationText}>
경도: {location.coords.longitude}
</Text>
</View>
)}
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
padding: 16,
backgroundColor: 'white',
justifyContent: 'center',
alignItems: 'center',
},
title: {
fontSize: 24,
fontWeight: 'bold',
color: '#1A202C',
textAlign: 'center',
marginBottom: 32,
},
button: {
backgroundColor: '#0064FF',
paddingVertical: 12,
paddingHorizontal: 32,
borderRadius: 8,
marginBottom: 24,
shadowColor: '#000',
shadowOffset: {
width: 0,
height: 2,
},
shadowOpacity: 0.25,
shadowRadius: 3.84,
elevation: 5,
},
buttonText: {
color: 'white',
fontSize: 16,
fontWeight: 'bold',
textAlign: 'center',
},
loadingText: {
fontSize: 16,
color: '#718096',
textAlign: 'center',
marginBottom: 24,
},
locationContainer: {
alignItems: 'center',
padding: 16,
backgroundColor: '#d4edda',
borderWidth: 1,
borderColor: '#c3e6cb',
borderRadius: 8,
},
locationText: {
fontSize: 18,
color: '#155724',
textAlign: 'center',
marginBottom: 8,
},
});