Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#2 : 안드로이드 프로젝트 셋업 #4

Merged
merged 21 commits into from
Jun 16, 2024
Merged
Show file tree
Hide file tree
Changes from 12 commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
f91b26c
[CHORE]#2 : Create WeSpot Android Project
jeongjaino Jun 11, 2024
94c86bf
[CHORE]#2 : Version Catalog 구현 및 사용 종속성 및 플러그인 추가
jeongjaino Jun 11, 2024
8b7636a
[CHORE]#2 : Version Catalog androidx 관련 속성 추가
jeongjaino Jun 12, 2024
3eac8dc
[CHORE]#2 : Gradle Convention Plugins 구현
jeongjaino Jun 12, 2024
fb32284
[CHORE]#2 : app 모듈 파일 정리 및 종속성 설정
jeongjaino Jun 12, 2024
4264edc
[CHORE]#2 : project 단위 환경 설정 setting.gradle, gradle.properties
jeongjaino Jun 12, 2024
e75c601
[CHORE]#2 : app module lint format
jeongjaino Jun 12, 2024
1e6fc0d
[CHORE]#2 : data module 구성
jeongjaino Jun 12, 2024
b22a322
[CHORE]#2 : domain module 구성
jeongjaino Jun 12, 2024
cb94f0c
[CHORE]#2 : designsystem module 구성
jeongjaino Jun 12, 2024
27527f6
[CHORE]#2 : auth module 구성
jeongjaino Jun 12, 2024
d222038
[CHORE]#2 : model module 구성
jeongjaino Jun 12, 2024
c742be3
[CHORE]#2 : libs 함수 로컬 필드 -> 전역 변수 변경
jeongjaino Jun 15, 2024
5e36bd6
[CHORE]#2 : gradle plugin, commonExtensions 적용 및 각 라이브러리에 맞는 Extensio…
jeongjaino Jun 15, 2024
89f1d43
[CHORE]#2 : JVM Library Plugin 구현 및 domain, model 플러그인 적용
jeongjaino Jun 15, 2024
5c8bcfc
[CHORE]#2 : common, ui core 모듈 생성
jeongjaino Jun 15, 2024
9e4aa3c
[CHORE]#2 : JVM Plugin 생성
jeongjaino Jun 15, 2024
fe16696
[CHORE]#2 : Gradle Plguin, Version Catalog 등록 및 적용
jeongjaino Jun 15, 2024
2000594
[CHORE]#2 : gitignore 등록 및 idea 파일 삭제
jeongjaino Jun 15, 2024
c6316fb
[CHORE]#2 : formatting 수정
jeongjaino Jun 15, 2024
7a2b130
[CHORE]#2 : Module 간 의존 모듈 관계 설정
jeongjaino Jun 16, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
*.iml
.gradle
/local.properties
/.idea/caches
/.idea/libraries
/.idea/modules.xml
/.idea/workspace.xml
/.idea/navEditor.xml
/.idea/assetWizardSettings.xml
.DS_Store
/build
/captures
.externalNativeBuild
.cxx
local.properties
flash159483 marked this conversation as resolved.
Show resolved Hide resolved
3 changes: 3 additions & 0 deletions .idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions .idea/.name

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/compiler.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions .idea/deploymentTargetSelector.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

39 changes: 39 additions & 0 deletions .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/kotlinc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions .idea/migrations.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

263 changes: 263 additions & 0 deletions .idea/other.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions app/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/build
/google-services.json
Loading
Loading