• AI글쓰기 2.1 업데이트
BRONZE
BRONZE 등급의 판매자 자료
non-ai
판매자가 AI를 사용하지 않은 독창적인 자료

안드로이드 스튜디오로 스탑워치 앱 만들기

Chronometer 클래스로 구현한 안드로이드 스탑워치 어플리케이션입니다. 한줄 한줄 소스에 대한 주석이 달려 있어서 공부하시는데 큰 도움이 될 것입니다. Chronometer 클래스는 간단한 타이머 클래스입니다. elapsedRealtime() 을 베이스로 한 시간을 계산하는 방법으로 구현합니다. start(), stop(), setBase() 함수를 사용하여 스탑워치를 구현합니다. UI는 Chronometer 뷰, 버튼 뷰 3개(시작, 정지, 리셋)를 이용해 구현했습니다. 각 UI는 MainActivity.java에서 각각의 역할을 수행합니다. 시작 : 스탑워치를 시작하는 역할을 합니다. 정지 : 스탑워치를 정지하는 역할을 합니다. 리셋 : 스탑워치를 리셋하는 역할을 합니다. 간단하고도 재미있는 안드로이드 스탑워치 어플리케이션 개발하기. 여러분도 직접 따라해보세요!!
압축파일
최초등록일 2018.01.15 최종저작일 2018.01
  • 미리보기

    소개

    Chronometer 클래스로 구현한 안드로이드 스탑워치 어플리케이션입니다.
    한줄 한줄 소스에 대한 주석이 달려 있어서 공부하시는데 큰 도움이 될 것입니다.

    Chronometer 클래스는 간단한 타이머 클래스입니다.
    elapsedRealtime() 을 베이스로 한 시간을 계산하는 방법으로 구현합니다.
    start(), stop(), setBase() 함수를 사용하여 스탑워치를 구현합니다.

    UI는 Chronometer 뷰, 버튼 뷰 3개(시작, 정지, 리셋)를 이용해 구현했습니다.
    각 UI는 MainActivity.java에서 각각의 역할을 수행합니다.

    시작 : 스탑워치를 시작하는 역할을 합니다.
    정지 : 스탑워치를 정지하는 역할을 합니다.
    리셋 : 스탑워치를 리셋하는 역할을 합니다.

    간단하고도 재미있는 안드로이드 스탑워치 어플리케이션 개발하기.
    여러분도 직접 따라해보세요!!

    컴파일 실행환경

    Andriod Studio

    참고자료

    · Chronometer 클래스 reference 입니다.
    · https://developer.android.com/reference/android/widget/Chronometer.html
  • 압축파일 내 파일목록

    · 001.HowToOpenProject/001_New메뉴의_Open클릭.png
    · 001.HowToOpenProject/002_다운받은경로로가서_프로젝트파일선택후_OK버튼.png
    · 002.Project/StopWatch/.gitignore
    · 002.Project/StopWatch/.gradle/4.1/fileChanges/last-build.bin
    · 002.Project/StopWatch/.gradle/4.1/fileContent/fileContent.lock
    · 002.Project/StopWatch/.gradle/4.1/fileHashes/fileHashes.bin
    · 002.Project/StopWatch/.gradle/4.1/fileHashes/fileHashes.lock
    · 002.Project/StopWatch/.gradle/4.1/fileHashes/resourceHashesCache.bin
    · 002.Project/StopWatch/.gradle/4.1/javaCompile/classAnalysis.bin
    · 002.Project/StopWatch/.gradle/4.1/javaCompile/jarAnalysis.bin
    · 002.Project/StopWatch/.gradle/4.1/javaCompile/javaCompile.lock
    · 002.Project/StopWatch/.gradle/4.1/javaCompile/taskHistory.bin
    · 002.Project/StopWatch/.gradle/4.1/javaCompile/taskJars.bin
    · 002.Project/StopWatch/.gradle/4.1/taskHistory/fileSnapshots.bin
    · 002.Project/StopWatch/.gradle/4.1/taskHistory/taskHistory.bin
    · 002.Project/StopWatch/.gradle/4.1/taskHistory/taskHistory.lock
    · 002.Project/StopWatch/.gradle/buildOutputCleanup/cache.properties
    · 002.Project/StopWatch/.gradle/buildOutputCleanup/cache.properties.lock
    · 002.Project/StopWatch/app/.gitignore
    · 002.Project/StopWatch/app/app.iml
    · 002.Project/StopWatch/app/build.gradle
    · 002.Project/StopWatch/app/build/generated/mockable-android-26.v3.jar
    · 002.Project/StopWatch/app/build/generated/res/pngs/debug/drawable-anydpi-v21/ic_launcher_background.xml
    · 002.Project/StopWatch/app/build/generated/res/pngs/debug/drawable-hdpi/ic_launcher_background.png
    · 002.Project/StopWatch/app/build/generated/res/pngs/debug/drawable-ldpi/ic_launcher_background.png
    · 002.Project/StopWatch/app/build/generated/res/pngs/debug/drawable-mdpi/ic_launcher_background.png
    · 002.Project/StopWatch/app/build/generated/res/pngs/debug/drawable-xhdpi/ic_launcher_background.png
    · 002.Project/StopWatch/app/build/generated/res/pngs/debug/drawable-xxhdpi/ic_launcher_background.png
    · 002.Project/StopWatch/app/build/generated/res/pngs/debug/drawable-xxxhdpi/ic_launcher_background.png
    · 002.Project/StopWatch/app/build/generated/source/buildConfig/androidTest/debug/jydev/net/stopwatch/test/BuildConfig.java
    · 002.Project/StopWatch/app/build/generated/source/buildConfig/debug/jydev/net/stopwatch/BuildConfig.java
    · 002.Project/StopWatch/app/build/generated/source/r/androidTest/debug/android/support/test/espresso/idling/concurrent/R.java
    · 002.Project/StopWatch/app/build/generated/source/r/androidTest/debug/android/support/test/espresso/R.java
    · 002.Project/StopWatch/app/build/generated/source/r/androidTest/debug/android/support/test/rules/R.java
    · 002.Project/StopWatch/app/build/generated/source/r/androidTest/debug/android/support/test/runner/R.java
    · 002.Project/StopWatch/app/build/generated/source/r/androidTest/debug/jydev/net/stopwatch/test/R.java
    · 002.Project/StopWatch/app/build/generated/source/r/debug/android/arch/lifecycle/R.java
    · 002.Project/StopWatch/app/build/generated/source/r/debug/android/support/compat/R.java
    · 002.Project/StopWatch/app/build/generated/source/r/debug/android/support/constraint/R.java
    · 002.Project/StopWatch/app/build/generated/source/r/debug/android/support/coreui/R.java
    · 002.Project/StopWatch/app/build/generated/source/r/debug/android/support/coreutils/R.java
    · 002.Project/StopWatch/app/build/generated/source/r/debug/android/support/fragment/R.java
    · 002.Project/StopWatch/app/build/generated/source/r/debug/android/support/graphics/drawable/animated/R.java
    · 002.Project/StopWatch/app/build/generated/source/r/debug/android/support/graphics/drawable/R.java
    · 002.Project/StopWatch/app/build/generated/source/r/debug/android/support/mediacompat/R.java
    · 002.Project/StopWatch/app/build/generated/source/r/debug/android/support/v4/R.java
    · 002.Project/StopWatch/app/build/generated/source/r/debug/android/support/v7/appcompat/R.java
    · 002.Project/StopWatch/app/build/generated/source/r/debug/jydev/net/stopwatch/R.java
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/debug.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-af.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-am.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-ar.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-az.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-b+sr+Latn.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-be.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-bg.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-bn.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-bs.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-ca.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-cs.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-da.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-de.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-el.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-en-rAU.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-en-rGB.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-en-rIN.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-es.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-es-rUS.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-et.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-eu.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-fa.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-fi.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-fr.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-fr-rCA.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-gl.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-gu.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-h720dp-v13.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-hdpi-v4.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-hi.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-hr.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-hu.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-hy.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-in.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-is.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-it.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-iw.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-ja.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-ka.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-kk.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-km.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-kn.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-ko.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-ky.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-land.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-large-v4.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-ldltr-v21.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-lo.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-lt.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-lv.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-mk.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-ml.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-mn.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-mr.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-ms.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-my.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-nb.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-ne.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-night-v8.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-nl.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-pa.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-pl.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-port.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-pt.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-pt-rBR.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-pt-rPT.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-ro.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-ru.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-si.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-sk.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-sl.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-sq.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-sr.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-sv.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-sw.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-sw600dp-v13.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-ta.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-te.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-th.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-tl.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-tr.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-uk.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-ur.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-uz.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-v11.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-v12.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-v13.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-v14.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-v16.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-v17.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-v18.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-v21.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-v22.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-v23.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-v24.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-v25.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-v26.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-vi.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-xlarge-v4.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-zh-rCN.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-zh-rHK.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-zh-rTW.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/multi-v2/values-zu.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/androidTest/debug/single/debug.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/debug.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-af.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-am.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-ar.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-az.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-b+sr+Latn.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-be.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-bg.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-bn.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-bs.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-ca.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-cs.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-da.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-de.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-el.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-en-rAU.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-en-rGB.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-en-rIN.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-es.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-es-rUS.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-et.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-eu.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-fa.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-fi.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-fr.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-fr-rCA.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-gl.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-gu.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-h720dp-v13.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-hdpi-v4.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-hi.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-hr.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-hu.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-hy.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-in.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-is.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-it.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-iw.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-ja.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-ka.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-kk.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-km.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-kn.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-ko.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-ky.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-land.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-large-v4.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-ldltr-v21.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-lo.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-lt.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-lv.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-mk.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-ml.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-mn.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-mr.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-ms.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-my.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-nb.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-ne.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-night-v8.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-nl.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-pa.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-pl.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-port.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-pt.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-pt-rBR.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-pt-rPT.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-ro.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-ru.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-si.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-sk.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-sl.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-sq.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-sr.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-sv.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-sw.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-sw600dp-v13.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-ta.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-te.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-th.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-tl.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-tr.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-uk.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-ur.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-uz.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-v11.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-v12.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-v13.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-v14.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-v16.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-v17.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-v18.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-v21.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-v22.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-v23.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-v24.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-v25.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-v26.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-vi.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-xlarge-v4.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-zh-rCN.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-zh-rHK.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-zh-rTW.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/multi-v2/values-zu.json
    · 002.Project/StopWatch/app/build/intermediates/blame/res/debug/single/debug.json
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/arch/lifecycle/R.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/compat/R$attr.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/compat/R$bool.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/compat/R$color.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/compat/R$dimen.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/compat/R$drawable.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/compat/R$id.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/compat/R$integer.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/compat/R$layout.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/compat/R$string.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/compat/R$style.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/compat/R$styleable.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/compat/R.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/constraint/R$attr.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/constraint/R$id.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/constraint/R$styleable.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/constraint/R.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/coreui/R$attr.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/coreui/R$bool.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/coreui/R$color.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/coreui/R$dimen.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/coreui/R$drawable.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/coreui/R$id.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/coreui/R$integer.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/coreui/R$layout.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/coreui/R$string.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/coreui/R$style.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/coreui/R$styleable.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/coreui/R.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/coreutils/R$attr.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/coreutils/R$bool.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/coreutils/R$color.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/coreutils/R$dimen.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/coreutils/R$drawable.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/coreutils/R$id.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/coreutils/R$integer.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/coreutils/R$layout.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/coreutils/R$string.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/coreutils/R$style.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/coreutils/R$styleable.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/coreutils/R.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/fragment/R$attr.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/fragment/R$bool.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/fragment/R$color.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/fragment/R$dimen.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/fragment/R$drawable.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/fragment/R$id.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/fragment/R$integer.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/fragment/R$layout.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/fragment/R$string.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/fragment/R$style.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/fragment/R$styleable.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/fragment/R.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/graphics/drawable/animated/R$attr.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/graphics/drawable/animated/R$bool.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/graphics/drawable/animated/R$color.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/graphics/drawable/animated/R$dimen.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/graphics/drawable/animated/R$drawable.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/graphics/drawable/animated/R$id.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/graphics/drawable/animated/R$integer.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/graphics/drawable/animated/R$layout.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/graphics/drawable/animated/R$string.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/graphics/drawable/animated/R$style.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/graphics/drawable/animated/R$styleable.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/graphics/drawable/animated/R.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/graphics/drawable/R$attr.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/graphics/drawable/R$bool.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/graphics/drawable/R$color.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/graphics/drawable/R$dimen.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/graphics/drawable/R$drawable.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/graphics/drawable/R$id.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/graphics/drawable/R$integer.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/graphics/drawable/R$layout.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/graphics/drawable/R$string.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/graphics/drawable/R$style.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/graphics/drawable/R$styleable.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/graphics/drawable/R.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/mediacompat/R$attr.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/mediacompat/R$bool.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/mediacompat/R$color.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/mediacompat/R$dimen.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/mediacompat/R$drawable.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/mediacompat/R$id.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/mediacompat/R$integer.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/mediacompat/R$layout.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/mediacompat/R$string.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/mediacompat/R$style.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/mediacompat/R$styleable.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/mediacompat/R.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/v4/R$attr.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/v4/R$bool.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/v4/R$color.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/v4/R$dimen.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/v4/R$drawable.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/v4/R$id.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/v4/R$integer.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/v4/R$layout.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/v4/R$string.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/v4/R$style.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/v4/R$styleable.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/v4/R.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$anim.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$attr.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$bool.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$color.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$dimen.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$drawable.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$id.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$integer.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$layout.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$string.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$style.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/v7/appcompat/R$styleable.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/android/support/v7/appcompat/R.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/jydev/net/stopwatch/BuildConfig.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/jydev/net/stopwatch/MainActivity.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/jydev/net/stopwatch/R$anim.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/jydev/net/stopwatch/R$attr.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/jydev/net/stopwatch/R$bool.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/jydev/net/stopwatch/R$color.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/jydev/net/stopwatch/R$dimen.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/jydev/net/stopwatch/R$drawable.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/jydev/net/stopwatch/R$id.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/jydev/net/stopwatch/R$integer.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/jydev/net/stopwatch/R$layout.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/jydev/net/stopwatch/R$mipmap.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/jydev/net/stopwatch/R$string.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/jydev/net/stopwatch/R$style.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/jydev/net/stopwatch/R$styleable.class
    · 002.Project/StopWatch/app/build/intermediates/classes/debug/jydev/net/stopwatch/R.class
    · 002.Project/StopWatch/app/build/intermediates/incremental/compileDebugAidl/dependency.store
    · 002.Project/StopWatch/app/build/intermediates/incremental/compileDebugAndroidTestAidl/dependency.store
    · 002.Project/StopWatch/app/build/intermediates/incremental/debug-mergeJavaRes/merge-state
    · 002.Project/StopWatch/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/+c0IwwplG4yE46YxF7sv_0slml8=
    · 002.Project/StopWatch/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/0X4dv4wXR9E7gOBxUJIkUuuIJTY=
    · 002.Project/StopWatch/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/74iGPHggOA1rq2Tb7ydfsNO9daw=
    · 002.Project/StopWatch/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/A4Ag8Zf7pIbZR+JgDD2ovyj37A8=
    · 002.Project/StopWatch/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/ANxJnBB1zIBwVwqfTSRzxYIy3oU=
    · 002.Project/StopWatch/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/cTcDZdQE1nCG8ZWnXuYwDhi7TuM=
    · 002.Project/StopWatch/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/EKjOHlXac28ZEcPFvgOIKw1Lx1k=
    · 002.Project/StopWatch/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/faz9mDnpSrM9HUzm_qgzuXaPY+U=
    · 002.Project/StopWatch/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/GiPa6eYR8wZe2M6h+E_KNEybybk=
    · 002.Project/StopWatch/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/GWq8fbgOCeGWTQV2AB9LRROtpqE=
    · 002.Project/StopWatch/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/H8BkPwMO3QJxA15bysKiI9cu2C4=
    · 002.Project/StopWatch/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/IuddSng9ibhCEtTeigTfSQUkLcs=
    · 002.Project/StopWatch/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/oUCxwY2MMU9t3xHu6NrrFNE2mPE=
    · 002.Project/StopWatch/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/TPO+vH14Tu_hXk5v_DZF8N0FQj8=
    · 002.Project/StopWatch/app/build/intermediates/incremental/debug-mergeJavaRes/zip-cache/X_OGykDvUXjHqMgsvXzAlGzZ4iY=
    · 002.Project/StopWatch/app/build/intermediates/incremental/debug-mergeJniLibs/merge-state
    · 002.Project/StopWatch/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/+c0IwwplG4yE46YxF7sv_0slml8=
    · 002.Project/StopWatch/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/0X4dv4wXR9E7gOBxUJIkUuuIJTY=
    · 002.Project/StopWatch/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/74iGPHggOA1rq2Tb7ydfsNO9daw=
    · 002.Project/StopWatch/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/A4Ag8Zf7pIbZR+JgDD2ovyj37A8=
    · 002.Project/StopWatch/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/ANxJnBB1zIBwVwqfTSRzxYIy3oU=
    · 002.Project/StopWatch/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/cTcDZdQE1nCG8ZWnXuYwDhi7TuM=
    · 002.Project/StopWatch/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/EKjOHlXac28ZEcPFvgOIKw1Lx1k=
    · 002.Project/StopWatch/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/faz9mDnpSrM9HUzm_qgzuXaPY+U=
    · 002.Project/StopWatch/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/GiPa6eYR8wZe2M6h+E_KNEybybk=
    · 002.Project/StopWatch/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/GWq8fbgOCeGWTQV2AB9LRROtpqE=
    · 002.Project/StopWatch/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/H8BkPwMO3QJxA15bysKiI9cu2C4=
    · 002.Project/StopWatch/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/IuddSng9ibhCEtTeigTfSQUkLcs=
    · 002.Project/StopWatch/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/oUCxwY2MMU9t3xHu6NrrFNE2mPE=
    · 002.Project/StopWatch/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/TPO+vH14Tu_hXk5v_DZF8N0FQj8=
    · 002.Project/StopWatch/app/build/intermediates/incremental/debug-mergeJniLibs/zip-cache/X_OGykDvUXjHqMgsvXzAlGzZ4iY=
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/compile-file-map.properties
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values/values.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-af/values-af.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-am/values-am.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ar/values-ar.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-az/values-az.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-b+sr+Latn/values-b+sr+Latn.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-be/values-be.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-bg/values-bg.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-bn/values-bn.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-bs/values-bs.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ca/values-ca.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-cs/values-cs.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-da/values-da.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-de/values-de.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-el/values-el.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-en-rAU/values-en-rAU.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-en-rGB/values-en-rGB.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-en-rIN/values-en-rIN.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-es/values-es.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-es-rUS/values-es-rUS.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-et/values-et.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-eu/values-eu.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-fa/values-fa.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-fi/values-fi.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-fr/values-fr.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-fr-rCA/values-fr-rCA.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-gl/values-gl.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-gu/values-gu.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hi/values-hi.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hr/values-hr.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hu/values-hu.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-hy/values-hy.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-in/values-in.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-is/values-is.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-it/values-it.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-iw/values-iw.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ja/values-ja.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ka/values-ka.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-kk/values-kk.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-km/values-km.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-kn/values-kn.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ko/values-ko.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ky/values-ky.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-land/values-land.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-large-v4/values-large-v4.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ldltr-v21/values-ldltr-v21.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-lo/values-lo.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-lt/values-lt.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-lv/values-lv.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-mk/values-mk.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ml/values-ml.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-mn/values-mn.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-mr/values-mr.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ms/values-ms.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-my/values-my.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-nb/values-nb.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ne/values-ne.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-night-v8/values-night-v8.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-nl/values-nl.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-pa/values-pa.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-pl/values-pl.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-port/values-port.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-pt/values-pt.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-pt-rBR/values-pt-rBR.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-pt-rPT/values-pt-rPT.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ro/values-ro.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ru/values-ru.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-si/values-si.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-sk/values-sk.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-sl/values-sl.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-sq/values-sq.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-sr/values-sr.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-sv/values-sv.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-sw/values-sw.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-sw600dp-v13/values-sw600dp-v13.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ta/values-ta.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-te/values-te.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-th/values-th.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-tl/values-tl.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-tr/values-tr.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-uk/values-uk.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-ur/values-ur.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-uz/values-uz.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v11/values-v11.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v12/values-v12.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v13/values-v13.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v14/values-v14.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v16/values-v16.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v17/values-v17.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v18/values-v18.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v21/values-v21.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v22/values-v22.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v23/values-v23.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v24/values-v24.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v25/values-v25.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-v26/values-v26.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-vi/values-vi.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-xlarge-v4/values-xlarge-v4.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-zh-rCN/values-zh-rCN.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-zh-rHK/values-zh-rHK.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-zh-rTW/values-zh-rTW.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merged.dir/values-zu/values-zu.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAndroidTestResources/merger.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugAssets/merger.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugJniLibFolders/merger.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/compile-file-map.properties
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values/values.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-af/values-af.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-am/values-am.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ar/values-ar.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-az/values-az.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-b+sr+Latn/values-b+sr+Latn.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-be/values-be.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-bg/values-bg.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-bn/values-bn.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-bs/values-bs.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ca/values-ca.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-cs/values-cs.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-da/values-da.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-de/values-de.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-el/values-el.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rAU/values-en-rAU.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rGB/values-en-rGB.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-en-rIN/values-en-rIN.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-es/values-es.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-es-rUS/values-es-rUS.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-et/values-et.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-eu/values-eu.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fa/values-fa.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fi/values-fi.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fr/values-fr.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-fr-rCA/values-fr-rCA.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-gl/values-gl.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-gu/values-gu.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-h720dp-v13/values-h720dp-v13.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hdpi-v4/values-hdpi-v4.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hi/values-hi.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hr/values-hr.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hu/values-hu.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-hy/values-hy.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-in/values-in.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-is/values-is.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-it/values-it.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-iw/values-iw.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ja/values-ja.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ka/values-ka.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-kk/values-kk.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-km/values-km.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-kn/values-kn.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ko/values-ko.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ky/values-ky.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-land/values-land.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-large-v4/values-large-v4.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ldltr-v21/values-ldltr-v21.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-lo/values-lo.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-lt/values-lt.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-lv/values-lv.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-mk/values-mk.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ml/values-ml.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-mn/values-mn.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-mr/values-mr.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ms/values-ms.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-my/values-my.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-nb/values-nb.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ne/values-ne.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-night-v8/values-night-v8.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-nl/values-nl.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-pa/values-pa.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-pl/values-pl.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-port/values-port.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-pt/values-pt.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-pt-rBR/values-pt-rBR.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-pt-rPT/values-pt-rPT.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ro/values-ro.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ru/values-ru.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-si/values-si.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sk/values-sk.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sl/values-sl.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sq/values-sq.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sr/values-sr.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sv/values-sv.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sw/values-sw.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-sw600dp-v13/values-sw600dp-v13.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ta/values-ta.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-te/values-te.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-th/values-th.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-tl/values-tl.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-tr/values-tr.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-uk/values-uk.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-ur/values-ur.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-uz/values-uz.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v11/values-v11.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v12/values-v12.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v13/values-v13.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v14/values-v14.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v16/values-v16.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v17/values-v17.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v18/values-v18.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v21/values-v21.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v22/values-v22.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v23/values-v23.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v24/values-v24.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v25/values-v25.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-v26/values-v26.xml
    · 002.Project/StopWatch/app/build/intermediates/incremental/mergeDebugResources/merged.dir/values-vi/values-vi.xml
    · 002.Project/StopWatch/app/build/intermediat
  • 자료후기

      Ai 리뷰
      지식판매자의 자료는 질이 높고, 각 분야의 전문 지식을 바탕으로 한 콘텐츠가 많아 학습하는 재미가 쏠쏠합니다. 앞으로도 많은 유익한 자료를 기대합니다!
    • 자주묻는질문의 답변을 확인해 주세요

      해피캠퍼스 FAQ 더보기

      꼭 알아주세요

      • 자료의 정보 및 내용의 진실성에 대하여 해피캠퍼스는 보증하지 않으며, 해당 정보 및 게시물 저작권과 기타 법적 책임은 자료 등록자에게 있습니다.
        자료 및 게시물 내용의 불법적 이용, 무단 전재∙배포는 금지되어 있습니다.
        저작권침해, 명예훼손 등 분쟁 요소 발견 시 고객센터의 저작권침해 신고센터를 이용해 주시기 바랍니다.
      • 해피캠퍼스는 구매자와 판매자 모두가 만족하는 서비스가 되도록 노력하고 있으며, 아래의 4가지 자료환불 조건을 꼭 확인해주시기 바랍니다.
        파일오류 중복자료 저작권 없음 설명과 실제 내용 불일치
        파일의 다운로드가 제대로 되지 않거나 파일형식에 맞는 프로그램으로 정상 작동하지 않는 경우 다른 자료와 70% 이상 내용이 일치하는 경우 (중복임을 확인할 수 있는 근거 필요함) 인터넷의 다른 사이트, 연구기관, 학교, 서적 등의 자료를 도용한 경우 자료의 설명과 실제 자료의 내용이 일치하지 않는 경우
    문서 초안을 생성해주는 EasyAI
    안녕하세요 해피캠퍼스의 20년의 운영 노하우를 이용하여 당신만의 초안을 만들어주는 EasyAI 입니다.
    저는 아래와 같이 작업을 도와드립니다.
    - 주제만 입력하면 AI가 방대한 정보를 재가공하여, 최적의 목차와 내용을 자동으로 만들어 드립니다.
    - 장문의 콘텐츠를 쉽고 빠르게 작성해 드립니다.
    - 스토어에서 무료 이용권를 계정별로 1회 발급 받을 수 있습니다. 지금 바로 체험해 보세요!
    이런 주제들을 입력해 보세요.
    - 유아에게 적합한 문학작품의 기준과 특성
    - 한국인의 가치관 중에서 정신적 가치관을 이루는 것들을 문화적 문법으로 정리하고, 현대한국사회에서 일어나는 사건과 사고를 비교하여 자신의 의견으로 기술하세요
    - 작별인사 독후감
    해캠 AI 챗봇과 대화하기
    챗봇으로 간편하게 상담해보세요.
    2026년 03월 03일 화요일
    AI 챗봇
    안녕하세요. 해피캠퍼스 AI 챗봇입니다. 무엇이 궁금하신가요?
    8:57 오후