일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 | 29 |
30 | 31 |
- JS
- Hook
- nodejs
- Java
- npm
- Kotlin
- Linux
- 랜덤넘버
- TextView
- 코틀린
- Javscript
- Android
- button
- fragment
- JavaScript
- SpringBoot
- 안드로이드
- 구글맵스
- RecyclerView
- 자바스크립트
- 리액트
- 스프링부트
- stylesheet
- 오버라이딩
- 랜덤번호
- GoogleMaps
- React
- TypeScript
- scrollview
- array
- Today
- Total
목록위치추적 (2)
타닥타닥 개발자의 일상

폴더 및 파일구성 코딩 하기 전 AndroidManifest.xml / build.gradle 파일을 수정해 사전 설정을 완료해야한다. 사전설정 AndroidManifest.xml build.gradle(:app) plugins { id 'com.android.application' id 'kotlin-android' } android { compileSdk 32 defaultConfig { applicationId "com.example.mydocument" minSdk 21 targetSdk 32 versionCode 1 versionName "1.0" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } buildTypes { ..

새로운 프로젝트에서 Google Maps Activity 생성. AndroidManinfest.xml에 아래의 코드 삽입하고 Sync Now 누르기. 인터넷과 위치 추적 허용해주는 코드 아래는 코드 적용된 전체 코드 AndroidManifest.xml google_maps_api.xml AIzaSyD_SLUKJXnyGEweAKXFxV7R2-yqDn7xUF0 MapsActivity.kt package com.example.myapplication import android.Manifest import android.annotation.SuppressLint import android.location.Location import android.os.Bundle import android.os.Looper i..