[Java] Random객체 less than 1 minute read Random random = new Random(); // 랜덤객체 생성 int n = random.nextInt(100); 정수 n의 범위는 0부터 99까지 100개 Share on Twitter Facebook LinkedIn Previous Next
Flutter Background Service 실행시키기 with drift, flutter_local_notifications 5 minute read 도토리 앱은 나의 하이킹 루트를 기록하는 것이 핵심 기능이다. 하지만 하이킹을 하는 몇 시간 내내 앱을 포그라운드에 켜 놓고 위치 정보를 수집할 수는 없기 때문에 필연적으로 이를 전담할 백그라운드 서비스를 만들어야 한다.