DevFest 2021 ComposeFest 코드랩 Repo 입니다

Related tags

App ComposeFest2021
Overview

ComposeFest2021

안녕하세요 Compose 코드랩에 오신걸 환영합니다.
다음은 코드랩을 진행하기 위한 안내입니다.

진행 일정

2021년 11월 1일 ~ 30일
매주 월요일 코드랩 진행을 돕기 위한 주요 설명 영상을 공개합니다.
👉 영상 보러가기

Compose 코드랩


준비물


Repo fork 하기

  1. Github 페이지 오른쪽 상단 위의 fork 클릭 compose_1

  2. fork 브랜치를 어디에 만들 것인지 묻는 팝업이 뜹니다. 신청서에 작성해주신 자신의 Github 계정을 선택해줍니다. compose_2

  3. fork 브랜치가 자신의 계정 아럐 생성되면 완료입니다. compose_3

  4. fork 브랜치는 main 브랜치에 영향을 주지 않습니다. 마음껏 코드랩을 진행해보세요!


코드랩 진행하기

  1. 자신의 fork 브랜치를 로컬로 가져오기 위해 원하는 위치에서 github 주소를 복사합니다. copy

    git clone 으로 fork 한 개인 브랜치를 로컬로 다운 받습니다.

    ~$ git clone https://github.com/gdgand(개인Github 아이디)/ComposeFest2021.git
    
  2. 일정 별 각 주차에 맞는 폴더 위치에서 코드랩을 진행합니다. (~/week 1,2,3,4/Compose .../XXXComposeCodelab)

    • 각 주차 별 시작할 수 있는 코드랩 코드가 주차 별로 포함되어 있습니다. 바로 열어서 코드랩을 시작하실 수 있습니다.
    • 다만, 새로 프로젝트를 생성해서 시작하는 경우에는 프로젝트 추가가 필요합니다. 해당 프로젝트는 아래의 두 개 입니다.
      1. 1주차 Jetpack Compose basics
      2. 2주차 Layouts in Jetpack Compose
        path
  3. 각각의 코드랩을 진행합니다. codelab

  4. 완성된 코드를 개인 fork 브랜치로 push해서 업데이트 합니다.

  5. 코드랩 수료확인을 위해 직접 진행한 코드 commit 히스토리를 꼭 남겨주세요!

매주 공개되는 자료 내 fork 브랜치로 땡겨오기

(메인 브랜치와 Sync 맞추는 방법)

  1. 현재 fork 한 remote 브랜치 확인
    $ git remote -v
    origin	https://github.com/YOUR_NAME/ComposeFest2021.git (fetch)
    origin	https://github.com/YOUR_NAME/ComposeFest2021.git (push)
    
  2. upstream 으로 gdgand 브랜치 추가하기
    $ git remote add upstream https://github.com/gdgand/ComposeFest2021.git
    
  3. 잘 추가되었는지 확인하기
    $ git remote -v
    origin	https://github.com/YOUR_NAME/ComposeFest2021.git (fetch)
    origin	https://github.com/YOUR_NAME/ComposeFest2021.git (push)
    upstream	https://github.com/gdgand/ComposeFest2021.git (fetch)
    upstream	https://github.com/gdgand/ComposeFest2021.git (push)
    
  4. 최신 업데이트 확인하기
    $ git fetch upstream 
    remote: Enumerating objects: 706, done.
    .. 이하 생략
    
  5. 내 remote fork 브랜치와 머지하기
    $ git merge upstream/main
    
  6. 변경사항 push 하기
    $ git push origin main
    
You might also like...
This repo provides a sample application that demonstrates how you can speed up the authentication experience for frontline workers on shared devices using QR codes.

Project This repo has been populated by an initial template to help get you started. Please make sure to update the content to build a great experienc

Chat is a sample project that presents a modern, 2021 approach to Android application development.
Chat is a sample project that presents a modern, 2021 approach to Android application development.

Chat for Android Chat is a sample project that presents a modern, 2021 approach to Android application development. Screenshots 📷

2021 Rookies 세미나
2021 Rookies 세미나

와플스튜디오 19.5기 Rookies Repository 세미나 수강 목록 19.5 기 세미나는 다음 학기 개발 프로젝트 참여 가능한 Programmers 양성을 목표로 합니다. Frontend: React - JavaScript Backend: Django - Pyt

ZeAppp v3, created by Android enthusiasts joining the Droidcon 2021 in Berlin, coming to the GDG Booth and writing code, 15 minutes at a time

ZeThree App build at the GDG Community booth at Droidcon Berlin 2021. Come join the fun™. ZeWhat? Based on the previous success of the ZeAppp-app, thi

Lab5-soa (deadline 2021-12-17)

Web Engineering 2021-2022 / SOA In this assignment your PR must only modify the README.md file. Please, go to the Wiki in order to get the instruction

Koltin solutions for the 2021 edition of AoC

AdventOfCode2021 This is the code developed for Advent of Code 2021. My primary goals are: have fun learn something new about Kotlin don't spend more

My solutions for Advent of Code 2021 puzzles, mainly using Kotlin.

Advent of Code 2021 Featuring Kotlin What's that ? https://adventofcode.com/2021/about Advent of Code is an Advent calendar of small programming puzzl

