Juni_DEV

[Android] 안드로이드 스튜디오 기본 설정 본문

etc

[Android] 안드로이드 스튜디오 기본 설정

junni :p 2022. 5. 6. 22:27
반응형

1. 안드로이드 다운로드

 

Download Android Studio and SDK tools  |  Android Developers

The official IDE for Android app developers.

developer.android.com

안드로이드 스튜디오 홈페이지에서 Windows/Mac 등 OS 버전 맞춰서 다운로드

recommand 해주는대로 설치

이번에 설치한 최신 안드 버전

 

2. Github 연동

참고

 

Android Studio와 GitHub 연동

안드로이드 스튜디오와 GitHub을 연동하는 방법 + 오류 해결

velog.io

 

+ .gitignore 파일 설정

 

gitignore.io

Create useful .gitignore files for your project

www.toptal.com

해당 홈페이지에서 운영체제, 개발환경, 프로그래밍 언어를 입력하면 .gitignore 파일을 생성해줌


생성된 .gitignore 파일

# Created by httpswww.toptal.comdevelopersgitignoreapiwindows,android,androidstudio,java
# Edit at httpswww.toptal.comdevelopersgitignoretemplates=windows,android,androidstudio,java

### Android ###
# Gradle files
.gradle
build

# Local configuration file (sdk path, etc)
local.properties

# LogOS Files
.log

# Android Studio generated files and folders
captures
.externalNativeBuild
.cxx
.apk
output.json

# IntelliJ
.iml
.idea
misc.xml
deploymentTargetDropDown.xml
render.experimental.xml

# Keystore files
.jks
.keystore

# Google Services (e.g. APIs or Firebase)
google-services.json

# Android Profiling
.hprof

### Android Patch ###
gen-external-apklibs

# Replacement of .externalNativeBuild directories introduced
# with Android Studio 3.5.

### Java ###
# Compiled class file
.class

# Log file

# BlueJ files
.ctxt

# Mobile Tools for Java (J2ME)
.mtj.tmp

# Package Files #
.jar
.war
.nar
.ear
.zip
.tar.gz
.rar

# virtual machine crash logs, see httpwww.java.comendownloadhelperror_hotspot.xml
hs_err_pid
replay_pid

### Windows ###
# Windows thumbnail cache files
Thumbs.db
Thumbs.dbencryptable
ehthumbs.db
ehthumbs_vista.db

# Dump file
.stackdump

# Folder config file
[Dd]esktop.ini

# Recycle Bin used on file shares
$RECYCLE.BIN

# Windows Installer files
.cab
.msi
.msix
.msm
.msp

# Windows shortcuts
.lnk

### AndroidStudio ###
# Covers files to be ignored for android development using Android Studio.

# Built application files
.ap_
.aab

# Files for the ARTDalvik VM
.dex

# Java class files

# Generated files
bin
gen
out

# Gradle files
.gradle

# Signing files
.signing

# Local configuration file (sdk path, etc)

# Proguard folder generated by Eclipse
proguard

# Log Files

# Android Studio
build
local.properties
out
build
production
.navigation
.ipr
~
.swp

# Keystore files

# Google Services (e.g. APIs or Firebase)
# google-services.json

# Android Patch

# External native build folder generated in Android Studio 2.2 and later
.externalNativeBuild

# NDK
obj

# IntelliJ IDEA
.iws
out

# User-specific configurations
.ideacaches
.idealibraries
.ideashelf
.ideaworkspace.xml
.ideatasks.xml
.idea.name
.ideacompiler.xml
.ideacopyrightprofiles_settings.xml
.ideaencodings.xml
.ideamisc.xml
.ideamodules.xml
.ideascopesscope_settings.xml
.ideadictionaries
.ideavcs.xml
.ideajsLibraryMappings.xml
.ideadatasources.xml
.ideadataSources.ids
.ideasqlDataSources.xml
.ideadynamic.xml
.ideauiDesigner.xml
.ideaassetWizardSettings.xml
.ideagradle.xml
.ideajarRepositories.xml
.ideanavEditor.xml

# Legacy Eclipse project files
.classpath
.project
.cproject
.settings

# Mobile Tools for Java (J2ME)

# Package Files #

# virtual machine crash logs (Reference httpwww.java.comendownloadhelperror_hotspot.xml)

## Plugin-specific files

# mpeltonensbt-idea plugin
.idea_modules

# JIRA plugin
atlassian-ide-plugin.xml

# Mongo Explorer plugin
.ideamongoSettings.xml

# Crashlytics plugin (for Android Studio and IntelliJ)
com_crashlytics_export_strings.xml
crashlytics.properties
crashlytics-build.properties
fabric.properties

### AndroidStudio Patch ###

!gradlewrappergradle-wrapper.jar

# End of httpswww.toptal.comdevelopersgitignoreapiwindows,android,androidstudio,java

 

참고

 

[Git] gitignore 설정하기, gitignore 자동으로 설정해주는 사이트 - HERSTORY

.gitignore를 어떻게 설정해야 하나? 개요 안드로이드 개인 프로젝트를 처음 하게 되면서, git에 프로젝트 파일들을 올려주는 과정에서 gitignore 파일을 제대로 설정해주지 않았더니 다른 노트북에서

4z7l.github.io

 

 

반응형

'etc' 카테고리의 다른 글

[Github] 프로필 추가하기 README.md  (0) 2022.06.28
[Github] TIL 시작하기  (0) 2022.06.21
티스토리 코드 블럭 하이라이트 테마 설정  (0) 2021.06.24
Onenote 빨간 줄 없애기  (0) 2019.07.16
NVIDIA AI Conference 2019  (0) 2019.07.02
Comments