├── Activity 관련 ├── Activity And Intent - Summary.md ├── Activity Lifecycle.md ├── Intent 관련 │ ├── Explicitlntent │ │ ├── .gitignore │ │ ├── .idea │ │ │ ├── caches │ │ │ │ └── build_file_checksums.ser │ │ │ ├── codeStyles │ │ │ │ └── Project.xml │ │ │ ├── gradle.xml │ │ │ ├── misc.xml │ │ │ └── runConfigurations.xml │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ ├── androidTest │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── dsm2018 │ │ │ │ │ └── explicitlntent │ │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ │ └── com │ │ │ │ │ │ └── example │ │ │ │ │ │ └── dsm2018 │ │ │ │ │ │ └── explicitlntent │ │ │ │ │ │ ├── ActivityA.java │ │ │ │ │ │ └── ActivityB.java │ │ │ │ └── res │ │ │ │ │ ├── drawable-v24 │ │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ │ ├── drawable │ │ │ │ │ └── ic_launcher_background.xml │ │ │ │ │ ├── layout │ │ │ │ │ ├── activity_a.xml │ │ │ │ │ └── activity_b.xml │ │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ │ ├── ic_launcher.xml │ │ │ │ │ └── ic_launcher_round.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ └── values │ │ │ │ │ ├── colors.xml │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── dsm2018 │ │ │ │ └── explicitlntent │ │ │ │ └── ExampleUnitTest.java │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ ├── ImplicitIntent │ │ ├── .gitignore │ │ ├── .idea │ │ │ ├── caches │ │ │ │ └── build_file_checksums.ser │ │ │ ├── codeStyles │ │ │ │ └── Project.xml │ │ │ ├── gradle.xml │ │ │ ├── misc.xml │ │ │ └── runConfigurations.xml │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ ├── androidTest │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── dsm2018 │ │ │ │ │ └── implicitintent │ │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ │ └── com │ │ │ │ │ │ └── example │ │ │ │ │ │ └── dsm2018 │ │ │ │ │ │ └── implicitintent │ │ │ │ │ │ └── ImplicitIntentActivity.java │ │ │ │ └── res │ │ │ │ │ ├── drawable-v24 │ │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ │ ├── drawable │ │ │ │ │ └── ic_launcher_background.xml │ │ │ │ │ ├── layout │ │ │ │ │ └── activity_implicit_intent.xml │ │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ │ ├── ic_launcher.xml │ │ │ │ │ └── ic_launcher_round.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ └── values │ │ │ │ │ ├── colors.xml │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── dsm2018 │ │ │ │ └── implicitintent │ │ │ │ └── ExampleUnitTest.java │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ ├── MYBroadcastReceiver │ │ ├── .gitignore │ │ ├── .idea │ │ │ ├── caches │ │ │ │ └── build_file_checksums.ser │ │ │ ├── codeStyles │ │ │ │ └── Project.xml │ │ │ ├── gradle.xml │ │ │ ├── misc.xml │ │ │ └── runConfigurations.xml │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ ├── androidTest │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── dsm2018 │ │ │ │ │ └── mybroadcastreceiver │ │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ │ └── com │ │ │ │ │ │ └── example │ │ │ │ │ │ └── dsm2018 │ │ │ │ │ │ └── mybroadcastreceiver │ │ │ │ │ │ └── MyReceiver.java │ │ │ │ └── res │ │ │ │ │ ├── drawable-v24 │ │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ │ ├── drawable │ │ │ │ │ └── ic_launcher_background.xml │ │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ │ ├── ic_launcher.xml │ │ │ │ │ └── ic_launcher_round.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ └── values │ │ │ │ │ ├── colors.xml │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── dsm2018 │ │ │ │ └── mybroadcastreceiver │ │ │ │ └── ExampleUnitTest.java │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ ├── MyWebVIew │ │ ├── .gitignore │ │ ├── .idea │ │ │ ├── caches │ │ │ │ └── build_file_checksums.ser │ │ │ ├── codeStyles │ │ │ │ └── Project.xml │ │ │ ├── gradle.xml │ │ │ ├── misc.xml │ │ │ └── runConfigurations.xml │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ ├── androidTest │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── dsm2018 │ │ │ │ │ └── mywebview │ │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ │ └── com │ │ │ │ │ │ └── example │ │ │ │ │ │ └── dsm2018 │ │ │ │ │ │ └── mywebview │ │ │ │ │ │ └── MyWebViewActivity.java │ │ │ │ └── res │ │ │ │ │ ├── drawable-v24 │ │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ │ ├── drawable │ │ │ │ │ └── ic_launcher_background.xml │ │ │ │ │ ├── layout │ │ │ │ │ └── activity_my_web_view.xml │ │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ │ ├── ic_launcher.xml │ │ │ │ │ └── ic_launcher_round.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ └── values │ │ │ │ │ ├── colors.xml │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── dsm2018 │ │ │ │ └── mywebview │ │ │ │ └── ExampleUnitTest.java │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ └── SendBroadcast │ │ ├── .gitignore │ │ ├── .idea │ │ ├── caches │ │ │ └── build_file_checksums.ser │ │ ├── codeStyles │ │ │ └── Project.xml │ │ ├── dictionaries │ │ │ └── DSM2018.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ └── runConfigurations.xml │ │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── dsm2018 │ │ │ │ └── sendbroadcast │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── dsm2018 │ │ │ │ │ └── sendbroadcast │ │ │ │ │ └── SendBroadcastActivity.java │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ └── activity_send_broadcast.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── dsm2018 │ │ │ └── sendbroadcast │ │ │ └── ExampleUnitTest.java │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle ├── MasterDetailFlow │ ├── .gitignore │ ├── .idea │ │ ├── caches │ │ │ └── build_file_checksums.ser │ │ ├── codeStyles │ │ │ └── Project.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ └── runConfigurations.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── dsm2018 │ │ │ │ └── masterdetailflow │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── dsm2018 │ │ │ │ │ └── masterdetailflow │ │ │ │ │ ├── WebsiteDetailActivity.java │ │ │ │ │ ├── WebsiteDetailFragment.java │ │ │ │ │ ├── WebsiteListActivity.java │ │ │ │ │ └── dummy │ │ │ │ │ └── DummyContent.java │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout-w900dp │ │ │ │ └── website_list.xml │ │ │ │ ├── layout │ │ │ │ ├── activity_website_detail.xml │ │ │ │ ├── activity_website_list.xml │ │ │ │ ├── website_detail.xml │ │ │ │ ├── website_list.xml │ │ │ │ └── website_list_content.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── dimens.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── dsm2018 │ │ │ └── masterdetailflow │ │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle └── NavDrawerDemo │ ├── .gitignore │ ├── .idea │ ├── caches │ │ └── build_file_checksums.ser │ ├── codeStyles │ │ └── Project.xml │ ├── gradle.xml │ ├── misc.xml │ └── runConfigurations.xml │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── dsm2018 │ │ │ └── navdrawerdemo │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── dsm2018 │ │ │ │ └── navdrawerdemo │ │ │ │ └── NavDrawerActivity.java │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ ├── ic_launcher_background.xml │ │ │ ├── ic_menu_camera.xml │ │ │ ├── ic_menu_gallery.xml │ │ │ ├── ic_menu_manage.xml │ │ │ ├── ic_menu_send.xml │ │ │ ├── ic_menu_share.xml │ │ │ ├── ic_menu_slideshow.xml │ │ │ └── side_nav_bar.xml │ │ │ ├── layout │ │ │ ├── activity_nav_drawer.xml │ │ │ ├── app_bar_nav_drawer.xml │ │ │ ├── content_nav_drawer.xml │ │ │ └── nav_header_nav_drawer.xml │ │ │ ├── menu │ │ │ ├── activity_nav_drawer_drawer.xml │ │ │ └── nav_drawer.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── values-v21 │ │ │ └── styles.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── dsm2018 │ │ └── navdrawerdemo │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Android Database 관련 ├── Database │ ├── .gitignore │ ├── .idea │ │ ├── caches │ │ │ └── build_file_checksums.ser │ │ ├── codeStyles │ │ │ └── Project.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ └── runConfigurations.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── dsm2018 │ │ │ │ └── database │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── dsm2018 │ │ │ │ │ └── database │ │ │ │ │ ├── DatabaseActivity.java │ │ │ │ │ ├── MyDBHandler.java │ │ │ │ │ └── Product.java │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ └── activity_database.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── dsm2018 │ │ │ └── database │ │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle └── Provider │ └── Database │ ├── .gitignore │ ├── .idea │ ├── caches │ │ └── build_file_checksums.ser │ ├── codeStyles │ │ └── Project.xml │ ├── gradle.xml │ ├── misc.xml │ └── runConfigurations.xml │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── dsm2018 │ │ │ └── database │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── dsm2018 │ │ │ │ └── database │ │ │ │ ├── DatabaseActivity.java │ │ │ │ ├── MyContentProvider.java │ │ │ │ ├── MyDBHandler.java │ │ │ │ └── Product.java │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ └── activity_database.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── dsm2018 │ │ └── database │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Android Service 관련 ├── AudioApp │ ├── .gitignore │ ├── .idea │ │ ├── caches │ │ │ └── build_file_checksums.ser │ │ ├── codeStyles │ │ │ └── Project.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ └── runConfigurations.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── dsm2018 │ │ │ │ └── audioapp │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── dsm2018 │ │ │ │ │ └── audioapp │ │ │ │ │ └── AudioAppActivity.java │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ └── activity_audio_app.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── dsm2018 │ │ │ └── audioapp │ │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── CustomPrint │ ├── .gitignore │ ├── .idea │ │ ├── caches │ │ │ └── build_file_checksums.ser │ │ ├── codeStyles │ │ │ └── Project.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ └── runConfigurations.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── dsm2018 │ │ │ │ └── customprint │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── dsm2018 │ │ │ │ │ └── customprint │ │ │ │ │ └── CustomPrintActivity.java │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ └── activity_custom_print.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── dsm2018 │ │ │ └── customprint │ │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── FingerprintDemo │ ├── .gitignore │ ├── .idea │ │ ├── caches │ │ │ └── build_file_checksums.ser │ │ ├── codeStyles │ │ │ └── Project.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ └── runConfigurations.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── dsm2018 │ │ │ │ └── fingerprintdemo │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── dsm2018 │ │ │ │ │ └── fingerprintdemo │ │ │ │ │ ├── FingerprintDemoActivity.java │ │ │ │ │ └── FingerprintHandler.java │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ ├── ic_fp_40px.png │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ └── activity_fingerprint_demo.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── dsm2018 │ │ │ └── fingerprintdemo │ │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── FirebaseNotify │ ├── .gitignore │ ├── .idea │ │ ├── caches │ │ │ └── build_file_checksums.ser │ │ ├── codeStyles │ │ │ └── Project.xml │ │ ├── gradle.xml │ │ └── misc.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── google-services.json │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── dsm2018 │ │ │ │ └── firebasenotify │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── dsm2018 │ │ │ │ │ └── firebasenotify │ │ │ │ │ ├── FirebaseNotifyActivity.java │ │ │ │ │ └── MyFBMessageService.java │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ └── activity_firebase_notify.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── dsm2018 │ │ │ └── firebasenotify │ │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── HTMLPrint │ ├── .gitignore │ ├── .idea │ │ ├── caches │ │ │ └── build_file_checksums.ser │ │ ├── codeStyles │ │ │ └── Project.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ └── runConfigurations.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── dsm2018 │ │ │ │ └── htmlprint │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── dsm2018 │ │ │ │ │ └── htmlprint │ │ │ │ │ └── HTMLPrintActivity.java │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ └── activity_html_print.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── dsm2018 │ │ │ └── htmlprint │ │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── LocalBound │ ├── .gitignore │ ├── .idea │ │ ├── caches │ │ │ └── build_file_checksums.ser │ │ ├── codeStyles │ │ │ └── Project.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ └── runConfigurations.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── dsm2018 │ │ │ │ └── localbound │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── dsm2018 │ │ │ │ │ └── localbound │ │ │ │ │ ├── BoundService.java │ │ │ │ │ └── LocalBoundActivity.java │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ └── activity_local_bound.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── dsm2018 │ │ │ └── localbound │ │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── MapDemo │ ├── .gitignore │ ├── .idea │ │ ├── caches │ │ │ └── build_file_checksums.ser │ │ ├── codeStyles │ │ │ └── Project.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ └── runConfigurations.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── dsm2018 │ │ │ │ └── mapdemo │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── debug │ │ │ └── res │ │ │ │ └── values │ │ │ │ └── google_maps_api.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── dsm2018 │ │ │ │ │ └── mapdemo │ │ │ │ │ └── MapDemoActivity.java │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ └── activity_map_demo.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ ├── release │ │ │ └── res │ │ │ │ └── values │ │ │ │ └── google_maps_api.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── dsm2018 │ │ │ └── mapdemo │ │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── MultiWindow │ ├── .gitignore │ ├── .idea │ │ ├── caches │ │ │ └── build_file_checksums.ser │ │ ├── codeStyles │ │ │ └── Project.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ └── runConfigurations.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── dsm2018 │ │ │ │ └── multiwindow │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── dsm2018 │ │ │ │ │ └── multiwindow │ │ │ │ │ ├── FirstActivity.java │ │ │ │ │ └── SecondActivity.java │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ ├── activity_first.xml │ │ │ │ └── activity_second.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── dsm2018 │ │ │ └── multiwindow │ │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Notification 관련 │ ├── DirectReply │ │ ├── .gitignore │ │ ├── .idea │ │ │ ├── caches │ │ │ │ └── build_file_checksums.ser │ │ │ ├── codeStyles │ │ │ │ └── Project.xml │ │ │ ├── gradle.xml │ │ │ ├── misc.xml │ │ │ └── runConfigurations.xml │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ ├── androidTest │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── dsm2018 │ │ │ │ │ └── directreply │ │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ │ └── com │ │ │ │ │ │ └── example │ │ │ │ │ │ └── dsm2018 │ │ │ │ │ │ └── directreply │ │ │ │ │ │ └── DirectReplyActivity.java │ │ │ │ └── res │ │ │ │ │ ├── drawable-v24 │ │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ │ ├── drawable │ │ │ │ │ └── ic_launcher_background.xml │ │ │ │ │ ├── layout │ │ │ │ │ └── activity_direct_reply.xml │ │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ │ ├── ic_launcher.xml │ │ │ │ │ └── ic_launcher_round.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ └── values │ │ │ │ │ ├── colors.xml │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── dsm2018 │ │ │ │ └── directreply │ │ │ │ └── ExampleUnitTest.java │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ └── NotifyDemo │ │ ├── .gitignore │ │ ├── .idea │ │ ├── caches │ │ │ └── build_file_checksums.ser │ │ ├── codeStyles │ │ │ └── Project.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ └── runConfigurations.xml │ │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── dsm2018 │ │ │ │ └── notifydemo │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── dsm2018 │ │ │ │ │ └── notifydemo │ │ │ │ │ ├── NotifyDemoActivity.java │ │ │ │ │ └── ResultActivity.java │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ ├── activity_notify_demo.xml │ │ │ │ └── activity_result.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── dsm2018 │ │ │ └── notifydemo │ │ │ └── ExampleUnitTest.java │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle ├── PermissionDemo │ ├── .gitignore │ ├── .idea │ │ ├── caches │ │ │ └── build_file_checksums.ser │ │ ├── codeStyles │ │ │ └── Project.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ └── runConfigurations.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── dsm2018 │ │ │ │ └── permissiondemo │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── dsm2018 │ │ │ │ │ └── permissiondemo │ │ │ │ │ └── PermissionDemoActivity.java │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ └── activity_permission_demo.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── dsm2018 │ │ │ └── permissiondemo │ │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── RemoteBound │ ├── .gitignore │ ├── .idea │ │ ├── caches │ │ │ └── build_file_checksums.ser │ │ ├── codeStyles │ │ │ └── Project.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ └── runConfigurations.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── dsm2018 │ │ │ │ └── remotebound │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── dsm2018 │ │ │ │ │ └── remotebound │ │ │ │ │ ├── RemoteBoundActivity.java │ │ │ │ │ └── RemoteService.java │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ └── activity_remote_bound.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── dsm2018 │ │ │ └── remotebound │ │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── ServiceExample │ ├── .gitignore │ ├── .idea │ │ ├── caches │ │ │ └── build_file_checksums.ser │ │ ├── codeStyles │ │ │ └── Project.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ └── runConfigurations.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── dsm2018 │ │ │ │ └── serviceexample │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── dsm2018 │ │ │ │ │ └── serviceexample │ │ │ │ │ ├── MyIntentService.java │ │ │ │ │ ├── MyService.java │ │ │ │ │ └── ServiceExampleActivity.java │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ └── activity_service_example.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── dsm2018 │ │ │ └── serviceexample │ │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Treading 관련 │ └── ThreadExample │ │ ├── .gitignore │ │ ├── .idea │ │ ├── caches │ │ │ └── build_file_checksums.ser │ │ ├── codeStyles │ │ │ └── Project.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ └── runConfigurations.xml │ │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── dsm2018 │ │ │ │ └── threadexample │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── dsm2018 │ │ │ │ │ └── threadexample │ │ │ │ │ └── ThreadExampleActivity.java │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ └── activity_thread_example.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── dsm2018 │ │ │ └── threadexample │ │ │ └── ExampleUnitTest.java │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle └── WebPrint │ ├── .gitignore │ ├── .idea │ ├── caches │ │ └── build_file_checksums.ser │ ├── codeStyles │ │ └── Project.xml │ ├── gradle.xml │ ├── misc.xml │ └── runConfigurations.xml │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── dsm2018 │ │ │ └── webprint │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── dsm2018 │ │ │ │ └── webprint │ │ │ │ └── WebPrintActivity.java │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ ├── activity_web_print.xml │ │ │ └── content_web_print.xml │ │ │ ├── menu │ │ │ └── menu_web_print.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── dsm2018 │ │ └── webprint │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Animation 관련 ├── SceneTrasitions │ ├── .gitignore │ ├── .idea │ │ ├── caches │ │ │ └── build_file_checksums.ser │ │ ├── codeStyles │ │ │ └── Project.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ └── runConfigurations.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── dsm2018 │ │ │ │ └── scenetrasitions │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── dsm2018 │ │ │ │ │ └── scenetrasitions │ │ │ │ │ └── SceneTransitionActivity.java │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ ├── activity_scene_transition.xml │ │ │ │ ├── scene1_layout.xml │ │ │ │ └── scene2_layout.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── transition │ │ │ │ └── transition.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── dsm2018 │ │ │ └── scenetrasitions │ │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle └── TransitionDemo │ ├── .gitignore │ ├── .idea │ ├── caches │ │ └── build_file_checksums.ser │ ├── codeStyles │ │ └── Project.xml │ ├── gradle.xml │ ├── misc.xml │ └── runConfigurations.xml │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── dsm2018 │ │ │ └── transitiondemo │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── dsm2018 │ │ │ │ └── transitiondemo │ │ │ │ └── TransitionDemoActivity.java │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ └── activity_transition_demo.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── dsm2018 │ │ └── transitiondemo │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Event 관련 ├── CommonGestures │ ├── .gitignore │ ├── .idea │ │ ├── caches │ │ │ └── build_file_checksums.ser │ │ ├── codeStyles │ │ │ └── Project.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ └── runConfigurations.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── dsm2018 │ │ │ │ └── commongestures │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── dsm2018 │ │ │ │ │ └── commongestures │ │ │ │ │ └── CommonGesturesActivity.java │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ └── activity_common_gestures.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── dsm2018 │ │ │ └── commongestures │ │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── MotionEvent │ ├── .gitignore │ ├── .idea │ │ ├── caches │ │ │ └── build_file_checksums.ser │ │ ├── codeStyles │ │ │ └── Project.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ └── runConfigurations.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── dsm2018 │ │ │ │ └── motionevent │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── dsm2018 │ │ │ │ │ └── motionevent │ │ │ │ │ └── MotionEventActivity.java │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ └── activity_motion_event.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── dsm2018 │ │ │ └── motionevent │ │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── OnClickEvent_practice │ ├── .gitignore │ ├── .idea │ │ ├── caches │ │ │ └── build_file_checksums.ser │ │ ├── codeStyles │ │ │ └── Project.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ └── runConfigurations.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── dsm2018 │ │ │ │ └── onclickevent_practice │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── dsm2018 │ │ │ │ │ └── onclickevent_practice │ │ │ │ │ └── EventExampleActivity.java │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ └── activity_event.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── dsm2018 │ │ │ └── onclickevent_practice │ │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── PinchExample │ ├── .gitignore │ ├── .idea │ │ ├── caches │ │ │ └── build_file_checksums.ser │ │ ├── codeStyles │ │ │ └── Project.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ └── runConfigurations.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── dsm2018 │ │ │ │ └── pinchexample │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── dsm2018 │ │ │ │ │ └── pinchexample │ │ │ │ │ └── PinchExampleActivity.java │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ └── activity_pinch_example.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── dsm2018 │ │ │ └── pinchexample │ │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle └── dialog, toast │ ├── .gitignore │ ├── .idea │ ├── caches │ │ └── build_file_checksums.ser │ ├── codeStyles │ │ └── Project.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── dsm2018 │ │ │ └── myapplication │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── dsm2018 │ │ │ │ └── myapplication │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ ├── dialog.xml │ │ │ └── toast1.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── dsm2018 │ │ └── myapplication │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Fragment 관련 ├── FragmentExample │ ├── .gitignore │ ├── .idea │ │ ├── caches │ │ │ └── build_file_checksums.ser │ │ ├── codeStyles │ │ │ └── Project.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ └── runConfigurations.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── dsm2018 │ │ │ │ └── fragmentexample │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── dsm2018 │ │ │ │ │ └── fragmentexample │ │ │ │ │ ├── FragmentExampleActivity.java │ │ │ │ │ ├── TextFragment.java │ │ │ │ │ └── ToolbarFragment.java │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ ├── activity_fragment_example.xml │ │ │ │ ├── text_fragment.xml │ │ │ │ └── toolbar_fragment.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── dsm2018 │ │ │ └── fragmentexample │ │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── TabLayoutDemo │ ├── .gitignore │ ├── .idea │ │ ├── caches │ │ │ └── build_file_checksums.ser │ │ ├── codeStyles │ │ │ └── Project.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ └── runConfigurations.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── dsm2018 │ │ │ │ └── tablayoutdemo │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── dsm2018 │ │ │ │ │ └── tablayoutdemo │ │ │ │ │ ├── Tab1Fragment.java │ │ │ │ │ ├── Tab2Fragment.java │ │ │ │ │ ├── Tab3Fragment.java │ │ │ │ │ ├── Tab4Fragment.java │ │ │ │ │ ├── TabLayoutDemoActivity.java │ │ │ │ │ └── TabPagerAdapter.java │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ ├── activity_tab_layout_demo.xml │ │ │ │ ├── content_tab_layout_demo.xml │ │ │ │ ├── fragment_tab1.xml │ │ │ │ ├── fragment_tab2.xml │ │ │ │ ├── fragment_tab3.xml │ │ │ │ └── fragment_tab4.xml │ │ │ │ ├── menu │ │ │ │ └── menu_tab_layout_demo.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── dimens.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── dsm2018 │ │ │ └── tablayoutdemo │ │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle └── Viewpager_practice │ ├── .gitignore │ ├── .idea │ ├── caches │ │ └── build_file_checksums.ser │ ├── codeStyles │ │ └── Project.xml │ ├── gradle.xml │ ├── misc.xml │ └── runConfigurations.xml │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── dsm2018 │ │ │ └── viewpagerpractice │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── dsm2018 │ │ │ │ └── viewpagerpractice │ │ │ │ ├── FirstFragment.java │ │ │ │ ├── MainActivity.java │ │ │ │ ├── SecondFragment.java │ │ │ │ └── ThirdFragment.java │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ ├── fragment_blank.xml │ │ │ ├── fragment_first.xml │ │ │ ├── fragment_second.xml │ │ │ └── fragment_third.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── dsm2018 │ │ └── viewpagerpractice │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Layout 관련 ├── CardDemo_Upgrade_version │ ├── .gitignore │ ├── .idea │ │ ├── caches │ │ │ └── build_file_checksums.ser │ │ ├── codeStyles │ │ │ └── Project.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ └── runConfigurations.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── dsm2018 │ │ │ │ └── carddemo │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── dsm2018 │ │ │ │ │ └── carddemo │ │ │ │ │ ├── CardDemoActivity.java │ │ │ │ │ └── RecyclerAdapter.java │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ ├── android_image_1.png │ │ │ │ ├── android_image_2.png │ │ │ │ ├── android_image_3.png │ │ │ │ ├── android_image_4.png │ │ │ │ ├── android_image_5.png │ │ │ │ ├── android_image_6.png │ │ │ │ ├── android_image_7.png │ │ │ │ ├── android_image_8.png │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ ├── appbar_image.jpg │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ ├── activity_card_demo.xml │ │ │ │ ├── card_view.xml │ │ │ │ └── content_card_demo.xml │ │ │ │ ├── menu │ │ │ │ └── menu_card_demo.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── dimens.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── dsm2018 │ │ │ └── carddemo │ │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle └── ConsraintLayout 관련 │ ├── 2018Update.ConstraintLayout.md │ ├── ConstraintLayout_Project │ ├── .gitignore │ ├── .idea │ │ ├── caches │ │ │ └── build_file_checksums.ser │ │ ├── codeStyles │ │ │ └── Project.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ └── runConfigurations.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── dsm2018 │ │ │ │ └── constraintlayout_project │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── dsm2018 │ │ │ │ │ └── constraintlayout_project │ │ │ │ │ └── MainActivity.java │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ └── activity_main.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── id.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── dsm2018 │ │ │ └── constraintlayout_project │ │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle │ ├── Constraintlayout_practice │ ├── .gitignore │ ├── .idea │ │ ├── caches │ │ │ └── build_file_checksums.ser │ │ ├── codeStyles │ │ │ └── Project.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ └── runConfigurations.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── dsm2018 │ │ │ │ └── constraintlayout_practice │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── dsm2018 │ │ │ │ │ └── constraintlayout_practice │ │ │ │ │ └── MainActivity.java │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ └── activity_main.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── dsm2018 │ │ │ └── constraintlayout_practice │ │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle │ └── Constraintlayoutchainpractice │ ├── .gitignore │ ├── .idea │ ├── caches │ │ └── build_file_checksums.ser │ ├── codeStyles │ │ └── Project.xml │ ├── gradle.xml │ ├── misc.xml │ └── runConfigurations.xml │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── dsm2018 │ │ │ └── constraintlayout_chainpractice │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── dsm2018 │ │ │ │ └── constraintlayout_chainpractice │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── dsm2018 │ │ └── constraintlayout_chainpractice │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Other Tech ├── AudioApp │ ├── .gitignore │ ├── .idea │ │ ├── caches │ │ │ └── build_file_checksums.ser │ │ ├── codeStyles │ │ │ └── Project.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ └── runConfigurations.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── dsm2018 │ │ │ │ └── audioapp │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── dsm2018 │ │ │ │ │ └── audioapp │ │ │ │ │ └── AudioAppActivity.java │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ └── activity_audio_app.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── dsm2018 │ │ │ └── audioapp │ │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── CustomPrint │ ├── .gitignore │ ├── .idea │ │ ├── caches │ │ │ └── build_file_checksums.ser │ │ ├── codeStyles │ │ │ └── Project.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ └── runConfigurations.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── dsm2018 │ │ │ │ └── customprint │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── dsm2018 │ │ │ │ │ └── customprint │ │ │ │ │ └── CustomPrintActivity.java │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ └── activity_custom_print.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── dsm2018 │ │ │ └── customprint │ │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── FingerprintDemo │ ├── .gitignore │ ├── .idea │ │ ├── caches │ │ │ └── build_file_checksums.ser │ │ ├── codeStyles │ │ │ └── Project.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ └── runConfigurations.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── dsm2018 │ │ │ │ └── fingerprintdemo │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── dsm2018 │ │ │ │ │ └── fingerprintdemo │ │ │ │ │ ├── FingerprintDemoActivity.java │ │ │ │ │ └── FingerprintHandler.java │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ ├── ic_fp_40px.png │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ └── activity_fingerprint_demo.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── dsm2018 │ │ │ └── fingerprintdemo │ │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── FirebaseNotify │ ├── .gitignore │ ├── .idea │ │ ├── caches │ │ │ └── build_file_checksums.ser │ │ ├── codeStyles │ │ │ └── Project.xml │ │ ├── gradle.xml │ │ └── misc.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── google-services.json │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── dsm2018 │ │ │ │ └── firebasenotify │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── dsm2018 │ │ │ │ │ └── firebasenotify │ │ │ │ │ ├── FirebaseNotifyActivity.java │ │ │ │ │ └── MyFBMessageService.java │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ └── activity_firebase_notify.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── dsm2018 │ │ │ └── firebasenotify │ │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── HTMLPrint │ ├── .gitignore │ ├── .idea │ │ ├── caches │ │ │ └── build_file_checksums.ser │ │ ├── codeStyles │ │ │ └── Project.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ └── runConfigurations.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── dsm2018 │ │ │ │ └── htmlprint │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── dsm2018 │ │ │ │ │ └── htmlprint │ │ │ │ │ └── HTMLPrintActivity.java │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ └── activity_html_print.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── dsm2018 │ │ │ └── htmlprint │ │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── LocalBound │ ├── .gitignore │ ├── .idea │ │ ├── caches │ │ │ └── build_file_checksums.ser │ │ ├── codeStyles │ │ │ └── Project.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ └── runConfigurations.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── dsm2018 │ │ │ │ └── localbound │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── dsm2018 │ │ │ │ │ └── localbound │ │ │ │ │ ├── BoundService.java │ │ │ │ │ └── LocalBoundActivity.java │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ └── activity_local_bound.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── dsm2018 │ │ │ └── localbound │ │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── MapDemo │ ├── .gitignore │ ├── .idea │ │ ├── caches │ │ │ └── build_file_checksums.ser │ │ ├── codeStyles │ │ │ └── Project.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ └── runConfigurations.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── dsm2018 │ │ │ │ └── mapdemo │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── debug │ │ │ └── res │ │ │ │ └── values │ │ │ │ └── google_maps_api.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── dsm2018 │ │ │ │ │ └── mapdemo │ │ │ │ │ └── MapDemoActivity.java │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ └── activity_map_demo.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ ├── release │ │ │ └── res │ │ │ │ └── values │ │ │ │ └── google_maps_api.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── dsm2018 │ │ │ └── mapdemo │ │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── MultiWindow │ ├── .gitignore │ ├── .idea │ │ ├── caches │ │ │ └── build_file_checksums.ser │ │ ├── codeStyles │ │ │ └── Project.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ └── runConfigurations.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── dsm2018 │ │ │ │ └── multiwindow │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── dsm2018 │ │ │ │ │ └── multiwindow │ │ │ │ │ ├── FirstActivity.java │ │ │ │ │ └── SecondActivity.java │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ ├── activity_first.xml │ │ │ │ └── activity_second.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── dsm2018 │ │ │ └── multiwindow │ │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Notification 관련 │ ├── DirectReply │ │ ├── .gitignore │ │ ├── .idea │ │ │ ├── caches │ │ │ │ └── build_file_checksums.ser │ │ │ ├── codeStyles │ │ │ │ └── Project.xml │ │ │ ├── gradle.xml │ │ │ ├── misc.xml │ │ │ └── runConfigurations.xml │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ ├── androidTest │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── dsm2018 │ │ │ │ │ └── directreply │ │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ │ └── com │ │ │ │ │ │ └── example │ │ │ │ │ │ └── dsm2018 │ │ │ │ │ │ └── directreply │ │ │ │ │ │ └── DirectReplyActivity.java │ │ │ │ └── res │ │ │ │ │ ├── drawable-v24 │ │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ │ ├── drawable │ │ │ │ │ └── ic_launcher_background.xml │ │ │ │ │ ├── layout │ │ │ │ │ └── activity_direct_reply.xml │ │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ │ ├── ic_launcher.xml │ │ │ │ │ └── ic_launcher_round.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ └── values │ │ │ │ │ ├── colors.xml │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── dsm2018 │ │ │ │ └── directreply │ │ │ │ └── ExampleUnitTest.java │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ └── NotifyDemo │ │ ├── .gitignore │ │ ├── .idea │ │ ├── caches │ │ │ └── build_file_checksums.ser │ │ ├── codeStyles │ │ │ └── Project.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ └── runConfigurations.xml │ │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── dsm2018 │ │ │ │ └── notifydemo │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── dsm2018 │ │ │ │ │ └── notifydemo │ │ │ │ │ ├── NotifyDemoActivity.java │ │ │ │ │ └── ResultActivity.java │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ ├── activity_notify_demo.xml │ │ │ │ └── activity_result.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── dsm2018 │ │ │ └── notifydemo │ │ │ └── ExampleUnitTest.java │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle ├── PermissionDemo │ ├── .gitignore │ ├── .idea │ │ ├── caches │ │ │ └── build_file_checksums.ser │ │ ├── codeStyles │ │ │ └── Project.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ └── runConfigurations.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── dsm2018 │ │ │ │ └── permissiondemo │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── dsm2018 │ │ │ │ │ └── permissiondemo │ │ │ │ │ └── PermissionDemoActivity.java │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ └── activity_permission_demo.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── dsm2018 │ │ │ └── permissiondemo │ │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── RemoteBound │ ├── .gitignore │ ├── .idea │ │ ├── caches │ │ │ └── build_file_checksums.ser │ │ ├── codeStyles │ │ │ └── Project.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ └── runConfigurations.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── dsm2018 │ │ │ │ └── remotebound │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── dsm2018 │ │ │ │ │ └── remotebound │ │ │ │ │ ├── RemoteBoundActivity.java │ │ │ │ │ └── RemoteService.java │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ └── activity_remote_bound.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── dsm2018 │ │ │ └── remotebound │ │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Treading 관련 │ └── ThreadExample │ │ ├── .gitignore │ │ ├── .idea │ │ ├── caches │ │ │ └── build_file_checksums.ser │ │ ├── codeStyles │ │ │ └── Project.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ └── runConfigurations.xml │ │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── dsm2018 │ │ │ │ └── threadexample │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── dsm2018 │ │ │ │ │ └── threadexample │ │ │ │ │ └── ThreadExampleActivity.java │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ └── activity_thread_example.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── dsm2018 │ │ │ └── threadexample │ │ │ └── ExampleUnitTest.java │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle └── WebPrint │ ├── .gitignore │ ├── .idea │ ├── caches │ │ └── build_file_checksums.ser │ ├── codeStyles │ │ └── Project.xml │ ├── gradle.xml │ ├── misc.xml │ └── runConfigurations.xml │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── dsm2018 │ │ │ └── webprint │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── dsm2018 │ │ │ │ └── webprint │ │ │ │ └── WebPrintActivity.java │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ ├── activity_web_print.xml │ │ │ └── content_web_print.xml │ │ │ ├── menu │ │ │ └── menu_web_print.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── dsm2018 │ │ └── webprint │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── README.md ├── View 관련 ├── CameraApp │ ├── .gitignore │ ├── .idea │ │ ├── caches │ │ │ └── build_file_checksums.ser │ │ ├── codeStyles │ │ │ └── Project.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ └── runConfigurations.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── dsm2018 │ │ │ │ └── cameraapp │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── dsm2018 │ │ │ │ │ └── cameraapp │ │ │ │ │ └── CameraAppActivity.java │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ └── activity_camera_app.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── dsm2018 │ │ │ └── cameraapp │ │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── CardDemo │ ├── .gitignore │ ├── .idea │ │ ├── caches │ │ │ └── build_file_checksums.ser │ │ ├── codeStyles │ │ │ └── Project.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ └── runConfigurations.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── dsm2018 │ │ │ │ └── carddemo │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── dsm2018 │ │ │ │ │ └── carddemo │ │ │ │ │ ├── CardDemoActivity.java │ │ │ │ │ └── RecyclerAdapter.java │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ ├── android_image_1.png │ │ │ │ ├── android_image_2.png │ │ │ │ ├── android_image_3.png │ │ │ │ ├── android_image_4.png │ │ │ │ ├── android_image_5.png │ │ │ │ ├── android_image_6.png │ │ │ │ ├── android_image_7.png │ │ │ │ ├── android_image_8.png │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ ├── activity_card_demo.xml │ │ │ │ ├── card_view.xml │ │ │ │ └── content_card_demo.xml │ │ │ │ ├── menu │ │ │ │ └── menu_card_demo.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── dimens.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── dsm2018 │ │ │ └── carddemo │ │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── RecyclerView_Practice │ └── app │ │ └── src │ │ └── main │ │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── dsm2018 │ │ │ └── recyclerview_practice │ │ │ └── PageFragment.java │ │ └── res │ │ └── layout │ │ ├── fragment_page.xml │ │ └── view_item.xml ├── Recyclerview_practice │ ├── .gitignore │ ├── .idea │ │ ├── caches │ │ │ └── build_file_checksums.ser │ │ ├── codeStyles │ │ │ └── Project.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ └── runConfigurations.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── dsm2018 │ │ │ │ └── recyclerview_practice │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── dsm2018 │ │ │ │ │ └── recyclerview_practice │ │ │ │ │ ├── Adapter.java │ │ │ │ │ ├── Item.java │ │ │ │ │ └── MainActivity.java │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ └── activity_main.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── dsm2018 │ │ │ └── recyclerview_practice │ │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle └── VideoPlayer │ ├── .gitignore │ ├── .idea │ ├── caches │ │ └── build_file_checksums.ser │ ├── codeStyles │ │ └── Project.xml │ ├── gradle.xml │ ├── misc.xml │ └── runConfigurations.xml │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── dsm2018 │ │ │ └── videoplayer │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── dsm2018 │ │ │ │ └── videoplayer │ │ │ │ └── VideoPlayerActivity.java │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ └── activity_video_player.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── dsm2018 │ │ └── videoplayer │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Widget 관련 ├── FabExample │ ├── .gitignore │ ├── .idea │ │ ├── caches │ │ │ └── build_file_checksums.ser │ │ ├── codeStyles │ │ │ └── Project.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ └── runConfigurations.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── dsm2018 │ │ │ │ └── fabexample │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── dsm2018 │ │ │ │ │ └── fabexample │ │ │ │ │ └── FabExampleActivity.java │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ ├── ic_add_entry.png │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ ├── activity_fab_example.xml │ │ │ │ └── content_fab_example.xml │ │ │ │ ├── menu │ │ │ │ └── menu_fab_example.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── dimens.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── dsm2018 │ │ │ └── fabexample │ │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── MenuExample │ ├── .gitignore │ ├── .idea │ │ ├── caches │ │ │ └── build_file_checksums.ser │ │ ├── codeStyles │ │ │ └── Project.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ └── runConfigurations.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── dsm2018 │ │ │ │ └── menuexample │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── dsm2018 │ │ │ │ │ └── menuexample │ │ │ │ │ └── MenuExampleActivity.java │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ ├── content_menu_example.xml │ │ │ │ └── content_menu_example2.xml │ │ │ │ ├── menu │ │ │ │ └── menu_menu_example.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── dimens.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── dsm2018 │ │ │ └── menuexample │ │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle └── Toolbar_practice │ ├── .gitignore │ ├── .idea │ ├── caches │ │ └── build_file_checksums.ser │ ├── codeStyles │ │ └── Project.xml │ ├── gradle.xml │ ├── misc.xml │ └── runConfigurations.xml │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── dsm2018 │ │ │ └── toolbar_practice │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── dsm2018 │ │ │ │ └── toolbar_practice │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── dsm2018 │ │ └── toolbar_practice │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── 기초 다지기 ├── firstpractice │ ├── .gitignore │ ├── app.iml │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── dsm2018 │ │ │ └── myapplication │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── dsm2018 │ │ │ │ └── myapplication │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── dsm2018 │ │ └── myapplication │ │ └── ExampleUnitTest.java ├── secondpractice │ ├── .gitignore │ ├── app.iml │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── dsm2018 │ │ │ └── myapplication │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── dsm2018 │ │ │ │ └── myapplication │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ └── activity_main2.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── dsm2018 │ │ └── myapplication │ │ └── ExampleUnitTest.java └── 웹 브라우저 │ ├── .gitignore │ ├── .idea │ ├── caches │ │ └── build_file_checksums.ser │ ├── codeStyles │ │ └── Project.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── dsm2018 │ │ │ └── myapplication │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── dsm2018 │ │ │ │ └── myapplication │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── dsm2018 │ │ └── myapplication │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle └── 기초 프로젝트 ├── Bicon ├── .gitignore ├── .idea │ ├── caches │ │ └── build_file_checksums.ser │ ├── codeStyles │ │ └── Project.xml │ ├── gradle.xml │ ├── misc.xml │ └── runConfigurations.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── dsm2018 │ │ │ └── bicon │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── dsm2018 │ │ │ │ └── bicon │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── dsm2018 │ │ └── bicon │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── DMSQ ├── .gitignore ├── .idea │ ├── caches │ │ └── build_file_checksums.ser │ ├── codeStyles │ │ └── Project.xml │ ├── gradle.xml │ ├── misc.xml │ └── runConfigurations.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ ├── release │ │ ├── app-release.apk │ │ └── output.json │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── dsm2018 │ │ │ └── dmsq │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── dsm2018 │ │ │ │ └── dmsq │ │ │ │ ├── ApiService.java │ │ │ │ ├── Connector.java │ │ │ │ ├── DateAdder.java │ │ │ │ ├── DefaultRestClient.java │ │ │ │ ├── Fragment_meal1.java │ │ │ │ ├── Fragment_meal2.java │ │ │ │ ├── Fragment_meal3.java │ │ │ │ ├── Fragment_meal4.java │ │ │ │ ├── Fragment_meal5.java │ │ │ │ ├── Fragment_meal6.java │ │ │ │ ├── Fragment_meal7.java │ │ │ │ ├── Fragment_meal8.java │ │ │ │ ├── Fragment_meal9.java │ │ │ │ ├── MainActivity.java │ │ │ │ ├── fragment_meal.java │ │ │ │ └── model.java │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ ├── ic_launcher_background.xml │ │ │ ├── meal.png │ │ │ ├── mypage.png │ │ │ ├── rounded.xml │ │ │ ├── rule.png │ │ │ └── study.png │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ ├── fragment_meal.xml │ │ │ ├── fragment_meal1.xml │ │ │ ├── fragment_meal2.xml │ │ │ ├── fragment_meal3.xml │ │ │ ├── fragment_meal4.xml │ │ │ ├── fragment_meal5.xml │ │ │ ├── fragment_meal6.xml │ │ │ ├── fragment_meal7.xml │ │ │ ├── fragment_meal8.xml │ │ │ └── fragment_meal9.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── dsm2018 │ │ └── dmsq │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── Database ├── .gitignore ├── .idea │ ├── caches │ │ └── build_file_checksums.ser │ ├── codeStyles │ │ └── Project.xml │ ├── gradle.xml │ ├── misc.xml │ └── runConfigurations.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── dsm2018 │ │ │ └── database │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── dsm2018 │ │ │ │ └── database │ │ │ │ ├── DatabaseActivity.java │ │ │ │ ├── MyContentProvider.java │ │ │ │ ├── MyDBHandler.java │ │ │ │ └── Product.java │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ └── activity_database.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── dsm2018 │ │ └── database │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── Secret ├── .gitignore ├── .idea │ ├── codeStyles │ │ └── Project.xml │ ├── gradle.xml │ ├── misc.xml │ └── runConfigurations.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ ├── release │ │ ├── app-release.apk │ │ ├── gram.apk │ │ └── output.json │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── dsm2018 │ │ │ └── secret │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── dsm2018 │ │ │ │ └── secret │ │ │ │ ├── FirstFragment.java │ │ │ │ ├── ListViewAdapter.java │ │ │ │ ├── ListViewConnecter.java │ │ │ │ ├── ListViewItem.java │ │ │ │ ├── List_Fragment.java │ │ │ │ ├── List_ItemView.java │ │ │ │ ├── MainActivity.java │ │ │ │ ├── SecondActivity.java │ │ │ │ ├── SecondFragment.java │ │ │ │ ├── ThirdActivity.java │ │ │ │ └── ThirdFragment.java │ │ └── res │ │ │ ├── drawable-v24 │ │ │ ├── ic_launcher_foreground.xml │ │ │ ├── left.PNG │ │ │ ├── lock.png │ │ │ ├── logo.png │ │ │ ├── person.png │ │ │ └── right.PNG │ │ │ ├── drawable │ │ │ ├── ic_launcher_background.xml │ │ │ ├── rounded.xml │ │ │ ├── roundedlogin.xml │ │ │ ├── 로고.png │ │ │ └── 사람.png │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ ├── activity_second.xml │ │ │ ├── activity_third.xml │ │ │ ├── fragment_first.xml │ │ │ ├── fragment_second.xml │ │ │ ├── fragment_third.xml │ │ │ └── listview_item.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── dsm2018 │ │ └── secret │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── StorageDemo ├── .gitignore ├── .idea │ ├── caches │ │ └── build_file_checksums.ser │ ├── codeStyles │ │ └── Project.xml │ ├── gradle.xml │ ├── misc.xml │ └── runConfigurations.xml ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── dsm2018 │ │ │ └── storagedemo │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── dsm2018 │ │ │ │ └── storagedemo │ │ │ │ └── StorageDemo.java │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ └── activity_storage_demo.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── example │ │ └── dsm2018 │ │ └── storagedemo │ │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle └── Weekend ├── .gitignore ├── .idea ├── caches │ └── build_file_checksums.ser ├── codeStyles │ └── Project.xml ├── gradle.xml ├── misc.xml └── runConfigurations.xml ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── example │ │ └── dsm2018 │ │ └── weekend │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── dsm2018 │ │ │ └── weekend │ │ │ ├── Adapter.java │ │ │ ├── GetAPI.java │ │ │ ├── GetterSetter.java │ │ │ └── MainActivity.java │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ └── activity_main.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── example │ └── dsm2018 │ └── weekend │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /Activity 관련/Intent 관련/Explicitlntent/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/libraries 5 | /.idea/modules.xml 6 | /.idea/workspace.xml 7 | .DS_Store 8 | /build 9 | /captures 10 | .externalNativeBuild 11 | -------------------------------------------------------------------------------- /Activity 관련/Intent 관련/Explicitlntent/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Activity 관련/Intent 관련/Explicitlntent/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /Activity 관련/Intent 관련/Explicitlntent/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Activity 관련/Intent 관련/Explicitlntent/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Explicitlntent 3 | 4 | -------------------------------------------------------------------------------- /Activity 관련/Intent 관련/Explicitlntent/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Activity 관련/Intent 관련/Explicitlntent/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Activity 관련/Intent 관련/Explicitlntent/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Activity 관련/Intent 관련/ImplicitIntent/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/libraries 5 | /.idea/modules.xml 6 | /.idea/workspace.xml 7 | .DS_Store 8 | /build 9 | /captures 10 | .externalNativeBuild 11 | -------------------------------------------------------------------------------- /Activity 관련/Intent 관련/ImplicitIntent/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Activity 관련/Intent 관련/ImplicitIntent/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /Activity 관련/Intent 관련/ImplicitIntent/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Activity 관련/Intent 관련/ImplicitIntent/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | ImplicitIntent 3 | 4 | -------------------------------------------------------------------------------- /Activity 관련/Intent 관련/ImplicitIntent/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Activity 관련/Intent 관련/ImplicitIntent/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Activity 관련/Intent 관련/ImplicitIntent/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Activity 관련/Intent 관련/MYBroadcastReceiver/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Activity 관련/Intent 관련/MYBroadcastReceiver/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | MyBroadcastReceiver 3 | 4 | -------------------------------------------------------------------------------- /Activity 관련/Intent 관련/MYBroadcastReceiver/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Activity 관련/Intent 관련/MYBroadcastReceiver/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Activity 관련/Intent 관련/MYBroadcastReceiver/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Activity 관련/Intent 관련/MyWebVIew/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/libraries 5 | /.idea/modules.xml 6 | /.idea/workspace.xml 7 | .DS_Store 8 | /build 9 | /captures 10 | .externalNativeBuild 11 | -------------------------------------------------------------------------------- /Activity 관련/Intent 관련/MyWebVIew/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Activity 관련/Intent 관련/MyWebVIew/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /Activity 관련/Intent 관련/MyWebVIew/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Activity 관련/Intent 관련/MyWebVIew/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | MyWebVIew 3 | 4 | -------------------------------------------------------------------------------- /Activity 관련/Intent 관련/MyWebVIew/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Activity 관련/Intent 관련/MyWebVIew/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Activity 관련/Intent 관련/MyWebVIew/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Activity 관련/Intent 관련/SendBroadcast/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/libraries 5 | /.idea/modules.xml 6 | /.idea/workspace.xml 7 | .DS_Store 8 | /build 9 | /captures 10 | .externalNativeBuild 11 | -------------------------------------------------------------------------------- /Activity 관련/Intent 관련/SendBroadcast/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Activity 관련/Intent 관련/SendBroadcast/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /Activity 관련/Intent 관련/SendBroadcast/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Activity 관련/Intent 관련/SendBroadcast/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | SendBroadcast 3 | 4 | -------------------------------------------------------------------------------- /Activity 관련/Intent 관련/SendBroadcast/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Activity 관련/Intent 관련/SendBroadcast/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Activity 관련/Intent 관련/SendBroadcast/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Activity 관련/MasterDetailFlow/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/libraries 5 | /.idea/modules.xml 6 | /.idea/workspace.xml 7 | .DS_Store 8 | /build 9 | /captures 10 | .externalNativeBuild 11 | -------------------------------------------------------------------------------- /Activity 관련/MasterDetailFlow/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Activity 관련/MasterDetailFlow/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /Activity 관련/MasterDetailFlow/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Activity 관련/MasterDetailFlow/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Activity 관련/MasterDetailFlow/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Activity 관련/MasterDetailFlow/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Activity 관련/MasterDetailFlow/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Activity 관련/MasterDetailFlow/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Activity 관련/MasterDetailFlow/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Activity 관련/MasterDetailFlow/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Activity 관련/MasterDetailFlow/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Activity 관련/MasterDetailFlow/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | MasterDetailFlow 3 | Website Detail 4 | 5 | -------------------------------------------------------------------------------- /Activity 관련/MasterDetailFlow/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Activity 관련/MasterDetailFlow/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Activity 관련/MasterDetailFlow/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Activity 관련/NavDrawerDemo/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/libraries 5 | /.idea/modules.xml 6 | /.idea/workspace.xml 7 | .DS_Store 8 | /build 9 | /captures 10 | .externalNativeBuild 11 | -------------------------------------------------------------------------------- /Activity 관련/NavDrawerDemo/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Activity 관련/NavDrawerDemo/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /Activity 관련/NavDrawerDemo/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Activity 관련/NavDrawerDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Activity 관련/NavDrawerDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Activity 관련/NavDrawerDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Activity 관련/NavDrawerDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Activity 관련/NavDrawerDemo/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Activity 관련/NavDrawerDemo/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Activity 관련/NavDrawerDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Activity 관련/NavDrawerDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Activity 관련/NavDrawerDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Activity 관련/NavDrawerDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Activity 관련/NavDrawerDemo/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Activity 관련/NavDrawerDemo/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Activity 관련/NavDrawerDemo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Android Database 관련/Database/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/libraries 5 | /.idea/modules.xml 6 | /.idea/workspace.xml 7 | .DS_Store 8 | /build 9 | /captures 10 | .externalNativeBuild 11 | -------------------------------------------------------------------------------- /Android Database 관련/Database/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Android Database 관련/Database/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /Android Database 관련/Database/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Android Database 관련/Database/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Android Database 관련/Database/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android Database 관련/Database/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Android Database 관련/Database/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android Database 관련/Database/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Android Database 관련/Database/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android Database 관련/Database/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Android Database 관련/Database/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android Database 관련/Database/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Database 3 | 4 | -------------------------------------------------------------------------------- /Android Database 관련/Database/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Android Database 관련/Database/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Android Database 관련/Database/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Android Database 관련/Provider/Database/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/libraries 5 | /.idea/modules.xml 6 | /.idea/workspace.xml 7 | .DS_Store 8 | /build 9 | /captures 10 | .externalNativeBuild 11 | -------------------------------------------------------------------------------- /Android Database 관련/Provider/Database/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Android Database 관련/Provider/Database/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /Android Database 관련/Provider/Database/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Android Database 관련/Provider/Database/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Android Database 관련/Provider/Database/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Android Database 관련/Provider/Database/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Android Service 관련/AudioApp/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/libraries 5 | /.idea/modules.xml 6 | /.idea/workspace.xml 7 | .DS_Store 8 | /build 9 | /captures 10 | .externalNativeBuild 11 | -------------------------------------------------------------------------------- /Android Service 관련/AudioApp/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Android Service 관련/AudioApp/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /Android Service 관련/AudioApp/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Android Service 관련/AudioApp/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Android Service 관련/AudioApp/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android Service 관련/AudioApp/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Android Service 관련/AudioApp/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android Service 관련/AudioApp/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Android Service 관련/AudioApp/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android Service 관련/AudioApp/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Android Service 관련/AudioApp/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android Service 관련/AudioApp/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Android Service 관련/AudioApp/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android Service 관련/AudioApp/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | AudioApp 3 | 4 | -------------------------------------------------------------------------------- /Android Service 관련/AudioApp/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Android Service 관련/AudioApp/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Android Service 관련/AudioApp/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Android Service 관련/CustomPrint/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/libraries 5 | /.idea/modules.xml 6 | /.idea/workspace.xml 7 | .DS_Store 8 | /build 9 | /captures 10 | .externalNativeBuild 11 | -------------------------------------------------------------------------------- /Android Service 관련/CustomPrint/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Android Service 관련/CustomPrint/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /Android Service 관련/CustomPrint/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Android Service 관련/CustomPrint/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Android Service 관련/CustomPrint/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android Service 관련/CustomPrint/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Android Service 관련/CustomPrint/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android Service 관련/CustomPrint/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | CustomPrint 3 | 4 | -------------------------------------------------------------------------------- /Android Service 관련/CustomPrint/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Android Service 관련/CustomPrint/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Android Service 관련/CustomPrint/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Android Service 관련/FingerprintDemo/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/libraries 5 | /.idea/modules.xml 6 | /.idea/workspace.xml 7 | .DS_Store 8 | /build 9 | /captures 10 | .externalNativeBuild 11 | -------------------------------------------------------------------------------- /Android Service 관련/FingerprintDemo/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Android Service 관련/FingerprintDemo/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /Android Service 관련/FingerprintDemo/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Android Service 관련/FingerprintDemo/app/src/main/res/drawable/ic_fp_40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Android Service 관련/FingerprintDemo/app/src/main/res/drawable/ic_fp_40px.png -------------------------------------------------------------------------------- /Android Service 관련/FingerprintDemo/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | FingerprintDemo 3 | 4 | -------------------------------------------------------------------------------- /Android Service 관련/FingerprintDemo/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Android Service 관련/FingerprintDemo/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Android Service 관련/FingerprintDemo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Android Service 관련/FirebaseNotify/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/libraries 5 | /.idea/modules.xml 6 | /.idea/workspace.xml 7 | .DS_Store 8 | /build 9 | /captures 10 | .externalNativeBuild 11 | -------------------------------------------------------------------------------- /Android Service 관련/FirebaseNotify/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Android Service 관련/FirebaseNotify/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /Android Service 관련/FirebaseNotify/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Android Service 관련/FirebaseNotify/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | FirebaseNotify 3 | 4 | -------------------------------------------------------------------------------- /Android Service 관련/FirebaseNotify/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Android Service 관련/FirebaseNotify/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Android Service 관련/FirebaseNotify/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Android Service 관련/HTMLPrint/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/libraries 5 | /.idea/modules.xml 6 | /.idea/workspace.xml 7 | .DS_Store 8 | /build 9 | /captures 10 | .externalNativeBuild 11 | -------------------------------------------------------------------------------- /Android Service 관련/HTMLPrint/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Android Service 관련/HTMLPrint/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /Android Service 관련/HTMLPrint/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Android Service 관련/HTMLPrint/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Android Service 관련/HTMLPrint/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android Service 관련/HTMLPrint/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Android Service 관련/HTMLPrint/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android Service 관련/HTMLPrint/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Android Service 관련/HTMLPrint/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android Service 관련/HTMLPrint/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Android Service 관련/HTMLPrint/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android Service 관련/HTMLPrint/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | HTMLPrint 3 | 4 | -------------------------------------------------------------------------------- /Android Service 관련/HTMLPrint/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Android Service 관련/HTMLPrint/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Android Service 관련/HTMLPrint/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Android Service 관련/LocalBound/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/libraries 5 | /.idea/modules.xml 6 | /.idea/workspace.xml 7 | .DS_Store 8 | /build 9 | /captures 10 | .externalNativeBuild 11 | -------------------------------------------------------------------------------- /Android Service 관련/LocalBound/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Android Service 관련/LocalBound/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /Android Service 관련/LocalBound/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Android Service 관련/LocalBound/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Android Service 관련/LocalBound/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android Service 관련/LocalBound/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Android Service 관련/LocalBound/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android Service 관련/LocalBound/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Android Service 관련/LocalBound/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android Service 관련/LocalBound/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | LocalBound 3 | 4 | -------------------------------------------------------------------------------- /Android Service 관련/LocalBound/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Android Service 관련/LocalBound/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Android Service 관련/LocalBound/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Android Service 관련/MapDemo/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/libraries 5 | /.idea/modules.xml 6 | /.idea/workspace.xml 7 | .DS_Store 8 | /build 9 | /captures 10 | .externalNativeBuild 11 | -------------------------------------------------------------------------------- /Android Service 관련/MapDemo/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Android Service 관련/MapDemo/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /Android Service 관련/MapDemo/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Android Service 관련/MapDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Android Service 관련/MapDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android Service 관련/MapDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Android Service 관련/MapDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android Service 관련/MapDemo/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Android Service 관련/MapDemo/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android Service 관련/MapDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Android Service 관련/MapDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android Service 관련/MapDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Android Service 관련/MapDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android Service 관련/MapDemo/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | MapDemo 3 | Map 4 | 5 | -------------------------------------------------------------------------------- /Android Service 관련/MapDemo/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Android Service 관련/MapDemo/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Android Service 관련/MapDemo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Android Service 관련/MultiWindow/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/libraries 5 | /.idea/modules.xml 6 | /.idea/workspace.xml 7 | .DS_Store 8 | /build 9 | /captures 10 | .externalNativeBuild 11 | -------------------------------------------------------------------------------- /Android Service 관련/MultiWindow/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Android Service 관련/MultiWindow/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /Android Service 관련/MultiWindow/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Android Service 관련/MultiWindow/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Android Service 관련/MultiWindow/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android Service 관련/MultiWindow/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Android Service 관련/MultiWindow/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android Service 관련/MultiWindow/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | MultiWindow 3 | 4 | -------------------------------------------------------------------------------- /Android Service 관련/MultiWindow/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Android Service 관련/MultiWindow/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Android Service 관련/MultiWindow/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Android Service 관련/Notification 관련/DirectReply/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Android Service 관련/Notification 관련/DirectReply/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | DirectReply 3 | 4 | -------------------------------------------------------------------------------- /Android Service 관련/Notification 관련/DirectReply/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Android Service 관련/Notification 관련/NotifyDemo/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Android Service 관련/Notification 관련/NotifyDemo/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | NotifyDemo 3 | 4 | -------------------------------------------------------------------------------- /Android Service 관련/Notification 관련/NotifyDemo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Android Service 관련/PermissionDemo/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/libraries 5 | /.idea/modules.xml 6 | /.idea/workspace.xml 7 | .DS_Store 8 | /build 9 | /captures 10 | .externalNativeBuild 11 | -------------------------------------------------------------------------------- /Android Service 관련/PermissionDemo/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Android Service 관련/PermissionDemo/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /Android Service 관련/PermissionDemo/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Android Service 관련/PermissionDemo/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | PermissionDemo 3 | 4 | -------------------------------------------------------------------------------- /Android Service 관련/PermissionDemo/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Android Service 관련/PermissionDemo/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Android Service 관련/PermissionDemo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Android Service 관련/RemoteBound/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/libraries 5 | /.idea/modules.xml 6 | /.idea/workspace.xml 7 | .DS_Store 8 | /build 9 | /captures 10 | .externalNativeBuild 11 | -------------------------------------------------------------------------------- /Android Service 관련/RemoteBound/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Android Service 관련/RemoteBound/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /Android Service 관련/RemoteBound/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Android Service 관련/RemoteBound/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Android Service 관련/RemoteBound/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android Service 관련/RemoteBound/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Android Service 관련/RemoteBound/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android Service 관련/RemoteBound/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | RemoteBound 3 | 4 | -------------------------------------------------------------------------------- /Android Service 관련/RemoteBound/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Android Service 관련/RemoteBound/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Android Service 관련/RemoteBound/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Android Service 관련/ServiceExample/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/libraries 5 | /.idea/modules.xml 6 | /.idea/workspace.xml 7 | .DS_Store 8 | /build 9 | /captures 10 | .externalNativeBuild 11 | -------------------------------------------------------------------------------- /Android Service 관련/ServiceExample/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Android Service 관련/ServiceExample/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /Android Service 관련/ServiceExample/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Android Service 관련/ServiceExample/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | ServiceExample 3 | 4 | -------------------------------------------------------------------------------- /Android Service 관련/ServiceExample/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Android Service 관련/ServiceExample/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Android Service 관련/ServiceExample/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Android Service 관련/Treading 관련/ThreadExample/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Android Service 관련/Treading 관련/ThreadExample/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | ThreadExample 3 | 4 | -------------------------------------------------------------------------------- /Android Service 관련/Treading 관련/ThreadExample/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Android Service 관련/WebPrint/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/libraries 5 | /.idea/modules.xml 6 | /.idea/workspace.xml 7 | .DS_Store 8 | /build 9 | /captures 10 | .externalNativeBuild 11 | -------------------------------------------------------------------------------- /Android Service 관련/WebPrint/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Android Service 관련/WebPrint/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /Android Service 관련/WebPrint/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Android Service 관련/WebPrint/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Android Service 관련/WebPrint/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android Service 관련/WebPrint/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Android Service 관련/WebPrint/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android Service 관련/WebPrint/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Android Service 관련/WebPrint/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android Service 관련/WebPrint/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Android Service 관련/WebPrint/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android Service 관련/WebPrint/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Android Service 관련/WebPrint/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android Service 관련/WebPrint/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 16dp 3 | 4 | -------------------------------------------------------------------------------- /Android Service 관련/WebPrint/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Android Service 관련/WebPrint/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Android Service 관련/WebPrint/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Animation 관련/SceneTrasitions/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/libraries 5 | /.idea/modules.xml 6 | /.idea/workspace.xml 7 | .DS_Store 8 | /build 9 | /captures 10 | .externalNativeBuild 11 | -------------------------------------------------------------------------------- /Animation 관련/SceneTrasitions/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Animation 관련/SceneTrasitions/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /Animation 관련/SceneTrasitions/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Animation 관련/SceneTrasitions/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Animation 관련/SceneTrasitions/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Animation 관련/SceneTrasitions/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Animation 관련/SceneTrasitions/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Animation 관련/SceneTrasitions/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Animation 관련/SceneTrasitions/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Animation 관련/SceneTrasitions/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Animation 관련/SceneTrasitions/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Animation 관련/SceneTrasitions/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Animation 관련/SceneTrasitions/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Animation 관련/SceneTrasitions/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Animation 관련/TransitionDemo/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/libraries 5 | /.idea/modules.xml 6 | /.idea/workspace.xml 7 | .DS_Store 8 | /build 9 | /captures 10 | .externalNativeBuild 11 | -------------------------------------------------------------------------------- /Animation 관련/TransitionDemo/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Animation 관련/TransitionDemo/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /Animation 관련/TransitionDemo/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Animation 관련/TransitionDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Animation 관련/TransitionDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Animation 관련/TransitionDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Animation 관련/TransitionDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Animation 관련/TransitionDemo/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Animation 관련/TransitionDemo/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Animation 관련/TransitionDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Animation 관련/TransitionDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Animation 관련/TransitionDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Animation 관련/TransitionDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Animation 관련/TransitionDemo/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | TransitionDemo 3 | 4 | -------------------------------------------------------------------------------- /Animation 관련/TransitionDemo/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Animation 관련/TransitionDemo/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Animation 관련/TransitionDemo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Event 관련/CommonGestures/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/libraries 5 | /.idea/modules.xml 6 | /.idea/workspace.xml 7 | .DS_Store 8 | /build 9 | /captures 10 | .externalNativeBuild 11 | -------------------------------------------------------------------------------- /Event 관련/CommonGestures/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Event 관련/CommonGestures/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /Event 관련/CommonGestures/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Event 관련/CommonGestures/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Event 관련/CommonGestures/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Event 관련/CommonGestures/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Event 관련/CommonGestures/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Event 관련/CommonGestures/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Event 관련/CommonGestures/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Event 관련/CommonGestures/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Event 관련/CommonGestures/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Event 관련/CommonGestures/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Event 관련/CommonGestures/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Event 관련/CommonGestures/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Event 관련/CommonGestures/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Event 관련/CommonGestures/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Event 관련/CommonGestures/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Event 관련/CommonGestures/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Event 관련/CommonGestures/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Event 관련/CommonGestures/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | CommonGestures 3 | 4 | -------------------------------------------------------------------------------- /Event 관련/CommonGestures/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Event 관련/CommonGestures/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Event 관련/CommonGestures/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Event 관련/MotionEvent/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/libraries 5 | /.idea/modules.xml 6 | /.idea/workspace.xml 7 | .DS_Store 8 | /build 9 | /captures 10 | .externalNativeBuild 11 | -------------------------------------------------------------------------------- /Event 관련/MotionEvent/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Event 관련/MotionEvent/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /Event 관련/MotionEvent/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Event 관련/MotionEvent/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Event 관련/MotionEvent/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Event 관련/MotionEvent/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Event 관련/MotionEvent/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Event 관련/MotionEvent/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Event 관련/MotionEvent/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Event 관련/MotionEvent/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Event 관련/MotionEvent/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Event 관련/MotionEvent/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Event 관련/MotionEvent/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Event 관련/MotionEvent/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Event 관련/MotionEvent/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Event 관련/MotionEvent/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Event 관련/MotionEvent/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Event 관련/MotionEvent/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Event 관련/MotionEvent/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Event 관련/MotionEvent/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Event 관련/MotionEvent/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Event 관련/MotionEvent/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Event 관련/MotionEvent/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Event 관련/MotionEvent/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | MotionEvent 3 | 4 | -------------------------------------------------------------------------------- /Event 관련/MotionEvent/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Event 관련/MotionEvent/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Event 관련/MotionEvent/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Event 관련/OnClickEvent_practice/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/libraries 5 | /.idea/modules.xml 6 | /.idea/workspace.xml 7 | .DS_Store 8 | /build 9 | /captures 10 | .externalNativeBuild 11 | -------------------------------------------------------------------------------- /Event 관련/OnClickEvent_practice/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Event 관련/OnClickEvent_practice/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /Event 관련/OnClickEvent_practice/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Event 관련/OnClickEvent_practice/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Event 관련/OnClickEvent_practice/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Event 관련/OnClickEvent_practice/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Event 관련/OnClickEvent_practice/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Event 관련/OnClickEvent_practice/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | OnClickEvent_practice 3 | 4 | -------------------------------------------------------------------------------- /Event 관련/OnClickEvent_practice/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Event 관련/OnClickEvent_practice/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Event 관련/OnClickEvent_practice/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Event 관련/PinchExample/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/libraries 5 | /.idea/modules.xml 6 | /.idea/workspace.xml 7 | .DS_Store 8 | /build 9 | /captures 10 | .externalNativeBuild 11 | -------------------------------------------------------------------------------- /Event 관련/PinchExample/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Event 관련/PinchExample/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /Event 관련/PinchExample/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Event 관련/PinchExample/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Event 관련/PinchExample/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Event 관련/PinchExample/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Event 관련/PinchExample/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Event 관련/PinchExample/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Event 관련/PinchExample/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Event 관련/PinchExample/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Event 관련/PinchExample/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Event 관련/PinchExample/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Event 관련/PinchExample/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Event 관련/PinchExample/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Event 관련/PinchExample/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Event 관련/PinchExample/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Event 관련/PinchExample/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Event 관련/PinchExample/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Event 관련/PinchExample/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Event 관련/PinchExample/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Event 관련/PinchExample/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Event 관련/PinchExample/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Event 관련/PinchExample/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Event 관련/PinchExample/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | PinchExample 3 | 4 | -------------------------------------------------------------------------------- /Event 관련/PinchExample/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Event 관련/PinchExample/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Event 관련/PinchExample/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Event 관련/dialog, toast/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /Event 관련/dialog, toast/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Event 관련/dialog, toast/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /Event 관련/dialog, toast/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Event 관련/dialog, toast/app/src/main/res/drawable/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Event 관련/dialog, toast/app/src/main/res/drawable/ic_launcher.png -------------------------------------------------------------------------------- /Event 관련/dialog, toast/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Event 관련/dialog, toast/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Event 관련/dialog, toast/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Event 관련/dialog, toast/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Event 관련/dialog, toast/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Event 관련/dialog, toast/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Event 관련/dialog, toast/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Event 관련/dialog, toast/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Event 관련/dialog, toast/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Event 관련/dialog, toast/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Event 관련/dialog, toast/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Event 관련/dialog, toast/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Event 관련/dialog, toast/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Event 관련/dialog, toast/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Event 관련/dialog, toast/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Event 관련/dialog, toast/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Event 관련/dialog, toast/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | My Application 3 | 4 | -------------------------------------------------------------------------------- /Event 관련/dialog, toast/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Event 관련/dialog, toast/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Event 관련/dialog, toast/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Fragment 관련/FragmentExample/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/libraries 5 | /.idea/modules.xml 6 | /.idea/workspace.xml 7 | .DS_Store 8 | /build 9 | /captures 10 | .externalNativeBuild 11 | -------------------------------------------------------------------------------- /Fragment 관련/FragmentExample/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Fragment 관련/FragmentExample/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /Fragment 관련/FragmentExample/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Fragment 관련/FragmentExample/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Fragment 관련/FragmentExample/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Fragment 관련/FragmentExample/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Fragment 관련/FragmentExample/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Fragment 관련/FragmentExample/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Fragment 관련/FragmentExample/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Fragment 관련/FragmentExample/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Fragment 관련/FragmentExample/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Fragment 관련/FragmentExample/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Fragment 관련/FragmentExample/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Fragment 관련/FragmentExample/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | FragmentExample 3 | 4 | -------------------------------------------------------------------------------- /Fragment 관련/FragmentExample/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Fragment 관련/FragmentExample/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Fragment 관련/FragmentExample/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Fragment 관련/TabLayoutDemo/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/libraries 5 | /.idea/modules.xml 6 | /.idea/workspace.xml 7 | .DS_Store 8 | /build 9 | /captures 10 | .externalNativeBuild 11 | -------------------------------------------------------------------------------- /Fragment 관련/TabLayoutDemo/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Fragment 관련/TabLayoutDemo/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /Fragment 관련/TabLayoutDemo/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Fragment 관련/TabLayoutDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Fragment 관련/TabLayoutDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Fragment 관련/TabLayoutDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Fragment 관련/TabLayoutDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Fragment 관련/TabLayoutDemo/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Fragment 관련/TabLayoutDemo/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Fragment 관련/TabLayoutDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Fragment 관련/TabLayoutDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Fragment 관련/TabLayoutDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Fragment 관련/TabLayoutDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Fragment 관련/TabLayoutDemo/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 16dp 3 | 4 | -------------------------------------------------------------------------------- /Fragment 관련/TabLayoutDemo/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Fragment 관련/TabLayoutDemo/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Fragment 관련/TabLayoutDemo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Fragment 관련/Viewpager_practice/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/libraries 5 | /.idea/modules.xml 6 | /.idea/workspace.xml 7 | .DS_Store 8 | /build 9 | /captures 10 | .externalNativeBuild 11 | -------------------------------------------------------------------------------- /Fragment 관련/Viewpager_practice/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Fragment 관련/Viewpager_practice/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /Fragment 관련/Viewpager_practice/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Fragment 관련/Viewpager_practice/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Fragment 관련/Viewpager_practice/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Fragment 관련/Viewpager_practice/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Layout 관련/CardDemo_Upgrade_version/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/libraries 5 | /.idea/modules.xml 6 | /.idea/workspace.xml 7 | .DS_Store 8 | /build 9 | /captures 10 | .externalNativeBuild 11 | -------------------------------------------------------------------------------- /Layout 관련/CardDemo_Upgrade_version/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Layout 관련/CardDemo_Upgrade_version/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /Layout 관련/CardDemo_Upgrade_version/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Layout 관련/CardDemo_Upgrade_version/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 16dp 3 | 4 | -------------------------------------------------------------------------------- /Layout 관련/CardDemo_Upgrade_version/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | CardDemo_Upgrade_version 3 | Settings 4 | 5 | -------------------------------------------------------------------------------- /Layout 관련/CardDemo_Upgrade_version/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Layout 관련/CardDemo_Upgrade_version/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Layout 관련/CardDemo_Upgrade_version/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Layout 관련/ConsraintLayout 관련/ConstraintLayout_Project/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Layout 관련/ConsraintLayout 관련/ConstraintLayout_Project/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | ConstraintLayout_Project 3 | 4 | -------------------------------------------------------------------------------- /Layout 관련/ConsraintLayout 관련/ConstraintLayout_Project/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Layout 관련/ConsraintLayout 관련/Constraintlayout_practice/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Layout 관련/ConsraintLayout 관련/Constraintlayout_practice/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | ConstraintLayout_practice 3 | 4 | -------------------------------------------------------------------------------- /Layout 관련/ConsraintLayout 관련/Constraintlayout_practice/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Layout 관련/ConsraintLayout 관련/Constraintlayoutchainpractice/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Layout 관련/ConsraintLayout 관련/Constraintlayoutchainpractice/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Constraintlayout-chain(practice) 3 | 4 | -------------------------------------------------------------------------------- /Layout 관련/ConsraintLayout 관련/Constraintlayoutchainpractice/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Other Tech/AudioApp/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/libraries 5 | /.idea/modules.xml 6 | /.idea/workspace.xml 7 | .DS_Store 8 | /build 9 | /captures 10 | .externalNativeBuild 11 | -------------------------------------------------------------------------------- /Other Tech/AudioApp/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/AudioApp/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /Other Tech/AudioApp/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Other Tech/AudioApp/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/AudioApp/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Other Tech/AudioApp/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/AudioApp/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Other Tech/AudioApp/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/AudioApp/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Other Tech/AudioApp/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/AudioApp/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Other Tech/AudioApp/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/AudioApp/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Other Tech/AudioApp/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/AudioApp/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Other Tech/AudioApp/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/AudioApp/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Other Tech/AudioApp/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/AudioApp/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Other Tech/AudioApp/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/AudioApp/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Other Tech/AudioApp/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | AudioApp 3 | 4 | -------------------------------------------------------------------------------- /Other Tech/AudioApp/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/AudioApp/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Other Tech/AudioApp/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Other Tech/CustomPrint/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/libraries 5 | /.idea/modules.xml 6 | /.idea/workspace.xml 7 | .DS_Store 8 | /build 9 | /captures 10 | .externalNativeBuild 11 | -------------------------------------------------------------------------------- /Other Tech/CustomPrint/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/CustomPrint/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /Other Tech/CustomPrint/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Other Tech/CustomPrint/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/CustomPrint/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Other Tech/CustomPrint/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/CustomPrint/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Other Tech/CustomPrint/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/CustomPrint/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Other Tech/CustomPrint/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/CustomPrint/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Other Tech/CustomPrint/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/CustomPrint/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Other Tech/CustomPrint/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | CustomPrint 3 | 4 | -------------------------------------------------------------------------------- /Other Tech/CustomPrint/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/CustomPrint/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Other Tech/CustomPrint/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Other Tech/FingerprintDemo/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/libraries 5 | /.idea/modules.xml 6 | /.idea/workspace.xml 7 | .DS_Store 8 | /build 9 | /captures 10 | .externalNativeBuild 11 | -------------------------------------------------------------------------------- /Other Tech/FingerprintDemo/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/FingerprintDemo/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /Other Tech/FingerprintDemo/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Other Tech/FingerprintDemo/app/src/main/res/drawable/ic_fp_40px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/FingerprintDemo/app/src/main/res/drawable/ic_fp_40px.png -------------------------------------------------------------------------------- /Other Tech/FingerprintDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/FingerprintDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Other Tech/FingerprintDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/FingerprintDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Other Tech/FingerprintDemo/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/FingerprintDemo/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Other Tech/FingerprintDemo/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | FingerprintDemo 3 | 4 | -------------------------------------------------------------------------------- /Other Tech/FingerprintDemo/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/FingerprintDemo/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Other Tech/FingerprintDemo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Other Tech/FirebaseNotify/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/libraries 5 | /.idea/modules.xml 6 | /.idea/workspace.xml 7 | .DS_Store 8 | /build 9 | /captures 10 | .externalNativeBuild 11 | -------------------------------------------------------------------------------- /Other Tech/FirebaseNotify/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/FirebaseNotify/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /Other Tech/FirebaseNotify/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Other Tech/FirebaseNotify/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/FirebaseNotify/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Other Tech/FirebaseNotify/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/FirebaseNotify/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Other Tech/FirebaseNotify/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/FirebaseNotify/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Other Tech/FirebaseNotify/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/FirebaseNotify/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Other Tech/FirebaseNotify/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | FirebaseNotify 3 | 4 | -------------------------------------------------------------------------------- /Other Tech/FirebaseNotify/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/FirebaseNotify/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Other Tech/FirebaseNotify/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Other Tech/HTMLPrint/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/libraries 5 | /.idea/modules.xml 6 | /.idea/workspace.xml 7 | .DS_Store 8 | /build 9 | /captures 10 | .externalNativeBuild 11 | -------------------------------------------------------------------------------- /Other Tech/HTMLPrint/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/HTMLPrint/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /Other Tech/HTMLPrint/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Other Tech/HTMLPrint/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/HTMLPrint/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Other Tech/HTMLPrint/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/HTMLPrint/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Other Tech/HTMLPrint/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/HTMLPrint/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Other Tech/HTMLPrint/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/HTMLPrint/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Other Tech/HTMLPrint/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/HTMLPrint/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Other Tech/HTMLPrint/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/HTMLPrint/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Other Tech/HTMLPrint/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/HTMLPrint/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Other Tech/HTMLPrint/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/HTMLPrint/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Other Tech/HTMLPrint/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | HTMLPrint 3 | 4 | -------------------------------------------------------------------------------- /Other Tech/HTMLPrint/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/HTMLPrint/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Other Tech/HTMLPrint/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Other Tech/LocalBound/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/libraries 5 | /.idea/modules.xml 6 | /.idea/workspace.xml 7 | .DS_Store 8 | /build 9 | /captures 10 | .externalNativeBuild 11 | -------------------------------------------------------------------------------- /Other Tech/LocalBound/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/LocalBound/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /Other Tech/LocalBound/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Other Tech/LocalBound/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/LocalBound/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Other Tech/LocalBound/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/LocalBound/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Other Tech/LocalBound/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/LocalBound/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Other Tech/LocalBound/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/LocalBound/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Other Tech/LocalBound/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/LocalBound/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Other Tech/LocalBound/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/LocalBound/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Other Tech/LocalBound/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/LocalBound/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Other Tech/LocalBound/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | LocalBound 3 | 4 | -------------------------------------------------------------------------------- /Other Tech/LocalBound/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/LocalBound/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Other Tech/LocalBound/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Other Tech/MapDemo/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/libraries 5 | /.idea/modules.xml 6 | /.idea/workspace.xml 7 | .DS_Store 8 | /build 9 | /captures 10 | .externalNativeBuild 11 | -------------------------------------------------------------------------------- /Other Tech/MapDemo/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/MapDemo/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /Other Tech/MapDemo/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Other Tech/MapDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/MapDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Other Tech/MapDemo/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/MapDemo/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Other Tech/MapDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/MapDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Other Tech/MapDemo/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/MapDemo/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Other Tech/MapDemo/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/MapDemo/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Other Tech/MapDemo/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/MapDemo/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Other Tech/MapDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/MapDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Other Tech/MapDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/MapDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Other Tech/MapDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/MapDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Other Tech/MapDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/MapDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Other Tech/MapDemo/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | MapDemo 3 | Map 4 | 5 | -------------------------------------------------------------------------------- /Other Tech/MapDemo/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/MapDemo/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Other Tech/MapDemo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Other Tech/MultiWindow/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/libraries 5 | /.idea/modules.xml 6 | /.idea/workspace.xml 7 | .DS_Store 8 | /build 9 | /captures 10 | .externalNativeBuild 11 | -------------------------------------------------------------------------------- /Other Tech/MultiWindow/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/MultiWindow/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /Other Tech/MultiWindow/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Other Tech/MultiWindow/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/MultiWindow/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Other Tech/MultiWindow/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/MultiWindow/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Other Tech/MultiWindow/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/MultiWindow/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Other Tech/MultiWindow/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/MultiWindow/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Other Tech/MultiWindow/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/MultiWindow/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Other Tech/MultiWindow/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | MultiWindow 3 | 4 | -------------------------------------------------------------------------------- /Other Tech/MultiWindow/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/MultiWindow/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Other Tech/MultiWindow/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Other Tech/Notification 관련/DirectReply/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Other Tech/Notification 관련/DirectReply/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | DirectReply 3 | 4 | -------------------------------------------------------------------------------- /Other Tech/Notification 관련/DirectReply/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/Notification 관련/DirectReply/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Other Tech/Notification 관련/DirectReply/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Other Tech/Notification 관련/NotifyDemo/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Other Tech/Notification 관련/NotifyDemo/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | NotifyDemo 3 | 4 | -------------------------------------------------------------------------------- /Other Tech/Notification 관련/NotifyDemo/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/Notification 관련/NotifyDemo/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Other Tech/Notification 관련/NotifyDemo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Other Tech/PermissionDemo/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/libraries 5 | /.idea/modules.xml 6 | /.idea/workspace.xml 7 | .DS_Store 8 | /build 9 | /captures 10 | .externalNativeBuild 11 | -------------------------------------------------------------------------------- /Other Tech/PermissionDemo/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/PermissionDemo/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /Other Tech/PermissionDemo/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Other Tech/PermissionDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/PermissionDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Other Tech/PermissionDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/PermissionDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Other Tech/PermissionDemo/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/PermissionDemo/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Other Tech/PermissionDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/PermissionDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Other Tech/PermissionDemo/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | PermissionDemo 3 | 4 | -------------------------------------------------------------------------------- /Other Tech/PermissionDemo/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/PermissionDemo/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Other Tech/PermissionDemo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Other Tech/RemoteBound/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/libraries 5 | /.idea/modules.xml 6 | /.idea/workspace.xml 7 | .DS_Store 8 | /build 9 | /captures 10 | .externalNativeBuild 11 | -------------------------------------------------------------------------------- /Other Tech/RemoteBound/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/RemoteBound/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /Other Tech/RemoteBound/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Other Tech/RemoteBound/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/RemoteBound/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Other Tech/RemoteBound/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/RemoteBound/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Other Tech/RemoteBound/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/RemoteBound/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Other Tech/RemoteBound/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/RemoteBound/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Other Tech/RemoteBound/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/RemoteBound/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Other Tech/RemoteBound/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | RemoteBound 3 | 4 | -------------------------------------------------------------------------------- /Other Tech/RemoteBound/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/RemoteBound/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Other Tech/RemoteBound/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Other Tech/Treading 관련/ThreadExample/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Other Tech/Treading 관련/ThreadExample/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | ThreadExample 3 | 4 | -------------------------------------------------------------------------------- /Other Tech/Treading 관련/ThreadExample/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/Treading 관련/ThreadExample/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Other Tech/Treading 관련/ThreadExample/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Other Tech/WebPrint/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/libraries 5 | /.idea/modules.xml 6 | /.idea/workspace.xml 7 | .DS_Store 8 | /build 9 | /captures 10 | .externalNativeBuild 11 | -------------------------------------------------------------------------------- /Other Tech/WebPrint/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/WebPrint/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /Other Tech/WebPrint/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Other Tech/WebPrint/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/WebPrint/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Other Tech/WebPrint/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/WebPrint/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Other Tech/WebPrint/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/WebPrint/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Other Tech/WebPrint/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/WebPrint/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Other Tech/WebPrint/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/WebPrint/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Other Tech/WebPrint/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/WebPrint/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Other Tech/WebPrint/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/WebPrint/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Other Tech/WebPrint/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/WebPrint/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Other Tech/WebPrint/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/WebPrint/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Other Tech/WebPrint/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 16dp 3 | 4 | -------------------------------------------------------------------------------- /Other Tech/WebPrint/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Other Tech/WebPrint/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Other Tech/WebPrint/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /View 관련/CameraApp/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/libraries 5 | /.idea/modules.xml 6 | /.idea/workspace.xml 7 | .DS_Store 8 | /build 9 | /captures 10 | .externalNativeBuild 11 | -------------------------------------------------------------------------------- /View 관련/CameraApp/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/View 관련/CameraApp/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /View 관련/CameraApp/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /View 관련/CameraApp/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/View 관련/CameraApp/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /View 관련/CameraApp/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/View 관련/CameraApp/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /View 관련/CameraApp/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/View 관련/CameraApp/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /View 관련/CameraApp/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/View 관련/CameraApp/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /View 관련/CameraApp/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/View 관련/CameraApp/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /View 관련/CameraApp/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/View 관련/CameraApp/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /View 관련/CameraApp/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/View 관련/CameraApp/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /View 관련/CameraApp/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/View 관련/CameraApp/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /View 관련/CameraApp/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/View 관련/CameraApp/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /View 관련/CameraApp/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/View 관련/CameraApp/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /View 관련/CameraApp/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | CameraApp 3 | 4 | -------------------------------------------------------------------------------- /View 관련/CameraApp/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/View 관련/CameraApp/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /View 관련/CameraApp/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /View 관련/CardDemo/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/libraries 5 | /.idea/modules.xml 6 | /.idea/workspace.xml 7 | .DS_Store 8 | /build 9 | /captures 10 | .externalNativeBuild 11 | -------------------------------------------------------------------------------- /View 관련/CardDemo/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/View 관련/CardDemo/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /View 관련/CardDemo/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /View 관련/CardDemo/app/src/main/res/drawable-v24/android_image_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/View 관련/CardDemo/app/src/main/res/drawable-v24/android_image_1.png -------------------------------------------------------------------------------- /View 관련/CardDemo/app/src/main/res/drawable-v24/android_image_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/View 관련/CardDemo/app/src/main/res/drawable-v24/android_image_2.png -------------------------------------------------------------------------------- /View 관련/CardDemo/app/src/main/res/drawable-v24/android_image_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/View 관련/CardDemo/app/src/main/res/drawable-v24/android_image_3.png -------------------------------------------------------------------------------- /View 관련/CardDemo/app/src/main/res/drawable-v24/android_image_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/View 관련/CardDemo/app/src/main/res/drawable-v24/android_image_4.png -------------------------------------------------------------------------------- /View 관련/CardDemo/app/src/main/res/drawable-v24/android_image_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/View 관련/CardDemo/app/src/main/res/drawable-v24/android_image_5.png -------------------------------------------------------------------------------- /View 관련/CardDemo/app/src/main/res/drawable-v24/android_image_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/View 관련/CardDemo/app/src/main/res/drawable-v24/android_image_6.png -------------------------------------------------------------------------------- /View 관련/CardDemo/app/src/main/res/drawable-v24/android_image_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/View 관련/CardDemo/app/src/main/res/drawable-v24/android_image_7.png -------------------------------------------------------------------------------- /View 관련/CardDemo/app/src/main/res/drawable-v24/android_image_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/View 관련/CardDemo/app/src/main/res/drawable-v24/android_image_8.png -------------------------------------------------------------------------------- /View 관련/CardDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/View 관련/CardDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /View 관련/CardDemo/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/View 관련/CardDemo/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /View 관련/CardDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/View 관련/CardDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /View 관련/CardDemo/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/View 관련/CardDemo/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /View 관련/CardDemo/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/View 관련/CardDemo/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /View 관련/CardDemo/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/View 관련/CardDemo/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /View 관련/CardDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/View 관련/CardDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /View 관련/CardDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/View 관련/CardDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /View 관련/CardDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/View 관련/CardDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /View 관련/CardDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/View 관련/CardDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /View 관련/CardDemo/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 16dp 3 | 4 | -------------------------------------------------------------------------------- /View 관련/CardDemo/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | CardDemo 3 | Settings 4 | 5 | -------------------------------------------------------------------------------- /View 관련/CardDemo/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/View 관련/CardDemo/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /View 관련/CardDemo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /View 관련/Recyclerview_practice/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/libraries 5 | /.idea/modules.xml 6 | /.idea/workspace.xml 7 | .DS_Store 8 | /build 9 | /captures 10 | .externalNativeBuild 11 | -------------------------------------------------------------------------------- /View 관련/Recyclerview_practice/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/View 관련/Recyclerview_practice/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /View 관련/Recyclerview_practice/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /View 관련/Recyclerview_practice/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | RecyclerView_Practice 3 | 4 | -------------------------------------------------------------------------------- /View 관련/Recyclerview_practice/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/View 관련/Recyclerview_practice/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /View 관련/Recyclerview_practice/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /View 관련/VideoPlayer/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/libraries 5 | /.idea/modules.xml 6 | /.idea/workspace.xml 7 | .DS_Store 8 | /build 9 | /captures 10 | .externalNativeBuild 11 | -------------------------------------------------------------------------------- /View 관련/VideoPlayer/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/View 관련/VideoPlayer/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /View 관련/VideoPlayer/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /View 관련/VideoPlayer/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/View 관련/VideoPlayer/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /View 관련/VideoPlayer/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/View 관련/VideoPlayer/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /View 관련/VideoPlayer/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/View 관련/VideoPlayer/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /View 관련/VideoPlayer/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/View 관련/VideoPlayer/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /View 관련/VideoPlayer/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/View 관련/VideoPlayer/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /View 관련/VideoPlayer/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/View 관련/VideoPlayer/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /View 관련/VideoPlayer/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/View 관련/VideoPlayer/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /View 관련/VideoPlayer/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/View 관련/VideoPlayer/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /View 관련/VideoPlayer/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/View 관련/VideoPlayer/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /View 관련/VideoPlayer/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | VideoPlayer 3 | 4 | -------------------------------------------------------------------------------- /View 관련/VideoPlayer/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/View 관련/VideoPlayer/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /View 관련/VideoPlayer/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Widget 관련/FabExample/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/libraries 5 | /.idea/modules.xml 6 | /.idea/workspace.xml 7 | .DS_Store 8 | /build 9 | /captures 10 | .externalNativeBuild 11 | -------------------------------------------------------------------------------- /Widget 관련/FabExample/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Widget 관련/FabExample/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /Widget 관련/FabExample/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Widget 관련/FabExample/app/src/main/res/drawable-v24/ic_add_entry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Widget 관련/FabExample/app/src/main/res/drawable-v24/ic_add_entry.png -------------------------------------------------------------------------------- /Widget 관련/FabExample/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Widget 관련/FabExample/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Widget 관련/FabExample/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Widget 관련/FabExample/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Widget 관련/FabExample/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Widget 관련/FabExample/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Widget 관련/FabExample/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Widget 관련/FabExample/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Widget 관련/FabExample/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Widget 관련/FabExample/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Widget 관련/FabExample/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Widget 관련/FabExample/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Widget 관련/FabExample/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Widget 관련/FabExample/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Widget 관련/FabExample/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Widget 관련/FabExample/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Widget 관련/FabExample/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 16dp 3 | 4 | -------------------------------------------------------------------------------- /Widget 관련/FabExample/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | FabExample 3 | Settings 4 | 5 | -------------------------------------------------------------------------------- /Widget 관련/FabExample/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Widget 관련/FabExample/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Widget 관련/FabExample/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Widget 관련/MenuExample/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/libraries 5 | /.idea/modules.xml 6 | /.idea/workspace.xml 7 | .DS_Store 8 | /build 9 | /captures 10 | .externalNativeBuild 11 | -------------------------------------------------------------------------------- /Widget 관련/MenuExample/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Widget 관련/MenuExample/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /Widget 관련/MenuExample/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Widget 관련/MenuExample/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Widget 관련/MenuExample/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Widget 관련/MenuExample/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Widget 관련/MenuExample/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Widget 관련/MenuExample/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Widget 관련/MenuExample/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Widget 관련/MenuExample/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Widget 관련/MenuExample/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Widget 관련/MenuExample/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Widget 관련/MenuExample/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Widget 관련/MenuExample/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Widget 관련/MenuExample/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Widget 관련/MenuExample/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Widget 관련/MenuExample/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Widget 관련/MenuExample/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 16dp 3 | 4 | -------------------------------------------------------------------------------- /Widget 관련/MenuExample/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | MenuExample 3 | Settings 4 | 5 | -------------------------------------------------------------------------------- /Widget 관련/MenuExample/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Widget 관련/MenuExample/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Widget 관련/MenuExample/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Widget 관련/Toolbar_practice/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/libraries 5 | /.idea/modules.xml 6 | /.idea/workspace.xml 7 | .DS_Store 8 | /build 9 | /captures 10 | .externalNativeBuild 11 | -------------------------------------------------------------------------------- /Widget 관련/Toolbar_practice/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Widget 관련/Toolbar_practice/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /Widget 관련/Toolbar_practice/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Widget 관련/Toolbar_practice/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Widget 관련/Toolbar_practice/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Widget 관련/Toolbar_practice/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Widget 관련/Toolbar_practice/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Widget 관련/Toolbar_practice/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Widget 관련/Toolbar_practice/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Widget 관련/Toolbar_practice/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Toolbar_practice 3 | 4 | -------------------------------------------------------------------------------- /Widget 관련/Toolbar_practice/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/Widget 관련/Toolbar_practice/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Widget 관련/Toolbar_practice/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /기초 다지기/firstpractice/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /기초 다지기/firstpractice/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 다지기/firstpractice/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /기초 다지기/firstpractice/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 다지기/firstpractice/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /기초 다지기/firstpractice/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 다지기/firstpractice/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /기초 다지기/firstpractice/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 다지기/firstpractice/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /기초 다지기/firstpractice/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 다지기/firstpractice/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /기초 다지기/firstpractice/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 다지기/firstpractice/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /기초 다지기/firstpractice/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 다지기/firstpractice/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /기초 다지기/firstpractice/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 다지기/firstpractice/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /기초 다지기/firstpractice/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 다지기/firstpractice/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /기초 다지기/firstpractice/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 다지기/firstpractice/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /기초 다지기/firstpractice/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | My Application 3 | 4 | -------------------------------------------------------------------------------- /기초 다지기/secondpractice/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /기초 다지기/secondpractice/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 다지기/secondpractice/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /기초 다지기/secondpractice/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 다지기/secondpractice/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /기초 다지기/secondpractice/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 다지기/secondpractice/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /기초 다지기/secondpractice/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 다지기/secondpractice/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /기초 다지기/secondpractice/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 다지기/secondpractice/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /기초 다지기/secondpractice/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 다지기/secondpractice/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /기초 다지기/secondpractice/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 다지기/secondpractice/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /기초 다지기/secondpractice/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 다지기/secondpractice/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /기초 다지기/secondpractice/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 다지기/secondpractice/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /기초 다지기/secondpractice/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 다지기/secondpractice/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /기초 다지기/secondpractice/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | My Application 3 | 4 | -------------------------------------------------------------------------------- /기초 다지기/웹 브라우저/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /기초 다지기/웹 브라우저/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 다지기/웹 브라우저/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /기초 다지기/웹 브라우저/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /기초 다지기/웹 브라우저/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 다지기/웹 브라우저/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /기초 다지기/웹 브라우저/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 다지기/웹 브라우저/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /기초 다지기/웹 브라우저/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 다지기/웹 브라우저/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /기초 다지기/웹 브라우저/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 다지기/웹 브라우저/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /기초 다지기/웹 브라우저/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 다지기/웹 브라우저/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /기초 다지기/웹 브라우저/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 다지기/웹 브라우저/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /기초 다지기/웹 브라우저/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 다지기/웹 브라우저/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /기초 다지기/웹 브라우저/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 다지기/웹 브라우저/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /기초 다지기/웹 브라우저/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 다지기/웹 브라우저/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /기초 다지기/웹 브라우저/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 다지기/웹 브라우저/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /기초 다지기/웹 브라우저/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | My Application 3 | 4 | -------------------------------------------------------------------------------- /기초 다지기/웹 브라우저/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 다지기/웹 브라우저/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /기초 다지기/웹 브라우저/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /기초 프로젝트/Bicon/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/libraries 5 | /.idea/modules.xml 6 | /.idea/workspace.xml 7 | .DS_Store 8 | /build 9 | /captures 10 | .externalNativeBuild 11 | -------------------------------------------------------------------------------- /기초 프로젝트/Bicon/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/Bicon/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /기초 프로젝트/Bicon/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /기초 프로젝트/Bicon/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/Bicon/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /기초 프로젝트/Bicon/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/Bicon/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /기초 프로젝트/Bicon/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/Bicon/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /기초 프로젝트/Bicon/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/Bicon/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /기초 프로젝트/Bicon/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/Bicon/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /기초 프로젝트/Bicon/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/Bicon/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /기초 프로젝트/Bicon/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/Bicon/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /기초 프로젝트/Bicon/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/Bicon/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /기초 프로젝트/Bicon/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/Bicon/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /기초 프로젝트/Bicon/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/Bicon/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /기초 프로젝트/Bicon/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Bicon 3 | Hellow World 4 | 5 | -------------------------------------------------------------------------------- /기초 프로젝트/Bicon/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/Bicon/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /기초 프로젝트/Bicon/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /기초 프로젝트/DMSQ/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/libraries 5 | /.idea/modules.xml 6 | /.idea/workspace.xml 7 | .DS_Store 8 | /build 9 | /captures 10 | .externalNativeBuild 11 | -------------------------------------------------------------------------------- /기초 프로젝트/DMSQ/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/DMSQ/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /기초 프로젝트/DMSQ/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /기초 프로젝트/DMSQ/app/release/app-release.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/DMSQ/app/release/app-release.apk -------------------------------------------------------------------------------- /기초 프로젝트/DMSQ/app/src/main/res/drawable/meal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/DMSQ/app/src/main/res/drawable/meal.png -------------------------------------------------------------------------------- /기초 프로젝트/DMSQ/app/src/main/res/drawable/mypage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/DMSQ/app/src/main/res/drawable/mypage.png -------------------------------------------------------------------------------- /기초 프로젝트/DMSQ/app/src/main/res/drawable/rule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/DMSQ/app/src/main/res/drawable/rule.png -------------------------------------------------------------------------------- /기초 프로젝트/DMSQ/app/src/main/res/drawable/study.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/DMSQ/app/src/main/res/drawable/study.png -------------------------------------------------------------------------------- /기초 프로젝트/DMSQ/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/DMSQ/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /기초 프로젝트/DMSQ/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/DMSQ/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /기초 프로젝트/DMSQ/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/DMSQ/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /기초 프로젝트/DMSQ/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/DMSQ/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /기초 프로젝트/DMSQ/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/DMSQ/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /기초 프로젝트/DMSQ/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/DMSQ/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /기초 프로젝트/DMSQ/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/DMSQ/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /기초 프로젝트/DMSQ/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/DMSQ/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /기초 프로젝트/DMSQ/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/DMSQ/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /기초 프로젝트/DMSQ/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/DMSQ/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /기초 프로젝트/DMSQ/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | DMS Quest 3 | 4 | -------------------------------------------------------------------------------- /기초 프로젝트/DMSQ/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/DMSQ/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /기초 프로젝트/DMSQ/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /기초 프로젝트/Database/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/libraries 5 | /.idea/modules.xml 6 | /.idea/workspace.xml 7 | .DS_Store 8 | /build 9 | /captures 10 | .externalNativeBuild 11 | -------------------------------------------------------------------------------- /기초 프로젝트/Database/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/Database/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /기초 프로젝트/Database/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /기초 프로젝트/Database/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/Database/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /기초 프로젝트/Database/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/Database/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /기초 프로젝트/Database/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/Database/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /기초 프로젝트/Database/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/Database/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /기초 프로젝트/Database/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/Database/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /기초 프로젝트/Database/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/Database/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /기초 프로젝트/Database/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/Database/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /기초 프로젝트/Database/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/Database/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /기초 프로젝트/Database/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/Database/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /기초 프로젝트/Database/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/Database/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /기초 프로젝트/Database/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/Database/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /기초 프로젝트/Database/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /기초 프로젝트/Secret/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/libraries 5 | /.idea/modules.xml 6 | /.idea/workspace.xml 7 | .DS_Store 8 | /build 9 | /captures 10 | .externalNativeBuild 11 | -------------------------------------------------------------------------------- /기초 프로젝트/Secret/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /기초 프로젝트/Secret/app/release/app-release.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/Secret/app/release/app-release.apk -------------------------------------------------------------------------------- /기초 프로젝트/Secret/app/release/gram.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/Secret/app/release/gram.apk -------------------------------------------------------------------------------- /기초 프로젝트/Secret/app/src/main/res/drawable-v24/left.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/Secret/app/src/main/res/drawable-v24/left.PNG -------------------------------------------------------------------------------- /기초 프로젝트/Secret/app/src/main/res/drawable-v24/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/Secret/app/src/main/res/drawable-v24/lock.png -------------------------------------------------------------------------------- /기초 프로젝트/Secret/app/src/main/res/drawable-v24/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/Secret/app/src/main/res/drawable-v24/logo.png -------------------------------------------------------------------------------- /기초 프로젝트/Secret/app/src/main/res/drawable-v24/person.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/Secret/app/src/main/res/drawable-v24/person.png -------------------------------------------------------------------------------- /기초 프로젝트/Secret/app/src/main/res/drawable-v24/right.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/Secret/app/src/main/res/drawable-v24/right.PNG -------------------------------------------------------------------------------- /기초 프로젝트/Secret/app/src/main/res/drawable/로고.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/Secret/app/src/main/res/drawable/로고.png -------------------------------------------------------------------------------- /기초 프로젝트/Secret/app/src/main/res/drawable/사람.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/Secret/app/src/main/res/drawable/사람.png -------------------------------------------------------------------------------- /기초 프로젝트/Secret/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/Secret/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /기초 프로젝트/Secret/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/Secret/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /기초 프로젝트/Secret/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/Secret/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /기초 프로젝트/Secret/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/Secret/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /기초 프로젝트/Secret/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/Secret/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /기초 프로젝트/Secret/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/Secret/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /기초 프로젝트/Secret/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/Secret/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /기초 프로젝트/Secret/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/Secret/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /기초 프로젝트/Secret/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/Secret/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /기초 프로젝트/Secret/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/Secret/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /기초 프로젝트/Secret/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/Secret/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /기초 프로젝트/Secret/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /기초 프로젝트/StorageDemo/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/libraries 5 | /.idea/modules.xml 6 | /.idea/workspace.xml 7 | .DS_Store 8 | /build 9 | /captures 10 | .externalNativeBuild 11 | -------------------------------------------------------------------------------- /기초 프로젝트/StorageDemo/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/StorageDemo/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /기초 프로젝트/StorageDemo/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /기초 프로젝트/StorageDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/StorageDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /기초 프로젝트/StorageDemo/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/StorageDemo/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /기초 프로젝트/StorageDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/StorageDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /기초 프로젝트/StorageDemo/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/StorageDemo/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /기초 프로젝트/StorageDemo/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/StorageDemo/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /기초 프로젝트/StorageDemo/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/StorageDemo/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /기초 프로젝트/StorageDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/StorageDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /기초 프로젝트/StorageDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/StorageDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /기초 프로젝트/StorageDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/StorageDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /기초 프로젝트/StorageDemo/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | StorageDemo 3 | 4 | -------------------------------------------------------------------------------- /기초 프로젝트/StorageDemo/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/StorageDemo/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /기초 프로젝트/StorageDemo/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /기초 프로젝트/Weekend/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/libraries 5 | /.idea/modules.xml 6 | /.idea/workspace.xml 7 | .DS_Store 8 | /build 9 | /captures 10 | .externalNativeBuild 11 | -------------------------------------------------------------------------------- /기초 프로젝트/Weekend/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/Weekend/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /기초 프로젝트/Weekend/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /기초 프로젝트/Weekend/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/Weekend/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /기초 프로젝트/Weekend/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/Weekend/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /기초 프로젝트/Weekend/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/Weekend/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /기초 프로젝트/Weekend/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/Weekend/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /기초 프로젝트/Weekend/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/Weekend/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /기초 프로젝트/Weekend/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/Weekend/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /기초 프로젝트/Weekend/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/Weekend/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /기초 프로젝트/Weekend/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/Weekend/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /기초 프로젝트/Weekend/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/Weekend/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /기초 프로젝트/Weekend/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/Weekend/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /기초 프로젝트/Weekend/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Weekend 3 | 4 | -------------------------------------------------------------------------------- /기초 프로젝트/Weekend/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jinusong/Android/0a6316f0782c9ca40444cdbb7d5eecb89077b9a4/기초 프로젝트/Weekend/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /기초 프로젝트/Weekend/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | --------------------------------------------------------------------------------