diff --git a/7weeks/.gitignore b/7weeks/.gitignore
new file mode 100644
index 0000000..efaac43
--- /dev/null
+++ b/7weeks/.gitignore
@@ -0,0 +1,75 @@
+# OS files
+.DS_Store
+
+# Built application files
+*.apk
+*.ap_
+*.aab
+
+# Files for the ART/Dalvik VM
+*.dex
+
+# Java class files
+*.class
+
+# Generated files
+bin/
+gen/
+out/
+release/
+
+# Gradle files
+.gradle/
+build/
+
+# Local configuration file (sdk path, etc)
+local.properties
+
+# Proguard folder generated by Eclipse
+proguard/
+
+# Log Files
+*.log
+
+# Android Studio Navigation editor temp files
+.navigation/
+
+# Android Studio captures folder
+captures/
+
+# IntelliJ
+*.iml
+.idea
+
+# Keystore files
+# Uncomment the following lines if you do not want to check your keystore files in.
+#*.jks
+#*.keystore
+
+# External native build folder generated in Android Studio 2.2 and later
+.externalNativeBuild
+
+# Google Services (e.g. APIs or Firebase)
+# google-services.json
+
+# Freeline
+freeline.py
+freeline/
+freeline_project_description.json
+
+# fastlane
+fastlane/report.xml
+fastlane/Preview.html
+fastlane/screenshots
+fastlane/test_output
+fastlane/readme.md
+
+# Version control
+vcs.xml
+
+# lint
+lint/intermediates/
+lint/generated/
+lint/outputs/
+lint/tmp/
+# lint/reports/
diff --git a/7weeks/README.md b/7weeks/README.md
new file mode 100644
index 0000000..12d5885
--- /dev/null
+++ b/7weeks/README.md
@@ -0,0 +1,157 @@
+## ViewGroup
+
+- Android의 모든 위젯은 View를 상속하여 구현하고 있다.
+
+ 
+
+### 주요 ViewGroup 종류와 사용법
+
+#### LinearLayout
+
+- 명칭에서 알 수 있듯이 선형 모양의 레이아웃
+- `orientation` 이라는 필수 속성이 필요하며 지정하지 않을 경우 `horizontal` 이 기본
+
+```xml
+
+
+
+```
+
+#### RelativeLayout
+
+- 부모 또는 특정 View를 기준으로 특정 View의 상대 위치를 지정할 수 있는 레이아웃
+
+```xml
+
+
+
+
+
+
+
+```
+
+#### FrameLayout
+
+- 하나의 View 위젯을 표현하기 위한 레이아웃
+- 단, 레이아웃 하위에 여러 View 위젯을 추가할 순 있다.
+
+```xml
+
+
+
+
+
+```
+
+#### ConstraintLayout
+
+- 뷰와 뷰 사이에 제약조건을 설정하여 위젯을 배치하기 위한 레이아웃
+- 속성이 엄청나게 많습니다. ~~(알아서 찾아보세요...)~~
+
+```xml
+
+
+
+
+
+```
+
+### 주요 Widget 종류와 사용법
+
+#### RecyclerView
+
+- 기존의 ListView의 단점과 성능을 개선하여 제공되는 위젯
+- ViewHolder 패턴을 강제하여 아이템 View의 재사용성을 적극 활용한다.
+
+```xml
+
+```
+
+```kotlin
+fun setupRecyclerView() {
+ ExampleAdapter adapter = new ExampleAdapter()
+ LinearLayoutManager layoutManager = new LayoutManager(this)
+ with(exampleList) {
+ this.layoutManager = layoutManager
+ this.adapter = adpater
+ }
+}
+```
+
+```kotlin
+class ExampleAdapter : RecyclerView.Adapter() {
+ private var dataSet = mutableListOf()
+
+ fun addItems(items: List) {
+ dataSet.addAll(items)
+ notifyDataSetChanged()
+ }
+
+ fun updateItems(items: List) {
+ dataSet = items as MutableList
+ notifyDataSetChanged()
+ }
+
+ class ExampleHolder(val containerView: View) : RecyclerView.ViewHolder(view) {
+ // other code
+ }
+
+
+ abstract class LayoutContainerViewHolder(override val containerView: View) : RecyclerView.ViewHolder(containerView)
+
+ override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): ExampleHolder {
+ return ExampleHolder(
+ LayoutInflater.from(parent.context).inflate(R.layout.item_example, parent, false)
+ )
+ }
+
+ override fun onBindViewHolder(holder: ExampleHolder, position: Int) {
+ // otehr code...
+ }
+
+ override fun getItemCount(): Int = dataSet.size
+}
+```
+
+#### ViewPager
+
+- 스와이프 액션을 통해 화면을 이동하기 위한 위젯
+- ~~샘플 코드 귀찮아요...~~
+
+```xml
+
+```
+
diff --git a/7weeks/app/.gitignore b/7weeks/app/.gitignore
new file mode 100644
index 0000000..796b96d
--- /dev/null
+++ b/7weeks/app/.gitignore
@@ -0,0 +1 @@
+/build
diff --git a/7weeks/app/build.gradle b/7weeks/app/build.gradle
new file mode 100644
index 0000000..b95d92c
--- /dev/null
+++ b/7weeks/app/build.gradle
@@ -0,0 +1,45 @@
+apply plugin: 'com.android.application'
+apply plugin: 'kotlin-android'
+apply plugin: 'kotlin-android-extensions'
+
+android {
+ compileSdkVersion 28
+ buildToolsVersion "29.0.0"
+ defaultConfig {
+ applicationId "io.cro.example"
+ minSdkVersion 21
+ targetSdkVersion 28
+ versionCode 1
+ versionName "1.0"
+ testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
+ }
+ buildTypes {
+ release {
+ minifyEnabled false
+ proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
+ }
+ }
+}
+
+dependencies {
+ implementation fileTree(dir: 'libs', include: ['*.jar'])
+
+ implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
+
+ implementation 'androidx.core:core-ktx:1.0.2'
+ implementation 'androidx.appcompat:appcompat:1.0.2'
+ implementation 'androidx.cardview:cardview:1.0.0'
+ implementation 'androidx.recyclerview:recyclerview:1.0.0'
+ implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
+
+ implementation 'com.squareup.retrofit2:retrofit:2.6.1'
+ implementation 'com.squareup.retrofit2:converter-gson:2.6.1'
+
+ implementation 'com.google.code.gson:gson:2.8.5'
+
+ implementation 'com.jakewharton.timber:timber:4.7.1'
+
+ testImplementation 'junit:junit:4.12'
+ androidTestImplementation 'androidx.test:runner:1.2.0'
+ androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
+}
diff --git a/7weeks/app/proguard-rules.pro b/7weeks/app/proguard-rules.pro
new file mode 100644
index 0000000..f1b4245
--- /dev/null
+++ b/7weeks/app/proguard-rules.pro
@@ -0,0 +1,21 @@
+# Add project specific ProGuard rules here.
+# You can control the set of applied configuration files using the
+# proguardFiles setting in build.gradle.
+#
+# For more details, see
+# http://developer.android.com/guide/developing/tools/proguard.html
+
+# If your project uses WebView with JS, uncomment the following
+# and specify the fully qualified class name to the JavaScript interface
+# class:
+#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
+# public *;
+#}
+
+# Uncomment this to preserve the line number information for
+# debugging stack traces.
+#-keepattributes SourceFile,LineNumberTable
+
+# If you keep the line number information, uncomment this to
+# hide the original source file name.
+#-renamesourcefileattribute SourceFile
diff --git a/7weeks/app/src/androidTest/java/io/cro/example/ExampleInstrumentedTest.kt b/7weeks/app/src/androidTest/java/io/cro/example/ExampleInstrumentedTest.kt
new file mode 100644
index 0000000..7bd42e9
--- /dev/null
+++ b/7weeks/app/src/androidTest/java/io/cro/example/ExampleInstrumentedTest.kt
@@ -0,0 +1,24 @@
+package io.cro.example
+
+import androidx.test.InstrumentationRegistry
+import androidx.test.runner.AndroidJUnit4
+
+import org.junit.Test
+import org.junit.runner.RunWith
+
+import org.junit.Assert.*
+
+/**
+ * Instrumented test, which will execute on an Android device.
+ *
+ * See [testing documentation](http://d.android.com/tools/testing).
+ */
+@RunWith(AndroidJUnit4::class)
+class ExampleInstrumentedTest {
+ @Test
+ fun useAppContext() {
+ // Context of the app under test.
+ val appContext = InstrumentationRegistry.getTargetContext()
+ assertEquals("io.cro.example", appContext.packageName)
+ }
+}
diff --git a/7weeks/app/src/main/AndroidManifest.xml b/7weeks/app/src/main/AndroidManifest.xml
new file mode 100644
index 0000000..eacd824
--- /dev/null
+++ b/7weeks/app/src/main/AndroidManifest.xml
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/7weeks/app/src/main/java/io/cro/example/ExampleApplication.kt b/7weeks/app/src/main/java/io/cro/example/ExampleApplication.kt
new file mode 100644
index 0000000..b9b0ceb
--- /dev/null
+++ b/7weeks/app/src/main/java/io/cro/example/ExampleApplication.kt
@@ -0,0 +1,11 @@
+package io.cro.example
+
+import android.app.Application
+import timber.log.Timber
+
+class ExampleApplication : Application() {
+ override fun onCreate() {
+ super.onCreate()
+ Timber.plant(Timber.DebugTree())
+ }
+}
\ No newline at end of file
diff --git a/7weeks/app/src/main/java/io/cro/example/LegacyActivity.kt b/7weeks/app/src/main/java/io/cro/example/LegacyActivity.kt
new file mode 100644
index 0000000..212e907
--- /dev/null
+++ b/7weeks/app/src/main/java/io/cro/example/LegacyActivity.kt
@@ -0,0 +1,69 @@
+package io.cro.example
+
+import android.os.AsyncTask
+import android.os.Bundle
+import androidx.appcompat.app.AppCompatActivity
+import androidx.recyclerview.widget.LinearLayoutManager
+import com.google.gson.Gson
+import com.google.gson.reflect.TypeToken
+import io.cro.example.adapter.UserAdapter
+import kotlinx.android.synthetic.main.activity_legacy.*
+import timber.log.Timber
+import java.net.HttpURLConnection
+import java.net.URL
+
+class LegacyActivity : AppCompatActivity() {
+ private val adapter: UserAdapter by lazy { UserAdapter() }
+ private val layoutManager: LinearLayoutManager by lazy { LinearLayoutManager(this) }
+
+ override fun onCreate(savedInstanceState: Bundle?) {
+ super.onCreate(savedInstanceState)
+ setContentView(R.layout.activity_legacy)
+ setupRecyclerView()
+ }
+
+ private fun setupRecyclerView() {
+ with(userList) {
+ adapter = this@LegacyActivity.adapter
+ layoutManager = this@LegacyActivity.layoutManager
+ }
+
+ NetworkTask(adapter).execute("https://api.github.com/users")
+ }
+}
+
+class NetworkTask(private val adapter: UserAdapter) : AsyncTask>() {
+ override fun doInBackground(vararg params: String?): List? {
+ val url = URL(params[0])
+ var users: List? = null
+
+ with(url.openConnection() as HttpURLConnection) {
+ requestMethod = "GET"
+ setRequestProperty("Accept", "application/vnd.github.v3+json")
+
+ inputStream.bufferedReader().use {
+ val stringBuffer = StringBuffer()
+ var inputLine = it.readLine()
+ while (!inputLine.isNullOrEmpty()) {
+ stringBuffer.append(inputLine)
+ inputLine = it.readLine()
+ }
+
+ users = Gson().fromJson(
+ stringBuffer.toString(),
+ object : TypeToken>() {}.type
+ )
+ }
+ }
+
+ return users
+ }
+
+ override fun onPostExecute(result: List?) {
+ super.onPostExecute(result)
+ Timber.d("LEGACY::USERS::$result")
+ result?.let {
+ adapter.updateItem(it)
+ }
+ }
+}
diff --git a/7weeks/app/src/main/java/io/cro/example/MainActivity.kt b/7weeks/app/src/main/java/io/cro/example/MainActivity.kt
new file mode 100644
index 0000000..3e72a46
--- /dev/null
+++ b/7weeks/app/src/main/java/io/cro/example/MainActivity.kt
@@ -0,0 +1,26 @@
+package io.cro.example
+
+import android.content.Intent
+import android.os.Bundle
+import androidx.appcompat.app.AppCompatActivity
+import kotlinx.android.synthetic.main.activity_main.*
+
+class MainActivity : AppCompatActivity() {
+
+ override fun onCreate(savedInstanceState: Bundle?) {
+ super.onCreate(savedInstanceState)
+ setContentView(R.layout.activity_main)
+
+ legacyButton.setOnClickListener {
+ Intent(this, LegacyActivity::class.java).apply {
+ startActivity(this)
+ }
+ }
+
+ retrofitButton.setOnClickListener {
+ Intent(this, RetrofitActivity::class.java).apply {
+ startActivity(this)
+ }
+ }
+ }
+}
diff --git a/7weeks/app/src/main/java/io/cro/example/RetrofitActivity.kt b/7weeks/app/src/main/java/io/cro/example/RetrofitActivity.kt
new file mode 100644
index 0000000..6130578
--- /dev/null
+++ b/7weeks/app/src/main/java/io/cro/example/RetrofitActivity.kt
@@ -0,0 +1,92 @@
+package io.cro.example
+
+import android.os.Bundle
+import androidx.appcompat.app.AppCompatActivity
+import androidx.recyclerview.widget.LinearLayoutManager
+import io.cro.example.adapter.UserAdapter
+import kotlinx.android.synthetic.main.activity_legacy.*
+import okhttp3.Interceptor
+import okhttp3.OkHttpClient
+import okhttp3.Response
+import retrofit2.Call
+import retrofit2.Callback
+import retrofit2.Retrofit
+import retrofit2.converter.gson.GsonConverterFactory
+import retrofit2.http.GET
+import timber.log.Timber
+import java.io.IOException
+
+class RetrofitActivity : AppCompatActivity() {
+ private val retrofit: Retrofit by lazy {
+ Retrofit.Builder()
+ .baseUrl("https://api.github.com/")
+ .client(
+ OkHttpClient.Builder()
+ .addInterceptor(HttpHeaderInterceptor())
+ .build()
+ )
+ .addConverterFactory(GsonConverterFactory.create())
+ .build()
+ }
+
+ private val adapter: UserAdapter by lazy { UserAdapter() }
+ private val layoutManager: LinearLayoutManager by lazy { LinearLayoutManager(this) }
+
+ override fun onCreate(savedInstanceState: Bundle?) {
+ super.onCreate(savedInstanceState)
+ setContentView(R.layout.activity_retrofit)
+ setupRecyclerView()
+ }
+
+ private fun setupRecyclerView() {
+ with(userList) {
+ adapter = this@RetrofitActivity.adapter
+ layoutManager = this@RetrofitActivity.layoutManager
+ }
+
+ getUsers()
+ }
+
+ private fun getUsers() {
+ retrofit.create(GitHubApi::class.java)
+ .getUsers().enqueue(object : Callback> {
+ override fun onResponse(
+ call: Call>,
+ response: retrofit2.Response>
+ ) {
+ if (response.isSuccessful) {
+ response.body()?.let {
+ adapter.updateItem(it)
+ }
+ }
+ }
+
+ override fun onFailure(call: Call>, t: Throwable) {
+ Timber.e("RETROFIT::onFailure::${t.message}")
+ }
+ })
+ }
+}
+
+class HttpHeaderInterceptor: Interceptor {
+ @Throws(IOException::class)
+ override fun intercept(chain: Interceptor.Chain): Response {
+ val request = chain.request()
+ val requestBuilder = request.newBuilder().apply {
+ addHeader("Accept", "application/vnd.github.v3+json")
+ }
+
+ return chain.proceed(requestBuilder.build())
+ }
+
+ companion object {
+ private enum class Headers(val key: String, val value: String) {
+ ACCEPT("Accept", "application/vnd.github.v3+json");
+ }
+ }
+}
+
+interface GitHubApi {
+ @GET("/users")
+ fun getUsers(): Call>
+}
diff --git a/7weeks/app/src/main/java/io/cro/example/UserProfile.kt b/7weeks/app/src/main/java/io/cro/example/UserProfile.kt
new file mode 100644
index 0000000..4b08be0
--- /dev/null
+++ b/7weeks/app/src/main/java/io/cro/example/UserProfile.kt
@@ -0,0 +1,68 @@
+package io.cro.example
+
+import com.google.gson.annotations.SerializedName
+
+data class UserProfile(
+ @SerializedName("login")
+ val login: String = "",
+ @SerializedName("id")
+ val id: Int = 0,
+ @SerializedName("node_id")
+ val nodeId: String = "",
+ @SerializedName("avatar_url")
+ val avatarUrl: String = "",
+ @SerializedName("gravatar_id")
+ val gravatarId: String = "",
+ @SerializedName("url")
+ val url: String = "",
+ @SerializedName("html_url")
+ val htmlUrl: String = "",
+ @SerializedName("followers_url")
+ val followersUrl: String = "",
+ @SerializedName("following_url")
+ val followingUrl: String = "",
+ @SerializedName("gists_url")
+ val gistsUrl: String = "",
+ @SerializedName("starred_url")
+ val starredUrl: String = "",
+ @SerializedName("subscriptions_url")
+ val subscriptionsUrl: String = "",
+ @SerializedName("organizations_url")
+ val organizationsUrl: String = "",
+ @SerializedName("repos_url")
+ val reposUrl: String = "",
+ @SerializedName("events_url")
+ val eventsUrl: String = "",
+ @SerializedName("received_events_url")
+ val receivedEventsUrl: String = "",
+ @SerializedName("type")
+ val type: String = "",
+ @SerializedName("site_admin")
+ val siteAdmin: Boolean = false,
+ @SerializedName("name")
+ val name: String = "",
+ @SerializedName("company")
+ val company: String = "",
+ @SerializedName("blog")
+ val blog: String = "",
+ @SerializedName("location")
+ val location: String = "",
+ @SerializedName("email")
+ val email: String = "",
+ @SerializedName("hireable")
+ val hireable: Boolean = false,
+ @SerializedName("bio")
+ val bio: String = "",
+ @SerializedName("public_repos")
+ val publicRepos: Int = 0,
+ @SerializedName("public_gists")
+ val publicGists: Int = 0,
+ @SerializedName("followers")
+ val followers: Int = 0,
+ @SerializedName("following")
+ val following: Int = 0,
+ @SerializedName("created_at")
+ val createdAt: String = "",
+ @SerializedName("updated_at")
+ val updatedAt: String = ""
+)
\ No newline at end of file
diff --git a/7weeks/app/src/main/java/io/cro/example/adapter/UserAdapter.kt b/7weeks/app/src/main/java/io/cro/example/adapter/UserAdapter.kt
new file mode 100644
index 0000000..d0906f5
--- /dev/null
+++ b/7weeks/app/src/main/java/io/cro/example/adapter/UserAdapter.kt
@@ -0,0 +1,34 @@
+package io.cro.example.adapter
+
+import android.view.LayoutInflater
+import android.view.View
+import android.view.ViewGroup
+import androidx.recyclerview.widget.RecyclerView
+import io.cro.example.R
+import io.cro.example.UserProfile
+import kotlinx.android.extensions.LayoutContainer
+import kotlinx.android.synthetic.main.item_user.view.*
+
+class UserAdapter : RecyclerView.Adapter() {
+ private var dataSet = mutableListOf()
+
+ fun updateItem(dataSet: List) {
+ this.dataSet = dataSet as MutableList
+ notifyDataSetChanged()
+ }
+
+ override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): UserViewHolder =
+ UserViewHolder(LayoutInflater.from(parent.context).inflate(R.layout.item_user, parent, false))
+
+ override fun onBindViewHolder(holder: UserViewHolder, position: Int) {
+ holder.bindTo(dataSet[position])
+ }
+
+ override fun getItemCount(): Int = dataSet.size
+}
+
+class UserViewHolder(override val containerView: View) : RecyclerView.ViewHolder(containerView), LayoutContainer {
+ fun bindTo(data: UserProfile) {
+ itemView.nameTextView.text = data.login
+ }
+}
\ No newline at end of file
diff --git a/7weeks/app/src/main/res/drawable-v24/ic_launcher_foreground.xml b/7weeks/app/src/main/res/drawable-v24/ic_launcher_foreground.xml
new file mode 100644
index 0000000..1f6bb29
--- /dev/null
+++ b/7weeks/app/src/main/res/drawable-v24/ic_launcher_foreground.xml
@@ -0,0 +1,34 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/7weeks/app/src/main/res/drawable/ic_launcher_background.xml b/7weeks/app/src/main/res/drawable/ic_launcher_background.xml
new file mode 100644
index 0000000..0d025f9
--- /dev/null
+++ b/7weeks/app/src/main/res/drawable/ic_launcher_background.xml
@@ -0,0 +1,170 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/7weeks/app/src/main/res/layout/activity_legacy.xml b/7weeks/app/src/main/res/layout/activity_legacy.xml
new file mode 100644
index 0000000..ba00dbd
--- /dev/null
+++ b/7weeks/app/src/main/res/layout/activity_legacy.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/7weeks/app/src/main/res/layout/activity_main.xml b/7weeks/app/src/main/res/layout/activity_main.xml
new file mode 100644
index 0000000..b51028c
--- /dev/null
+++ b/7weeks/app/src/main/res/layout/activity_main.xml
@@ -0,0 +1,32 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/7weeks/app/src/main/res/layout/activity_retrofit.xml b/7weeks/app/src/main/res/layout/activity_retrofit.xml
new file mode 100644
index 0000000..ba00dbd
--- /dev/null
+++ b/7weeks/app/src/main/res/layout/activity_retrofit.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/7weeks/app/src/main/res/layout/item_user.xml b/7weeks/app/src/main/res/layout/item_user.xml
new file mode 100644
index 0000000..b3b0c0f
--- /dev/null
+++ b/7weeks/app/src/main/res/layout/item_user.xml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/7weeks/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml b/7weeks/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml
new file mode 100644
index 0000000..eca70cf
--- /dev/null
+++ b/7weeks/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/7weeks/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml b/7weeks/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml
new file mode 100644
index 0000000..eca70cf
--- /dev/null
+++ b/7weeks/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/7weeks/app/src/main/res/mipmap-hdpi/ic_launcher.png b/7weeks/app/src/main/res/mipmap-hdpi/ic_launcher.png
new file mode 100644
index 0000000..898f3ed
Binary files /dev/null and b/7weeks/app/src/main/res/mipmap-hdpi/ic_launcher.png differ
diff --git a/7weeks/app/src/main/res/mipmap-hdpi/ic_launcher_round.png b/7weeks/app/src/main/res/mipmap-hdpi/ic_launcher_round.png
new file mode 100644
index 0000000..dffca36
Binary files /dev/null and b/7weeks/app/src/main/res/mipmap-hdpi/ic_launcher_round.png differ
diff --git a/7weeks/app/src/main/res/mipmap-mdpi/ic_launcher.png b/7weeks/app/src/main/res/mipmap-mdpi/ic_launcher.png
new file mode 100644
index 0000000..64ba76f
Binary files /dev/null and b/7weeks/app/src/main/res/mipmap-mdpi/ic_launcher.png differ
diff --git a/7weeks/app/src/main/res/mipmap-mdpi/ic_launcher_round.png b/7weeks/app/src/main/res/mipmap-mdpi/ic_launcher_round.png
new file mode 100644
index 0000000..dae5e08
Binary files /dev/null and b/7weeks/app/src/main/res/mipmap-mdpi/ic_launcher_round.png differ
diff --git a/7weeks/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/7weeks/app/src/main/res/mipmap-xhdpi/ic_launcher.png
new file mode 100644
index 0000000..e5ed465
Binary files /dev/null and b/7weeks/app/src/main/res/mipmap-xhdpi/ic_launcher.png differ
diff --git a/7weeks/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png b/7weeks/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png
new file mode 100644
index 0000000..14ed0af
Binary files /dev/null and b/7weeks/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png differ
diff --git a/7weeks/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/7weeks/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
new file mode 100644
index 0000000..b0907ca
Binary files /dev/null and b/7weeks/app/src/main/res/mipmap-xxhdpi/ic_launcher.png differ
diff --git a/7weeks/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png b/7weeks/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png
new file mode 100644
index 0000000..d8ae031
Binary files /dev/null and b/7weeks/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png differ
diff --git a/7weeks/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/7weeks/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
new file mode 100644
index 0000000..2c18de9
Binary files /dev/null and b/7weeks/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png differ
diff --git a/7weeks/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png b/7weeks/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png
new file mode 100644
index 0000000..beed3cd
Binary files /dev/null and b/7weeks/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png differ
diff --git a/7weeks/app/src/main/res/values/colors.xml b/7weeks/app/src/main/res/values/colors.xml
new file mode 100644
index 0000000..69b2233
--- /dev/null
+++ b/7weeks/app/src/main/res/values/colors.xml
@@ -0,0 +1,6 @@
+
+
+ #008577
+ #00574B
+ #D81B60
+
diff --git a/7weeks/app/src/main/res/values/strings.xml b/7weeks/app/src/main/res/values/strings.xml
new file mode 100644
index 0000000..0057fcb
--- /dev/null
+++ b/7weeks/app/src/main/res/values/strings.xml
@@ -0,0 +1,3 @@
+
+ Example
+
diff --git a/7weeks/app/src/main/res/values/styles.xml b/7weeks/app/src/main/res/values/styles.xml
new file mode 100644
index 0000000..5885930
--- /dev/null
+++ b/7weeks/app/src/main/res/values/styles.xml
@@ -0,0 +1,11 @@
+
+
+
+
+
+
diff --git a/7weeks/app/src/main/res/xml/network_security_config.xml b/7weeks/app/src/main/res/xml/network_security_config.xml
new file mode 100644
index 0000000..dca93c0
--- /dev/null
+++ b/7weeks/app/src/main/res/xml/network_security_config.xml
@@ -0,0 +1,4 @@
+
+
+
+
\ No newline at end of file
diff --git a/7weeks/app/src/test/java/io/cro/example/ExampleUnitTest.kt b/7weeks/app/src/test/java/io/cro/example/ExampleUnitTest.kt
new file mode 100644
index 0000000..cc2c895
--- /dev/null
+++ b/7weeks/app/src/test/java/io/cro/example/ExampleUnitTest.kt
@@ -0,0 +1,17 @@
+package io.cro.example
+
+import org.junit.Test
+
+import org.junit.Assert.*
+
+/**
+ * Example local unit test, which will execute on the development machine (host).
+ *
+ * See [testing documentation](http://d.android.com/tools/testing).
+ */
+class ExampleUnitTest {
+ @Test
+ fun addition_isCorrect() {
+ assertEquals(4, 2 + 2)
+ }
+}
diff --git a/7weeks/build.gradle b/7weeks/build.gradle
new file mode 100644
index 0000000..b39ac10
--- /dev/null
+++ b/7weeks/build.gradle
@@ -0,0 +1,28 @@
+// Top-level build file where you can add configuration options common to all sub-projects/modules.
+
+buildscript {
+ ext.kotlin_version = '1.3.31'
+ repositories {
+ google()
+ jcenter()
+
+ }
+ dependencies {
+ classpath 'com.android.tools.build:gradle:3.4.1'
+ classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
+ // NOTE: Do not place your application dependencies here; they belong
+ // in the individual module build.gradle files
+ }
+}
+
+allprojects {
+ repositories {
+ google()
+ jcenter()
+
+ }
+}
+
+task clean(type: Delete) {
+ delete rootProject.buildDir
+}
diff --git a/7weeks/gradle.properties b/7weeks/gradle.properties
new file mode 100644
index 0000000..23339e0
--- /dev/null
+++ b/7weeks/gradle.properties
@@ -0,0 +1,21 @@
+# Project-wide Gradle settings.
+# IDE (e.g. Android Studio) users:
+# Gradle settings configured through the IDE *will override*
+# any settings specified in this file.
+# For more details on how to configure your build environment visit
+# http://www.gradle.org/docs/current/userguide/build_environment.html
+# Specifies the JVM arguments used for the daemon process.
+# The setting is particularly useful for tweaking memory settings.
+org.gradle.jvmargs=-Xmx1536m
+# When configured, Gradle will run in incubating parallel mode.
+# This option should only be used with decoupled projects. More details, visit
+# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
+# org.gradle.parallel=true
+# AndroidX package structure to make it clearer which packages are bundled with the
+# Android operating system, and which are packaged with your app's APK
+# https://developer.android.com/topic/libraries/support-library/androidx-rn
+android.useAndroidX=true
+# Automatically convert third-party libraries to use AndroidX
+android.enableJetifier=true
+# Kotlin code style for this project: "official" or "obsolete":
+kotlin.code.style=official
diff --git a/7weeks/gradle/wrapper/gradle-wrapper.jar b/7weeks/gradle/wrapper/gradle-wrapper.jar
new file mode 100644
index 0000000..f6b961f
Binary files /dev/null and b/7weeks/gradle/wrapper/gradle-wrapper.jar differ
diff --git a/7weeks/gradle/wrapper/gradle-wrapper.properties b/7weeks/gradle/wrapper/gradle-wrapper.properties
new file mode 100644
index 0000000..1f722c9
--- /dev/null
+++ b/7weeks/gradle/wrapper/gradle-wrapper.properties
@@ -0,0 +1,6 @@
+#Sun Aug 18 16:11:01 KST 2019
+distributionBase=GRADLE_USER_HOME
+distributionPath=wrapper/dists
+zipStoreBase=GRADLE_USER_HOME
+zipStorePath=wrapper/dists
+distributionUrl=https\://services.gradle.org/distributions/gradle-5.1.1-all.zip
diff --git a/7weeks/gradlew b/7weeks/gradlew
new file mode 100755
index 0000000..cccdd3d
--- /dev/null
+++ b/7weeks/gradlew
@@ -0,0 +1,172 @@
+#!/usr/bin/env sh
+
+##############################################################################
+##
+## Gradle start up script for UN*X
+##
+##############################################################################
+
+# Attempt to set APP_HOME
+# Resolve links: $0 may be a link
+PRG="$0"
+# Need this for relative symlinks.
+while [ -h "$PRG" ] ; do
+ ls=`ls -ld "$PRG"`
+ link=`expr "$ls" : '.*-> \(.*\)$'`
+ if expr "$link" : '/.*' > /dev/null; then
+ PRG="$link"
+ else
+ PRG=`dirname "$PRG"`"/$link"
+ fi
+done
+SAVED="`pwd`"
+cd "`dirname \"$PRG\"`/" >/dev/null
+APP_HOME="`pwd -P`"
+cd "$SAVED" >/dev/null
+
+APP_NAME="Gradle"
+APP_BASE_NAME=`basename "$0"`
+
+# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
+DEFAULT_JVM_OPTS=""
+
+# Use the maximum available, or set MAX_FD != -1 to use that value.
+MAX_FD="maximum"
+
+warn () {
+ echo "$*"
+}
+
+die () {
+ echo
+ echo "$*"
+ echo
+ exit 1
+}
+
+# OS specific support (must be 'true' or 'false').
+cygwin=false
+msys=false
+darwin=false
+nonstop=false
+case "`uname`" in
+ CYGWIN* )
+ cygwin=true
+ ;;
+ Darwin* )
+ darwin=true
+ ;;
+ MINGW* )
+ msys=true
+ ;;
+ NONSTOP* )
+ nonstop=true
+ ;;
+esac
+
+CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
+
+# Determine the Java command to use to start the JVM.
+if [ -n "$JAVA_HOME" ] ; then
+ if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
+ # IBM's JDK on AIX uses strange locations for the executables
+ JAVACMD="$JAVA_HOME/jre/sh/java"
+ else
+ JAVACMD="$JAVA_HOME/bin/java"
+ fi
+ if [ ! -x "$JAVACMD" ] ; then
+ die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
+
+Please set the JAVA_HOME variable in your environment to match the
+location of your Java installation."
+ fi
+else
+ JAVACMD="java"
+ which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
+
+Please set the JAVA_HOME variable in your environment to match the
+location of your Java installation."
+fi
+
+# Increase the maximum file descriptors if we can.
+if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then
+ MAX_FD_LIMIT=`ulimit -H -n`
+ if [ $? -eq 0 ] ; then
+ if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
+ MAX_FD="$MAX_FD_LIMIT"
+ fi
+ ulimit -n $MAX_FD
+ if [ $? -ne 0 ] ; then
+ warn "Could not set maximum file descriptor limit: $MAX_FD"
+ fi
+ else
+ warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
+ fi
+fi
+
+# For Darwin, add options to specify how the application appears in the dock
+if $darwin; then
+ GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
+fi
+
+# For Cygwin, switch paths to Windows format before running java
+if $cygwin ; then
+ APP_HOME=`cygpath --path --mixed "$APP_HOME"`
+ CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
+ JAVACMD=`cygpath --unix "$JAVACMD"`
+
+ # We build the pattern for arguments to be converted via cygpath
+ ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
+ SEP=""
+ for dir in $ROOTDIRSRAW ; do
+ ROOTDIRS="$ROOTDIRS$SEP$dir"
+ SEP="|"
+ done
+ OURCYGPATTERN="(^($ROOTDIRS))"
+ # Add a user-defined pattern to the cygpath arguments
+ if [ "$GRADLE_CYGPATTERN" != "" ] ; then
+ OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
+ fi
+ # Now convert the arguments - kludge to limit ourselves to /bin/sh
+ i=0
+ for arg in "$@" ; do
+ CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
+ CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
+
+ if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
+ eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
+ else
+ eval `echo args$i`="\"$arg\""
+ fi
+ i=$((i+1))
+ done
+ case $i in
+ (0) set -- ;;
+ (1) set -- "$args0" ;;
+ (2) set -- "$args0" "$args1" ;;
+ (3) set -- "$args0" "$args1" "$args2" ;;
+ (4) set -- "$args0" "$args1" "$args2" "$args3" ;;
+ (5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
+ (6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
+ (7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
+ (8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
+ (9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
+ esac
+fi
+
+# Escape application args
+save () {
+ for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
+ echo " "
+}
+APP_ARGS=$(save "$@")
+
+# Collect all arguments for the java command, following the shell quoting and substitution rules
+eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS"
+
+# by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong
+if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then
+ cd "$(dirname "$0")"
+fi
+
+exec "$JAVACMD" "$@"
diff --git a/7weeks/gradlew.bat b/7weeks/gradlew.bat
new file mode 100644
index 0000000..e95643d
--- /dev/null
+++ b/7weeks/gradlew.bat
@@ -0,0 +1,84 @@
+@if "%DEBUG%" == "" @echo off
+@rem ##########################################################################
+@rem
+@rem Gradle startup script for Windows
+@rem
+@rem ##########################################################################
+
+@rem Set local scope for the variables with windows NT shell
+if "%OS%"=="Windows_NT" setlocal
+
+set DIRNAME=%~dp0
+if "%DIRNAME%" == "" set DIRNAME=.
+set APP_BASE_NAME=%~n0
+set APP_HOME=%DIRNAME%
+
+@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
+set DEFAULT_JVM_OPTS=
+
+@rem Find java.exe
+if defined JAVA_HOME goto findJavaFromJavaHome
+
+set JAVA_EXE=java.exe
+%JAVA_EXE% -version >NUL 2>&1
+if "%ERRORLEVEL%" == "0" goto init
+
+echo.
+echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
+echo.
+echo Please set the JAVA_HOME variable in your environment to match the
+echo location of your Java installation.
+
+goto fail
+
+:findJavaFromJavaHome
+set JAVA_HOME=%JAVA_HOME:"=%
+set JAVA_EXE=%JAVA_HOME%/bin/java.exe
+
+if exist "%JAVA_EXE%" goto init
+
+echo.
+echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
+echo.
+echo Please set the JAVA_HOME variable in your environment to match the
+echo location of your Java installation.
+
+goto fail
+
+:init
+@rem Get command-line arguments, handling Windows variants
+
+if not "%OS%" == "Windows_NT" goto win9xME_args
+
+:win9xME_args
+@rem Slurp the command line arguments.
+set CMD_LINE_ARGS=
+set _SKIP=2
+
+:win9xME_args_slurp
+if "x%~1" == "x" goto execute
+
+set CMD_LINE_ARGS=%*
+
+:execute
+@rem Setup the command line
+
+set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
+
+@rem Execute Gradle
+"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS%
+
+:end
+@rem End local scope for the variables with windows NT shell
+if "%ERRORLEVEL%"=="0" goto mainEnd
+
+:fail
+rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
+rem the _cmd.exe /c_ return code!
+if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
+exit /b 1
+
+:mainEnd
+if "%OS%"=="Windows_NT" endlocal
+
+:omega
diff --git a/7weeks/settings.gradle b/7weeks/settings.gradle
new file mode 100644
index 0000000..e7b4def
--- /dev/null
+++ b/7weeks/settings.gradle
@@ -0,0 +1 @@
+include ':app'