My solutions for Advent of Code 2021, written in Kotlin!

Advent-of-Code-2021 Welcome to the Advent of Code1 Kotlin project created by thijsboehme using the Advent of Code Kotlin Template delivered by JetBrai

Kotlin fun with Advent of Code 2021

aoc-kotlin Welcome to the Advent of Code1 Kotlin project created by dayanruben using the Advent of Code Kotlin Template delivered by JetBrains. In thi

Comments
  • Week3-3: Fix gradle task failed with androidTest

    Week3-3: Fix gradle task failed with androidTest

    Problem: Task :app:processDebugAndroidTestManifest FAILED /Users/wan/Study/ComposeFest2021/week 3-3-Jetpack Compose Navigation/app/build/intermediates/tmp/manifest/androidTest/debug/tempFile1ProcessTestManifest11754851143074730775.xml Error: android:exported needs to be explicitly specified for . Apps targeting Android 12 and higher are required to specify an explicit value for android:exported when the corresponding component has an intent filter defined. See https://developer.android.com/guide/topics/manifest/activity-element#exported for details. /Users/wan/Study/ComposeFest2021/week 3-3-Jetpack Compose Navigation/app/build/intermediates/tmp/manifest/androidTest/debug/tempFile1ProcessTestManifest11754851143074730775.xml Error: android:exported needs to be explicitly specified for . Apps targeting Android 12 and higher are required to specify an explicit value for android:exported when the corresponding component has an intent filter defined. See https://developer.android.com/guide/topics/manifest/activity-element#exported for details. /Users/wan/Study/ComposeFest2021/week 3-3-Jetpack Compose Navigation/app/build/intermediates/tmp/manifest/androidTest/debug/tempFile1ProcessTestManifest11754851143074730775.xml Error: android:exported needs to be explicitly specified for . Apps targeting Android 12 and higher are required to specify an explicit value for android:exported when the corresponding component has an intent filter defined. See https://developer.android.com/guide/topics/manifest/activity-element#exported for details.

    Solution: https://stackoverflow.com/questions/67654506/manifest-merger-failed-targeting-android-12

    opened by Wanjuuuuu 0
Owner
GDG Korea Android
GDG Korea Android
Github Repository Search 어플리케이션 입니다.

github-search ?? Introduction Github Search API 를 사용해서 검색된 레포지토리 리스트를 보여줍니다. EditText에서 텍스트를 입력하면 검색 API를 호출하고, debounce를 사용해서 호출 간격을 조절했습니다. 각 레포지토리는

null 2 Jan 25, 2022
My 2021 Advent of Code Repo - Kotlin this year!

?? Advent of Code 2021 This year I'll be solving the advent problems using Kotlin! ?? If you're interested in trying out Kotlin for AoC this year or e

Mark Alvaro 5 Nov 30, 2022
Solution to the 2021 Advent of code challenge in Kotlin. aoc-2021-in-kotlin

advent-of-code-2021 Welcome to the Advent of Code1 Kotlin project created by aniobistanley using the Advent of Code Kotlin Template delivered by JetBr

null 0 Dec 24, 2021
This repo contains example code for O'Reilly's "Programming Android" by Zigured Mednieks, Laird Dornin, Blake Meike and Masumi Nakamura

This repo contains working code for the example in O'Reilly's _Programming Android, 2nd Edition_; Mednieks, Dornin, Meike, Nakamura (http://shop.orei

G. Blake Meike 214 Nov 25, 2022
This repo contains example code for O'Reilly's "Programming Android" by Zigured Mednieks, Laird Dornin, Blake Meike and Masumi Nakamura

This repo contains working code for the example in O'Reilly's _Programming Android, 2nd Edition_; Mednieks, Dornin, Meike, Nakamura (http://shop.orei

G. Blake Meike 165 Nov 11, 2022
The official repo for Blokada for Android and iOS.

Blokada 5 Blokada 5 is the next generation of the well known open source mobile ad blocker and privacy app. Want to try it out? Click here to download

Blokada (ad blocker) 2.8k Jan 7, 2023
An Open-Source repository that contains all the Android Dev and Kotlin concepts and several projects on android ranging in difficulty making this repo completely beginner-friendly.

An Open-Source repository that contains all the Android Dev and Kotlin concepts and several projects on android ranging in difficulty making this repo completely beginner-friendly. The main aim of this repository is to help students who are learning Android Development or preparing for an Android Developer role-based job.

Mimo Patra 15 Dec 29, 2022
📺 A sample app to showcase Twyper with GitHub repo search API

swipe-search A sample app to showcase Twyper with GitHub repo search API ?? Demo Screen.Recording.2022-02-20.at.9.36.10.PM.mov ?? Tech Stack What How

theapache64 26 Jul 18, 2022
Github Repo Search Android App

Github Repo Search Android App Modular android app for searching trending Github repositories and the details of each repository.

mertselcukdemir 4 Mar 7, 2022
This repo contains sample mobile apps that implement contributor design pattern

This repo contains sample mobile apps that implement contributor design pattern. This design pattern was evolved to establish clean contracts for the developers and partners in Teams Mobile code base

Microsoft 3 Jan 6, 2023