Android Studio
안드로이드 스튜디오(영어: Android Studio)는 안드로이드 및 안드로이드 전용 어플(앱)제작을 위한 공식 통합 개발 환경 (IDE)이다. 2013년 5월 16일, 구글 I/O 컨퍼런스에서 구글의 제품 관리자인 Ellie Powers에 의해서 발표되었다. 아파치 라이선스 2.0으로 배포된다.
GNOME Desktop Icon
~/.local/share/applications/android-studio.desktop
파일을 생성하고 아래 내용을 붙여넣으면 된다.
[Desktop Entry]
Version=2020.3.1.25
Type=Application
Name=Android Studio
Icon=/home/your/Applications/android-studio/bin/studio.svg
Exec="/home/your/Applications/android-studio/bin/studio.sh" %f
Comment=Android Studio provides the fastest tools for building apps on every type of Android device
Categories=Development;IDE;
Terminal=false
StartupWMClass=jetbrains-studio
StartupNotify=true
Gitignore For Android Studio And Intellij
I am in the midst of transitioning to Intellij for my Android development. Part of that transition means updating my .gitignore file. There are a lot of mixed answers out there on sites such as StackOverflow concerning exactly what should be versioned and what should not. After a lot of digging and combining of sources I think I found the solution. If you see anything missing or have some suggestions please comment below.
Jetbrains recommends including all of the IDE files except for the those ending in .iws, the workspace.xml file, and tasks.xml. I also added the .gradle file to the ignore list as it is generated. Everything else remains the same.
# built application files
*.apk
*.ap_
# files for the dex VM
*.dex
# Java class files
*.class
# generated files
bin/
gen/
# Local configuration file (sdk path, etc)
local.properties
# Eclipse project files
.classpath
.project
# Proguard folder generated by Eclipse
proguard/
# Intellij project files
*.iws
.idea/workspace.xml
.idea/tasks.xml
# Gradle directory
.gradle
# OS
.DS_Store
See also
Favorite site
- Wikipedia (en) Android Studio
- Android Tools Project Site
- Android Tools Project Site: Gradle Plugin User Guide 1
- Android Studio Project Structure (v.s. Eclipse Project Structure) 2
- Android Studio를 배워보자 - (1) 주요 특징 및 빌드 시스템 3
- Android Studio를 배워보자 - (2) 라이브러리 프로젝트 생성, 참조하기 4