├── .gitignore ├── README.md ├── android_studio ├── ex1_fragmentsv3 │ ├── .gitignore │ ├── .idea │ │ ├── .name │ │ ├── compiler.xml │ │ ├── copyright │ │ │ └── profiles_settings.xml │ │ ├── encodings.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ └── runConfigurations.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── libs │ │ │ └── android-core.jar │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── tutorials │ │ │ │ └── androidstudio │ │ │ │ └── fragmentsv3 │ │ │ │ └── ApplicationTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── tutorials │ │ │ │ │ └── androidstudio │ │ │ │ │ └── fragmentsv3 │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ └── Sketch.java │ │ │ └── res │ │ │ │ ├── layout │ │ │ │ └── activity_main.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values-w820dp │ │ │ │ └── dimens.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── dimens.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── tutorials │ │ │ └── androidstudio │ │ │ └── fragmentsv3 │ │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── ex2_fragmentsv4 │ ├── .gitignore │ ├── .idea │ │ ├── compiler.xml │ │ ├── copyright │ │ │ └── profiles_settings.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ └── modules.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── libs │ │ │ └── processing-core.jar │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── tutorials │ │ │ │ └── androidstudio │ │ │ │ └── fragmentsv4 │ │ │ │ └── ApplicationTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── tutorials │ │ │ │ │ └── androidstudio │ │ │ │ │ └── fragmentsv4 │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ └── Sketch.java │ │ │ └── res │ │ │ │ ├── layout │ │ │ │ └── activity_main.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values-w820dp │ │ │ │ └── dimens.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── dimens.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── tutorials │ │ │ └── androidstudio │ │ │ └── fragmentsv4 │ │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── projectFilesBackup │ │ └── .idea │ │ │ └── workspace.xml │ └── settings.gradle ├── ex3_layoutsv4 │ ├── .gitignore │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── libs │ │ │ └── processing-core.jar │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── processing │ │ │ │ └── test │ │ │ │ └── processingintegration │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── assets │ │ │ │ └── mosaic.jpg │ │ │ ├── java │ │ │ │ └── processing │ │ │ │ │ └── test │ │ │ │ │ └── processingintegration │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ └── Sketch.java │ │ │ └── res │ │ │ │ ├── layout │ │ │ │ ├── activity_main.xml │ │ │ │ └── content_main.xml │ │ │ │ ├── menu │ │ │ │ └── menu_main.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values-v21 │ │ │ │ └── styles.xml │ │ │ │ ├── values-w820dp │ │ │ │ └── dimens.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── dimens.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── processing │ │ │ └── test │ │ │ └── processingintegration │ │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle └── ex4_mobile+wear4 │ ├── build.gradle │ ├── ex4_mobile+wear4.iml │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── local.properties │ ├── mobile │ ├── build.gradle │ ├── build │ │ ├── generated │ │ │ └── source │ │ │ │ ├── buildConfig │ │ │ │ ├── androidTest │ │ │ │ │ └── debug │ │ │ │ │ │ └── processing │ │ │ │ │ │ └── test │ │ │ │ │ │ └── androidwatchexport │ │ │ │ │ │ └── test │ │ │ │ │ │ └── BuildConfig.java │ │ │ │ └── debug │ │ │ │ │ └── processing │ │ │ │ │ └── test │ │ │ │ │ └── androidwatchexport │ │ │ │ │ └── BuildConfig.java │ │ │ │ └── r │ │ │ │ ├── androidTest │ │ │ │ └── debug │ │ │ │ │ ├── android │ │ │ │ │ ├── app │ │ │ │ │ │ └── R.java │ │ │ │ │ └── support │ │ │ │ │ │ └── test │ │ │ │ │ │ ├── R.java │ │ │ │ │ │ ├── espresso │ │ │ │ │ │ ├── R.java │ │ │ │ │ │ └── idling │ │ │ │ │ │ │ └── R.java │ │ │ │ │ │ └── rule │ │ │ │ │ │ └── R.java │ │ │ │ │ └── processing │ │ │ │ │ └── test │ │ │ │ │ └── androidwatchexport │ │ │ │ │ └── test │ │ │ │ │ └── R.java │ │ │ │ └── debug │ │ │ │ ├── android │ │ │ │ └── support │ │ │ │ │ ├── compat │ │ │ │ │ └── R.java │ │ │ │ │ ├── coreui │ │ │ │ │ └── R.java │ │ │ │ │ ├── coreutils │ │ │ │ │ └── R.java │ │ │ │ │ ├── design │ │ │ │ │ └── R.java │ │ │ │ │ ├── fragment │ │ │ │ │ └── R.java │ │ │ │ │ ├── graphics │ │ │ │ │ └── drawable │ │ │ │ │ │ ├── R.java │ │ │ │ │ │ └── animated │ │ │ │ │ │ └── R.java │ │ │ │ │ ├── mediacompat │ │ │ │ │ └── R.java │ │ │ │ │ ├── transition │ │ │ │ │ └── R.java │ │ │ │ │ ├── v13 │ │ │ │ │ └── R.java │ │ │ │ │ ├── v4 │ │ │ │ │ └── R.java │ │ │ │ │ └── v7 │ │ │ │ │ ├── appcompat │ │ │ │ │ └── R.java │ │ │ │ │ ├── cardview │ │ │ │ │ └── R.java │ │ │ │ │ └── recyclerview │ │ │ │ │ └── R.java │ │ │ │ ├── com │ │ │ │ └── google │ │ │ │ │ └── android │ │ │ │ │ └── gms │ │ │ │ │ ├── R.java │ │ │ │ │ ├── base │ │ │ │ │ └── R.java │ │ │ │ │ ├── fitness │ │ │ │ │ └── R.java │ │ │ │ │ ├── location │ │ │ │ │ └── R.java │ │ │ │ │ ├── tasks │ │ │ │ │ └── R.java │ │ │ │ │ └── wearable │ │ │ │ │ └── R.java │ │ │ │ └── processing │ │ │ │ └── test │ │ │ │ └── androidwatchexport │ │ │ │ └── R.java │ │ ├── intermediates │ │ │ ├── blame │ │ │ │ └── res │ │ │ │ │ ├── androidTest │ │ │ │ │ └── debug │ │ │ │ │ │ └── multi │ │ │ │ │ │ └── values.json │ │ │ │ │ └── debug │ │ │ │ │ ├── multi │ │ │ │ │ ├── values-af.json │ │ │ │ │ ├── values-am.json │ │ │ │ │ ├── values-ar.json │ │ │ │ │ ├── values-az-rAZ.json │ │ │ │ │ ├── values-az.json │ │ │ │ │ ├── values-b+sr+Latn.json │ │ │ │ │ ├── values-be-rBY.json │ │ │ │ │ ├── values-be.json │ │ │ │ │ ├── values-bg.json │ │ │ │ │ ├── values-bn-rBD.json │ │ │ │ │ ├── values-bn.json │ │ │ │ │ ├── values-bs-rBA.json │ │ │ │ │ ├── values-bs.json │ │ │ │ │ ├── values-ca.json │ │ │ │ │ ├── values-cs.json │ │ │ │ │ ├── values-da.json │ │ │ │ │ ├── values-de.json │ │ │ │ │ ├── values-el.json │ │ │ │ │ ├── values-en-rAU.json │ │ │ │ │ ├── values-en-rGB.json │ │ │ │ │ ├── values-en-rIN.json │ │ │ │ │ ├── values-es-rUS.json │ │ │ │ │ ├── values-es.json │ │ │ │ │ ├── values-et-rEE.json │ │ │ │ │ ├── values-et.json │ │ │ │ │ ├── values-eu-rES.json │ │ │ │ │ ├── values-eu.json │ │ │ │ │ ├── values-fa.json │ │ │ │ │ ├── values-fi.json │ │ │ │ │ ├── values-fr-rCA.json │ │ │ │ │ ├── values-fr.json │ │ │ │ │ ├── values-gl-rES.json │ │ │ │ │ ├── values-gl.json │ │ │ │ │ ├── values-gu-rIN.json │ │ │ │ │ ├── values-gu.json │ │ │ │ │ ├── values-h720dp-v13.json │ │ │ │ │ ├── values-hdpi-v4.json │ │ │ │ │ ├── values-hi.json │ │ │ │ │ ├── values-hr.json │ │ │ │ │ ├── values-hu.json │ │ │ │ │ ├── values-hy-rAM.json │ │ │ │ │ ├── values-hy.json │ │ │ │ │ ├── values-in.json │ │ │ │ │ ├── values-is-rIS.json │ │ │ │ │ ├── values-is.json │ │ │ │ │ ├── values-it.json │ │ │ │ │ ├── values-iw.json │ │ │ │ │ ├── values-ja.json │ │ │ │ │ ├── values-ka-rGE.json │ │ │ │ │ ├── values-ka.json │ │ │ │ │ ├── values-kk-rKZ.json │ │ │ │ │ ├── values-kk.json │ │ │ │ │ ├── values-km-rKH.json │ │ │ │ │ ├── values-km.json │ │ │ │ │ ├── values-kn-rIN.json │ │ │ │ │ ├── values-kn.json │ │ │ │ │ ├── values-ko.json │ │ │ │ │ ├── values-ky-rKG.json │ │ │ │ │ ├── values-ky.json │ │ │ │ │ ├── values-land.json │ │ │ │ │ ├── values-large-v4.json │ │ │ │ │ ├── values-ldltr-v21.json │ │ │ │ │ ├── values-lo-rLA.json │ │ │ │ │ ├── values-lo.json │ │ │ │ │ ├── values-lt.json │ │ │ │ │ ├── values-lv.json │ │ │ │ │ ├── values-mk-rMK.json │ │ │ │ │ ├── values-mk.json │ │ │ │ │ ├── values-ml-rIN.json │ │ │ │ │ ├── values-ml.json │ │ │ │ │ ├── values-mn-rMN.json │ │ │ │ │ ├── values-mn.json │ │ │ │ │ ├── values-mr-rIN.json │ │ │ │ │ ├── values-mr.json │ │ │ │ │ ├── values-ms-rMY.json │ │ │ │ │ ├── values-ms.json │ │ │ │ │ ├── values-my-rMM.json │ │ │ │ │ ├── values-my.json │ │ │ │ │ ├── values-nb.json │ │ │ │ │ ├── values-ne-rNP.json │ │ │ │ │ ├── values-ne.json │ │ │ │ │ ├── values-night-v8.json │ │ │ │ │ ├── values-nl.json │ │ │ │ │ ├── values-pa-rIN.json │ │ │ │ │ ├── values-pa.json │ │ │ │ │ ├── values-pl.json │ │ │ │ │ ├── values-port.json │ │ │ │ │ ├── values-pt-rBR.json │ │ │ │ │ ├── values-pt-rPT.json │ │ │ │ │ ├── values-pt.json │ │ │ │ │ ├── values-ro.json │ │ │ │ │ ├── values-ru.json │ │ │ │ │ ├── values-si-rLK.json │ │ │ │ │ ├── values-si.json │ │ │ │ │ ├── values-sk.json │ │ │ │ │ ├── values-sl.json │ │ │ │ │ ├── values-sq-rAL.json │ │ │ │ │ ├── values-sq.json │ │ │ │ │ ├── values-sr.json │ │ │ │ │ ├── values-sv.json │ │ │ │ │ ├── values-sw.json │ │ │ │ │ ├── values-sw600dp-v13.json │ │ │ │ │ ├── values-ta-rIN.json │ │ │ │ │ ├── values-ta.json │ │ │ │ │ ├── values-te-rIN.json │ │ │ │ │ ├── values-te.json │ │ │ │ │ ├── values-th.json │ │ │ │ │ ├── values-tl.json │ │ │ │ │ ├── values-tr.json │ │ │ │ │ ├── values-uk.json │ │ │ │ │ ├── values-ur-rPK.json │ │ │ │ │ ├── values-ur.json │ │ │ │ │ ├── values-uz-rUZ.json │ │ │ │ │ ├── values-uz.json │ │ │ │ │ ├── values-v11.json │ │ │ │ │ ├── values-v12.json │ │ │ │ │ ├── values-v13.json │ │ │ │ │ ├── values-v14.json │ │ │ │ │ ├── values-v16.json │ │ │ │ │ ├── values-v17.json │ │ │ │ │ ├── values-v18.json │ │ │ │ │ ├── values-v21.json │ │ │ │ │ ├── values-v22.json │ │ │ │ │ ├── values-v23.json │ │ │ │ │ ├── values-v24.json │ │ │ │ │ ├── values-v25.json │ │ │ │ │ ├── values-vi.json │ │ │ │ │ ├── values-xlarge-v4.json │ │ │ │ │ ├── values-zh-rCN.json │ │ │ │ │ ├── values-zh-rHK.json │ │ │ │ │ ├── values-zh-rTW.json │ │ │ │ │ ├── values-zu.json │ │ │ │ │ └── values.json │ │ │ │ │ └── single │ │ │ │ │ ├── anim-v21.json │ │ │ │ │ ├── anim.json │ │ │ │ │ ├── animator-v21.json │ │ │ │ │ ├── color-v11.json │ │ │ │ │ ├── color-v23.json │ │ │ │ │ ├── color.json │ │ │ │ │ ├── drawable-anydpi-v21.json │ │ │ │ │ ├── drawable-hdpi-v4.json │ │ │ │ │ ├── drawable-hdpi.json │ │ │ │ │ ├── drawable-ldpi.json │ │ │ │ │ ├── drawable-ldrtl-hdpi-v17.json │ │ │ │ │ ├── drawable-ldrtl-mdpi-v17.json │ │ │ │ │ ├── drawable-ldrtl-xhdpi-v17.json │ │ │ │ │ ├── drawable-ldrtl-xxhdpi-v17.json │ │ │ │ │ ├── drawable-ldrtl-xxxhdpi-v17.json │ │ │ │ │ ├── drawable-mdpi-v4.json │ │ │ │ │ ├── drawable-v21.json │ │ │ │ │ ├── drawable-v23.json │ │ │ │ │ ├── drawable-xhdpi-v4.json │ │ │ │ │ ├── drawable-xhdpi.json │ │ │ │ │ ├── drawable-xxhdpi-v4.json │ │ │ │ │ ├── drawable-xxhdpi.json │ │ │ │ │ ├── drawable-xxxhdpi-v4.json │ │ │ │ │ ├── drawable-xxxhdpi.json │ │ │ │ │ ├── drawable.json │ │ │ │ │ ├── layout-sw600dp-v13.json │ │ │ │ │ ├── layout-v11.json │ │ │ │ │ ├── layout-v21.json │ │ │ │ │ ├── layout.json │ │ │ │ │ ├── raw.json │ │ │ │ │ └── xml.json │ │ │ ├── incremental │ │ │ │ ├── compileDebugAidl │ │ │ │ │ └── dependency.store │ │ │ │ ├── compileDebugAndroidTestAidl │ │ │ │ │ └── dependency.store │ │ │ │ ├── mergeDebugAndroidTestResources │ │ │ │ │ ├── compile-file-map.properties │ │ │ │ │ ├── merged.dir │ │ │ │ │ │ └── values │ │ │ │ │ │ │ └── values.xml │ │ │ │ │ └── merger.xml │ │ │ │ └── mergeDebugResources │ │ │ │ │ ├── compile-file-map.properties │ │ │ │ │ ├── merged.dir │ │ │ │ │ ├── values-af │ │ │ │ │ │ └── values-af.xml │ │ │ │ │ ├── values-am │ │ │ │ │ │ └── values-am.xml │ │ │ │ │ ├── values-ar │ │ │ │ │ │ └── values-ar.xml │ │ │ │ │ ├── values-az-rAZ │ │ │ │ │ │ └── values-az-rAZ.xml │ │ │ │ │ ├── values-az │ │ │ │ │ │ └── values-az.xml │ │ │ │ │ ├── values-b+sr+Latn │ │ │ │ │ │ └── values-b+sr+Latn.xml │ │ │ │ │ ├── values-be-rBY │ │ │ │ │ │ └── values-be-rBY.xml │ │ │ │ │ ├── values-be │ │ │ │ │ │ └── values-be.xml │ │ │ │ │ ├── values-bg │ │ │ │ │ │ └── values-bg.xml │ │ │ │ │ ├── values-bn-rBD │ │ │ │ │ │ └── values-bn-rBD.xml │ │ │ │ │ ├── values-bn │ │ │ │ │ │ └── values-bn.xml │ │ │ │ │ ├── values-bs-rBA │ │ │ │ │ │ └── values-bs-rBA.xml │ │ │ │ │ ├── values-bs │ │ │ │ │ │ └── values-bs.xml │ │ │ │ │ ├── values-ca │ │ │ │ │ │ └── values-ca.xml │ │ │ │ │ ├── values-cs │ │ │ │ │ │ └── values-cs.xml │ │ │ │ │ ├── values-da │ │ │ │ │ │ └── values-da.xml │ │ │ │ │ ├── values-de │ │ │ │ │ │ └── values-de.xml │ │ │ │ │ ├── values-el │ │ │ │ │ │ └── values-el.xml │ │ │ │ │ ├── values-en-rAU │ │ │ │ │ │ └── values-en-rAU.xml │ │ │ │ │ ├── values-en-rGB │ │ │ │ │ │ └── values-en-rGB.xml │ │ │ │ │ ├── values-en-rIN │ │ │ │ │ │ └── values-en-rIN.xml │ │ │ │ │ ├── values-es-rUS │ │ │ │ │ │ └── values-es-rUS.xml │ │ │ │ │ ├── values-es │ │ │ │ │ │ └── values-es.xml │ │ │ │ │ ├── values-et-rEE │ │ │ │ │ │ └── values-et-rEE.xml │ │ │ │ │ ├── values-et │ │ │ │ │ │ └── values-et.xml │ │ │ │ │ ├── values-eu-rES │ │ │ │ │ │ └── values-eu-rES.xml │ │ │ │ │ ├── values-eu │ │ │ │ │ │ └── values-eu.xml │ │ │ │ │ ├── values-fa │ │ │ │ │ │ └── values-fa.xml │ │ │ │ │ ├── values-fi │ │ │ │ │ │ └── values-fi.xml │ │ │ │ │ ├── values-fr-rCA │ │ │ │ │ │ └── values-fr-rCA.xml │ │ │ │ │ ├── values-fr │ │ │ │ │ │ └── values-fr.xml │ │ │ │ │ ├── values-gl-rES │ │ │ │ │ │ └── values-gl-rES.xml │ │ │ │ │ ├── values-gl │ │ │ │ │ │ └── values-gl.xml │ │ │ │ │ ├── values-gu-rIN │ │ │ │ │ │ └── values-gu-rIN.xml │ │ │ │ │ ├── values-gu │ │ │ │ │ │ └── values-gu.xml │ │ │ │ │ ├── values-h720dp-v13 │ │ │ │ │ │ └── values-h720dp-v13.xml │ │ │ │ │ ├── values-hdpi-v4 │ │ │ │ │ │ └── values-hdpi-v4.xml │ │ │ │ │ ├── values-hi │ │ │ │ │ │ └── values-hi.xml │ │ │ │ │ ├── values-hr │ │ │ │ │ │ └── values-hr.xml │ │ │ │ │ ├── values-hu │ │ │ │ │ │ └── values-hu.xml │ │ │ │ │ ├── values-hy-rAM │ │ │ │ │ │ └── values-hy-rAM.xml │ │ │ │ │ ├── values-hy │ │ │ │ │ │ └── values-hy.xml │ │ │ │ │ ├── values-in │ │ │ │ │ │ └── values-in.xml │ │ │ │ │ ├── values-is-rIS │ │ │ │ │ │ └── values-is-rIS.xml │ │ │ │ │ ├── values-is │ │ │ │ │ │ └── values-is.xml │ │ │ │ │ ├── values-it │ │ │ │ │ │ └── values-it.xml │ │ │ │ │ ├── values-iw │ │ │ │ │ │ └── values-iw.xml │ │ │ │ │ ├── values-ja │ │ │ │ │ │ └── values-ja.xml │ │ │ │ │ ├── values-ka-rGE │ │ │ │ │ │ └── values-ka-rGE.xml │ │ │ │ │ ├── values-ka │ │ │ │ │ │ └── values-ka.xml │ │ │ │ │ ├── values-kk-rKZ │ │ │ │ │ │ └── values-kk-rKZ.xml │ │ │ │ │ ├── values-kk │ │ │ │ │ │ └── values-kk.xml │ │ │ │ │ ├── values-km-rKH │ │ │ │ │ │ └── values-km-rKH.xml │ │ │ │ │ ├── values-km │ │ │ │ │ │ └── values-km.xml │ │ │ │ │ ├── values-kn-rIN │ │ │ │ │ │ └── values-kn-rIN.xml │ │ │ │ │ ├── values-kn │ │ │ │ │ │ └── values-kn.xml │ │ │ │ │ ├── values-ko │ │ │ │ │ │ └── values-ko.xml │ │ │ │ │ ├── values-ky-rKG │ │ │ │ │ │ └── values-ky-rKG.xml │ │ │ │ │ ├── values-ky │ │ │ │ │ │ └── values-ky.xml │ │ │ │ │ ├── values-land │ │ │ │ │ │ └── values-land.xml │ │ │ │ │ ├── values-large-v4 │ │ │ │ │ │ └── values-large-v4.xml │ │ │ │ │ ├── values-ldltr-v21 │ │ │ │ │ │ └── values-ldltr-v21.xml │ │ │ │ │ ├── values-lo-rLA │ │ │ │ │ │ └── values-lo-rLA.xml │ │ │ │ │ ├── values-lo │ │ │ │ │ │ └── values-lo.xml │ │ │ │ │ ├── values-lt │ │ │ │ │ │ └── values-lt.xml │ │ │ │ │ ├── values-lv │ │ │ │ │ │ └── values-lv.xml │ │ │ │ │ ├── values-mk-rMK │ │ │ │ │ │ └── values-mk-rMK.xml │ │ │ │ │ ├── values-mk │ │ │ │ │ │ └── values-mk.xml │ │ │ │ │ ├── values-ml-rIN │ │ │ │ │ │ └── values-ml-rIN.xml │ │ │ │ │ ├── values-ml │ │ │ │ │ │ └── values-ml.xml │ │ │ │ │ ├── values-mn-rMN │ │ │ │ │ │ └── values-mn-rMN.xml │ │ │ │ │ ├── values-mn │ │ │ │ │ │ └── values-mn.xml │ │ │ │ │ ├── values-mr-rIN │ │ │ │ │ │ └── values-mr-rIN.xml │ │ │ │ │ ├── values-mr │ │ │ │ │ │ └── values-mr.xml │ │ │ │ │ ├── values-ms-rMY │ │ │ │ │ │ └── values-ms-rMY.xml │ │ │ │ │ ├── values-ms │ │ │ │ │ │ └── values-ms.xml │ │ │ │ │ ├── values-my-rMM │ │ │ │ │ │ └── values-my-rMM.xml │ │ │ │ │ ├── values-my │ │ │ │ │ │ └── values-my.xml │ │ │ │ │ ├── values-nb │ │ │ │ │ │ └── values-nb.xml │ │ │ │ │ ├── values-ne-rNP │ │ │ │ │ │ └── values-ne-rNP.xml │ │ │ │ │ ├── values-ne │ │ │ │ │ │ └── values-ne.xml │ │ │ │ │ ├── values-night-v8 │ │ │ │ │ │ └── values-night-v8.xml │ │ │ │ │ ├── values-nl │ │ │ │ │ │ └── values-nl.xml │ │ │ │ │ ├── values-pa-rIN │ │ │ │ │ │ └── values-pa-rIN.xml │ │ │ │ │ ├── values-pa │ │ │ │ │ │ └── values-pa.xml │ │ │ │ │ ├── values-pl │ │ │ │ │ │ └── values-pl.xml │ │ │ │ │ ├── values-port │ │ │ │ │ │ └── values-port.xml │ │ │ │ │ ├── values-pt-rBR │ │ │ │ │ │ └── values-pt-rBR.xml │ │ │ │ │ ├── values-pt-rPT │ │ │ │ │ │ └── values-pt-rPT.xml │ │ │ │ │ ├── values-pt │ │ │ │ │ │ └── values-pt.xml │ │ │ │ │ ├── values-ro │ │ │ │ │ │ └── values-ro.xml │ │ │ │ │ ├── values-ru │ │ │ │ │ │ └── values-ru.xml │ │ │ │ │ ├── values-si-rLK │ │ │ │ │ │ └── values-si-rLK.xml │ │ │ │ │ ├── values-si │ │ │ │ │ │ └── values-si.xml │ │ │ │ │ ├── values-sk │ │ │ │ │ │ └── values-sk.xml │ │ │ │ │ ├── values-sl │ │ │ │ │ │ └── values-sl.xml │ │ │ │ │ ├── values-sq-rAL │ │ │ │ │ │ └── values-sq-rAL.xml │ │ │ │ │ ├── values-sq │ │ │ │ │ │ └── values-sq.xml │ │ │ │ │ ├── values-sr │ │ │ │ │ │ └── values-sr.xml │ │ │ │ │ ├── values-sv │ │ │ │ │ │ └── values-sv.xml │ │ │ │ │ ├── values-sw │ │ │ │ │ │ └── values-sw.xml │ │ │ │ │ ├── values-sw600dp-v13 │ │ │ │ │ │ └── values-sw600dp-v13.xml │ │ │ │ │ ├── values-ta-rIN │ │ │ │ │ │ └── values-ta-rIN.xml │ │ │ │ │ ├── values-ta │ │ │ │ │ │ └── values-ta.xml │ │ │ │ │ ├── values-te-rIN │ │ │ │ │ │ └── values-te-rIN.xml │ │ │ │ │ ├── values-te │ │ │ │ │ │ └── values-te.xml │ │ │ │ │ ├── values-th │ │ │ │ │ │ └── values-th.xml │ │ │ │ │ ├── values-tl │ │ │ │ │ │ └── values-tl.xml │ │ │ │ │ ├── values-tr │ │ │ │ │ │ └── values-tr.xml │ │ │ │ │ ├── values-uk │ │ │ │ │ │ └── values-uk.xml │ │ │ │ │ ├── values-ur-rPK │ │ │ │ │ │ └── values-ur-rPK.xml │ │ │ │ │ ├── values-ur │ │ │ │ │ │ └── values-ur.xml │ │ │ │ │ ├── values-uz-rUZ │ │ │ │ │ │ └── values-uz-rUZ.xml │ │ │ │ │ ├── values-uz │ │ │ │ │ │ └── values-uz.xml │ │ │ │ │ ├── values-v11 │ │ │ │ │ │ └── values-v11.xml │ │ │ │ │ ├── values-v12 │ │ │ │ │ │ └── values-v12.xml │ │ │ │ │ ├── values-v13 │ │ │ │ │ │ └── values-v13.xml │ │ │ │ │ ├── values-v14 │ │ │ │ │ │ └── values-v14.xml │ │ │ │ │ ├── values-v16 │ │ │ │ │ │ └── values-v16.xml │ │ │ │ │ ├── values-v17 │ │ │ │ │ │ └── values-v17.xml │ │ │ │ │ ├── values-v18 │ │ │ │ │ │ └── values-v18.xml │ │ │ │ │ ├── values-v21 │ │ │ │ │ │ └── values-v21.xml │ │ │ │ │ ├── values-v22 │ │ │ │ │ │ └── values-v22.xml │ │ │ │ │ ├── values-v23 │ │ │ │ │ │ └── values-v23.xml │ │ │ │ │ ├── values-v24 │ │ │ │ │ │ └── values-v24.xml │ │ │ │ │ ├── values-v25 │ │ │ │ │ │ └── values-v25.xml │ │ │ │ │ ├── values-vi │ │ │ │ │ │ └── values-vi.xml │ │ │ │ │ ├── values-xlarge-v4 │ │ │ │ │ │ └── values-xlarge-v4.xml │ │ │ │ │ ├── values-zh-rCN │ │ │ │ │ │ └── values-zh-rCN.xml │ │ │ │ │ ├── values-zh-rHK │ │ │ │ │ │ └── values-zh-rHK.xml │ │ │ │ │ ├── values-zh-rTW │ │ │ │ │ │ └── values-zh-rTW.xml │ │ │ │ │ ├── values-zu │ │ │ │ │ │ └── values-zu.xml │ │ │ │ │ └── values │ │ │ │ │ │ └── values.xml │ │ │ │ │ └── merger.xml │ │ │ ├── manifest │ │ │ │ └── androidTest │ │ │ │ │ └── debug │ │ │ │ │ └── AndroidManifest.xml │ │ │ ├── manifests │ │ │ │ └── full │ │ │ │ │ └── debug │ │ │ │ │ └── AndroidManifest.xml │ │ │ ├── res │ │ │ │ ├── merged │ │ │ │ │ ├── androidTest │ │ │ │ │ │ └── debug │ │ │ │ │ │ │ └── values │ │ │ │ │ │ │ └── values.xml │ │ │ │ │ └── debug │ │ │ │ │ │ ├── anim-v21 │ │ │ │ │ │ ├── design_bottom_sheet_slide_in.xml │ │ │ │ │ │ └── design_bottom_sheet_slide_out.xml │ │ │ │ │ │ ├── anim │ │ │ │ │ │ ├── abc_fade_in.xml │ │ │ │ │ │ ├── abc_fade_out.xml │ │ │ │ │ │ ├── abc_grow_fade_in_from_bottom.xml │ │ │ │ │ │ ├── abc_popup_enter.xml │ │ │ │ │ │ ├── abc_popup_exit.xml │ │ │ │ │ │ ├── abc_shrink_fade_out_from_bottom.xml │ │ │ │ │ │ ├── abc_slide_in_bottom.xml │ │ │ │ │ │ ├── abc_slide_in_top.xml │ │ │ │ │ │ ├── abc_slide_out_bottom.xml │ │ │ │ │ │ ├── abc_slide_out_top.xml │ │ │ │ │ │ ├── design_fab_in.xml │ │ │ │ │ │ ├── design_fab_out.xml │ │ │ │ │ │ ├── design_snackbar_in.xml │ │ │ │ │ │ └── design_snackbar_out.xml │ │ │ │ │ │ ├── animator-v21 │ │ │ │ │ │ └── design_appbar_state_list_animator.xml │ │ │ │ │ │ ├── color-v11 │ │ │ │ │ │ ├── abc_background_cache_hint_selector_material_dark.xml │ │ │ │ │ │ └── abc_background_cache_hint_selector_material_light.xml │ │ │ │ │ │ ├── color-v23 │ │ │ │ │ │ ├── abc_btn_colored_borderless_text_material.xml │ │ │ │ │ │ ├── abc_btn_colored_text_material.xml │ │ │ │ │ │ ├── abc_color_highlight_material.xml │ │ │ │ │ │ ├── abc_tint_btn_checkable.xml │ │ │ │ │ │ ├── abc_tint_default.xml │ │ │ │ │ │ ├── abc_tint_edittext.xml │ │ │ │ │ │ ├── abc_tint_seek_thumb.xml │ │ │ │ │ │ ├── abc_tint_spinner.xml │ │ │ │ │ │ ├── abc_tint_switch_thumb.xml │ │ │ │ │ │ ├── abc_tint_switch_track.xml │ │ │ │ │ │ └── design_tint_password_toggle.xml │ │ │ │ │ │ ├── color │ │ │ │ │ │ ├── abc_btn_colored_borderless_text_material.xml │ │ │ │ │ │ ├── abc_btn_colored_text_material.xml │ │ │ │ │ │ ├── abc_hint_foreground_material_dark.xml │ │ │ │ │ │ ├── abc_hint_foreground_material_light.xml │ │ │ │ │ │ ├── abc_primary_text_disable_only_material_dark.xml │ │ │ │ │ │ ├── abc_primary_text_disable_only_material_light.xml │ │ │ │ │ │ ├── abc_primary_text_material_dark.xml │ │ │ │ │ │ ├── abc_primary_text_material_light.xml │ │ │ │ │ │ ├── abc_search_url_text.xml │ │ │ │ │ │ ├── abc_secondary_text_material_dark.xml │ │ │ │ │ │ ├── abc_secondary_text_material_light.xml │ │ │ │ │ │ ├── abc_tint_btn_checkable.xml │ │ │ │ │ │ ├── abc_tint_default.xml │ │ │ │ │ │ ├── abc_tint_edittext.xml │ │ │ │ │ │ ├── abc_tint_seek_thumb.xml │ │ │ │ │ │ ├── abc_tint_spinner.xml │ │ │ │ │ │ ├── abc_tint_switch_thumb.xml │ │ │ │ │ │ ├── abc_tint_switch_track.xml │ │ │ │ │ │ ├── common_google_signin_btn_text_dark.xml │ │ │ │ │ │ ├── common_google_signin_btn_text_light.xml │ │ │ │ │ │ ├── common_google_signin_btn_tint.xml │ │ │ │ │ │ ├── design_error.xml │ │ │ │ │ │ ├── design_tint_password_toggle.xml │ │ │ │ │ │ ├── switch_thumb_material_dark.xml │ │ │ │ │ │ └── switch_thumb_material_light.xml │ │ │ │ │ │ ├── drawable-anydpi-v21 │ │ │ │ │ │ ├── design_ic_visibility.xml │ │ │ │ │ │ └── design_ic_visibility_off.xml │ │ │ │ │ │ ├── drawable-hdpi-v4 │ │ │ │ │ │ ├── abc_ab_share_pack_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ │ │ │ │ ├── abc_cab_background_top_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_star_black_16dp.png │ │ │ │ │ │ ├── abc_ic_star_black_36dp.png │ │ │ │ │ │ ├── abc_ic_star_black_48dp.png │ │ │ │ │ │ ├── abc_ic_star_half_black_16dp.png │ │ │ │ │ │ ├── abc_ic_star_half_black_36dp.png │ │ │ │ │ │ ├── abc_ic_star_half_black_48dp.png │ │ │ │ │ │ ├── abc_list_divider_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_list_focused_holo.9.png │ │ │ │ │ │ ├── abc_list_longpressed_holo.9.png │ │ │ │ │ │ ├── abc_list_pressed_holo_dark.9.png │ │ │ │ │ │ ├── abc_list_pressed_holo_light.9.png │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ │ │ │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png │ │ │ │ │ │ ├── abc_popup_background_mtrl_mult.9.png │ │ │ │ │ │ ├── abc_scrubber_control_off_mtrl_alpha.png │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.png │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.png │ │ │ │ │ │ ├── abc_scrubber_primary_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_scrubber_track_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_text_select_handle_left_mtrl_dark.png │ │ │ │ │ │ ├── abc_text_select_handle_left_mtrl_light.png │ │ │ │ │ │ ├── abc_text_select_handle_middle_mtrl_dark.png │ │ │ │ │ │ ├── abc_text_select_handle_middle_mtrl_light.png │ │ │ │ │ │ ├── abc_text_select_handle_right_mtrl_dark.png │ │ │ │ │ │ ├── abc_text_select_handle_right_mtrl_light.png │ │ │ │ │ │ ├── abc_textfield_activated_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_textfield_default_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_textfield_search_default_mtrl_alpha.9.png │ │ │ │ │ │ ├── common_full_open_on_phone.png │ │ │ │ │ │ ├── common_google_signin_btn_icon_dark_normal_background.9.png │ │ │ │ │ │ ├── common_google_signin_btn_icon_light_normal_background.9.png │ │ │ │ │ │ ├── common_google_signin_btn_text_dark_normal_background.9.png │ │ │ │ │ │ ├── common_google_signin_btn_text_light_normal_background.9.png │ │ │ │ │ │ ├── design_ic_visibility.png │ │ │ │ │ │ ├── design_ic_visibility_off.png │ │ │ │ │ │ ├── googleg_disabled_color_18.png │ │ │ │ │ │ ├── googleg_standard_color_18.png │ │ │ │ │ │ ├── notification_bg_low_normal.9.png │ │ │ │ │ │ ├── notification_bg_low_pressed.9.png │ │ │ │ │ │ ├── notification_bg_normal.9.png │ │ │ │ │ │ ├── notification_bg_normal_pressed.9.png │ │ │ │ │ │ └── notify_panel_notification_icon_bg.png │ │ │ │ │ │ ├── drawable-hdpi │ │ │ │ │ │ └── icon.png │ │ │ │ │ │ ├── drawable-ldpi │ │ │ │ │ │ └── icon.png │ │ │ │ │ │ ├── drawable-ldrtl-hdpi-v17 │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ ├── drawable-ldrtl-mdpi-v17 │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ ├── drawable-ldrtl-xhdpi-v17 │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ ├── drawable-ldrtl-xxhdpi-v17 │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ ├── drawable-ldrtl-xxxhdpi-v17 │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ └── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ ├── drawable-mdpi-v4 │ │ │ │ │ │ ├── abc_ab_share_pack_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ │ │ │ │ ├── abc_cab_background_top_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_star_black_16dp.png │ │ │ │ │ │ ├── abc_ic_star_black_36dp.png │ │ │ │ │ │ ├── abc_ic_star_black_48dp.png │ │ │ │ │ │ ├── abc_ic_star_half_black_16dp.png │ │ │ │ │ │ ├── abc_ic_star_half_black_36dp.png │ │ │ │ │ │ ├── abc_ic_star_half_black_48dp.png │ │ │ │ │ │ ├── abc_list_divider_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_list_focused_holo.9.png │ │ │ │ │ │ ├── abc_list_longpressed_holo.9.png │ │ │ │ │ │ ├── abc_list_pressed_holo_dark.9.png │ │ │ │ │ │ ├── abc_list_pressed_holo_light.9.png │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ │ │ │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png │ │ │ │ │ │ ├── abc_popup_background_mtrl_mult.9.png │ │ │ │ │ │ ├── abc_scrubber_control_off_mtrl_alpha.png │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.png │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.png │ │ │ │ │ │ ├── abc_scrubber_primary_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_scrubber_track_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_text_select_handle_left_mtrl_dark.png │ │ │ │ │ │ ├── abc_text_select_handle_left_mtrl_light.png │ │ │ │ │ │ ├── abc_text_select_handle_middle_mtrl_dark.png │ │ │ │ │ │ ├── abc_text_select_handle_middle_mtrl_light.png │ │ │ │ │ │ ├── abc_text_select_handle_right_mtrl_dark.png │ │ │ │ │ │ ├── abc_text_select_handle_right_mtrl_light.png │ │ │ │ │ │ ├── abc_textfield_activated_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_textfield_default_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_textfield_search_default_mtrl_alpha.9.png │ │ │ │ │ │ ├── common_google_signin_btn_icon_dark_normal_background.9.png │ │ │ │ │ │ ├── common_google_signin_btn_icon_light_normal_background.9.png │ │ │ │ │ │ ├── common_google_signin_btn_text_dark_normal_background.9.png │ │ │ │ │ │ ├── common_google_signin_btn_text_light_normal_background.9.png │ │ │ │ │ │ ├── design_ic_visibility.png │ │ │ │ │ │ ├── design_ic_visibility_off.png │ │ │ │ │ │ ├── googleg_disabled_color_18.png │ │ │ │ │ │ ├── googleg_standard_color_18.png │ │ │ │ │ │ ├── notification_bg_low_normal.9.png │ │ │ │ │ │ ├── notification_bg_low_pressed.9.png │ │ │ │ │ │ ├── notification_bg_normal.9.png │ │ │ │ │ │ ├── notification_bg_normal_pressed.9.png │ │ │ │ │ │ └── notify_panel_notification_icon_bg.png │ │ │ │ │ │ ├── drawable-v21 │ │ │ │ │ │ ├── abc_action_bar_item_background_material.xml │ │ │ │ │ │ ├── abc_btn_colored_material.xml │ │ │ │ │ │ ├── abc_edit_text_material.xml │ │ │ │ │ │ ├── avd_hide_password.xml │ │ │ │ │ │ ├── avd_show_password.xml │ │ │ │ │ │ ├── design_bottom_navigation_item_background.xml │ │ │ │ │ │ ├── design_password_eye.xml │ │ │ │ │ │ └── notification_action_background.xml │ │ │ │ │ │ ├── drawable-v23 │ │ │ │ │ │ └── abc_control_background_material.xml │ │ │ │ │ │ ├── drawable-xhdpi-v4 │ │ │ │ │ │ ├── abc_ab_share_pack_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ │ │ │ │ ├── abc_cab_background_top_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_star_black_16dp.png │ │ │ │ │ │ ├── abc_ic_star_black_36dp.png │ │ │ │ │ │ ├── abc_ic_star_black_48dp.png │ │ │ │ │ │ ├── abc_ic_star_half_black_16dp.png │ │ │ │ │ │ ├── abc_ic_star_half_black_36dp.png │ │ │ │ │ │ ├── abc_ic_star_half_black_48dp.png │ │ │ │ │ │ ├── abc_list_divider_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_list_focused_holo.9.png │ │ │ │ │ │ ├── abc_list_longpressed_holo.9.png │ │ │ │ │ │ ├── abc_list_pressed_holo_dark.9.png │ │ │ │ │ │ ├── abc_list_pressed_holo_light.9.png │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ │ │ │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png │ │ │ │ │ │ ├── abc_popup_background_mtrl_mult.9.png │ │ │ │ │ │ ├── abc_scrubber_control_off_mtrl_alpha.png │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.png │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.png │ │ │ │ │ │ ├── abc_scrubber_primary_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_scrubber_track_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_text_select_handle_left_mtrl_dark.png │ │ │ │ │ │ ├── abc_text_select_handle_left_mtrl_light.png │ │ │ │ │ │ ├── abc_text_select_handle_middle_mtrl_dark.png │ │ │ │ │ │ ├── abc_text_select_handle_middle_mtrl_light.png │ │ │ │ │ │ ├── abc_text_select_handle_right_mtrl_dark.png │ │ │ │ │ │ ├── abc_text_select_handle_right_mtrl_light.png │ │ │ │ │ │ ├── abc_textfield_activated_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_textfield_default_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_textfield_search_default_mtrl_alpha.9.png │ │ │ │ │ │ ├── common_full_open_on_phone.png │ │ │ │ │ │ ├── common_google_signin_btn_icon_dark_normal_background.9.png │ │ │ │ │ │ ├── common_google_signin_btn_icon_light_normal_background.9.png │ │ │ │ │ │ ├── common_google_signin_btn_text_dark_normal_background.9.png │ │ │ │ │ │ ├── common_google_signin_btn_text_light_normal_background.9.png │ │ │ │ │ │ ├── design_ic_visibility.png │ │ │ │ │ │ ├── design_ic_visibility_off.png │ │ │ │ │ │ ├── googleg_disabled_color_18.png │ │ │ │ │ │ ├── googleg_standard_color_18.png │ │ │ │ │ │ ├── notification_bg_low_normal.9.png │ │ │ │ │ │ ├── notification_bg_low_pressed.9.png │ │ │ │ │ │ ├── notification_bg_normal.9.png │ │ │ │ │ │ ├── notification_bg_normal_pressed.9.png │ │ │ │ │ │ └── notify_panel_notification_icon_bg.png │ │ │ │ │ │ ├── drawable-xhdpi │ │ │ │ │ │ └── icon.png │ │ │ │ │ │ ├── drawable-xxhdpi-v4 │ │ │ │ │ │ ├── abc_ab_share_pack_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ │ │ │ │ ├── abc_cab_background_top_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_ic_commit_search_api_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_star_black_16dp.png │ │ │ │ │ │ ├── abc_ic_star_black_36dp.png │ │ │ │ │ │ ├── abc_ic_star_black_48dp.png │ │ │ │ │ │ ├── abc_ic_star_half_black_16dp.png │ │ │ │ │ │ ├── abc_ic_star_half_black_36dp.png │ │ │ │ │ │ ├── abc_ic_star_half_black_48dp.png │ │ │ │ │ │ ├── abc_list_divider_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_list_focused_holo.9.png │ │ │ │ │ │ ├── abc_list_longpressed_holo.9.png │ │ │ │ │ │ ├── abc_list_pressed_holo_dark.9.png │ │ │ │ │ │ ├── abc_list_pressed_holo_light.9.png │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_dark.9.png │ │ │ │ │ │ ├── abc_list_selector_disabled_holo_light.9.png │ │ │ │ │ │ ├── abc_menu_hardkey_panel_mtrl_mult.9.png │ │ │ │ │ │ ├── abc_popup_background_mtrl_mult.9.png │ │ │ │ │ │ ├── abc_scrubber_control_off_mtrl_alpha.png │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.png │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.png │ │ │ │ │ │ ├── abc_scrubber_primary_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_scrubber_track_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_text_select_handle_left_mtrl_dark.png │ │ │ │ │ │ ├── abc_text_select_handle_left_mtrl_light.png │ │ │ │ │ │ ├── abc_text_select_handle_middle_mtrl_dark.png │ │ │ │ │ │ ├── abc_text_select_handle_middle_mtrl_light.png │ │ │ │ │ │ ├── abc_text_select_handle_right_mtrl_dark.png │ │ │ │ │ │ ├── abc_text_select_handle_right_mtrl_light.png │ │ │ │ │ │ ├── abc_textfield_activated_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_textfield_default_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_textfield_search_activated_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_textfield_search_default_mtrl_alpha.9.png │ │ │ │ │ │ ├── common_google_signin_btn_icon_dark_normal_background.9.png │ │ │ │ │ │ ├── common_google_signin_btn_icon_light_normal_background.9.png │ │ │ │ │ │ ├── common_google_signin_btn_text_dark_normal_background.9.png │ │ │ │ │ │ ├── common_google_signin_btn_text_light_normal_background.9.png │ │ │ │ │ │ ├── design_ic_visibility.png │ │ │ │ │ │ ├── design_ic_visibility_off.png │ │ │ │ │ │ ├── googleg_disabled_color_18.png │ │ │ │ │ │ └── googleg_standard_color_18.png │ │ │ │ │ │ ├── drawable-xxhdpi │ │ │ │ │ │ └── icon.png │ │ │ │ │ │ ├── drawable-xxxhdpi-v4 │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_000.png │ │ │ │ │ │ ├── abc_btn_check_to_on_mtrl_015.png │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_000.png │ │ │ │ │ │ ├── abc_btn_radio_to_on_mtrl_015.png │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00001.9.png │ │ │ │ │ │ ├── abc_btn_switch_to_on_mtrl_00012.9.png │ │ │ │ │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_cut_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_selectall_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_menu_share_mtrl_alpha.png │ │ │ │ │ │ ├── abc_ic_star_black_16dp.png │ │ │ │ │ │ ├── abc_ic_star_black_36dp.png │ │ │ │ │ │ ├── abc_ic_star_black_48dp.png │ │ │ │ │ │ ├── abc_ic_star_half_black_16dp.png │ │ │ │ │ │ ├── abc_ic_star_half_black_36dp.png │ │ │ │ │ │ ├── abc_ic_star_half_black_48dp.png │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.png │ │ │ │ │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.png │ │ │ │ │ │ ├── abc_spinner_mtrl_am_alpha.9.png │ │ │ │ │ │ ├── abc_switch_track_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_tab_indicator_mtrl_alpha.9.png │ │ │ │ │ │ ├── abc_text_select_handle_left_mtrl_dark.png │ │ │ │ │ │ ├── abc_text_select_handle_left_mtrl_light.png │ │ │ │ │ │ ├── abc_text_select_handle_right_mtrl_dark.png │ │ │ │ │ │ ├── abc_text_select_handle_right_mtrl_light.png │ │ │ │ │ │ ├── design_ic_visibility.png │ │ │ │ │ │ └── design_ic_visibility_off.png │ │ │ │ │ │ ├── drawable-xxxhdpi │ │ │ │ │ │ └── icon.png │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ ├── abc_btn_borderless_material.xml │ │ │ │ │ │ ├── abc_btn_check_material.xml │ │ │ │ │ │ ├── abc_btn_default_mtrl_shape.xml │ │ │ │ │ │ ├── abc_btn_radio_material.xml │ │ │ │ │ │ ├── abc_cab_background_internal_bg.xml │ │ │ │ │ │ ├── abc_cab_background_top_material.xml │ │ │ │ │ │ ├── abc_dialog_material_background.xml │ │ │ │ │ │ ├── abc_ic_ab_back_material.xml │ │ │ │ │ │ ├── abc_ic_arrow_drop_right_black_24dp.xml │ │ │ │ │ │ ├── abc_ic_clear_material.xml │ │ │ │ │ │ ├── abc_ic_go_search_api_material.xml │ │ │ │ │ │ ├── abc_ic_menu_overflow_material.xml │ │ │ │ │ │ ├── abc_ic_search_api_material.xml │ │ │ │ │ │ ├── abc_ic_voice_search_api_material.xml │ │ │ │ │ │ ├── abc_item_background_holo_dark.xml │ │ │ │ │ │ ├── abc_item_background_holo_light.xml │ │ │ │ │ │ ├── abc_list_selector_background_transition_holo_dark.xml │ │ │ │ │ │ ├── abc_list_selector_background_transition_holo_light.xml │ │ │ │ │ │ ├── abc_list_selector_holo_dark.xml │ │ │ │ │ │ ├── abc_list_selector_holo_light.xml │ │ │ │ │ │ ├── abc_ratingbar_indicator_material.xml │ │ │ │ │ │ ├── abc_ratingbar_material.xml │ │ │ │ │ │ ├── abc_ratingbar_small_material.xml │ │ │ │ │ │ ├── abc_seekbar_thumb_material.xml │ │ │ │ │ │ ├── abc_seekbar_tick_mark_material.xml │ │ │ │ │ │ ├── abc_seekbar_track_material.xml │ │ │ │ │ │ ├── abc_spinner_textfield_background_material.xml │ │ │ │ │ │ ├── abc_switch_thumb_material.xml │ │ │ │ │ │ ├── abc_tab_indicator_material.xml │ │ │ │ │ │ ├── abc_text_cursor_material.xml │ │ │ │ │ │ ├── abc_textfield_search_material.xml │ │ │ │ │ │ ├── abc_vector_test.xml │ │ │ │ │ │ ├── common_google_signin_btn_icon_dark.xml │ │ │ │ │ │ ├── common_google_signin_btn_icon_dark_focused.xml │ │ │ │ │ │ ├── common_google_signin_btn_icon_dark_normal.xml │ │ │ │ │ │ ├── common_google_signin_btn_icon_disabled.xml │ │ │ │ │ │ ├── common_google_signin_btn_icon_light.xml │ │ │ │ │ │ ├── common_google_signin_btn_icon_light_focused.xml │ │ │ │ │ │ ├── common_google_signin_btn_icon_light_normal.xml │ │ │ │ │ │ ├── common_google_signin_btn_text_dark.xml │ │ │ │ │ │ ├── common_google_signin_btn_text_dark_focused.xml │ │ │ │ │ │ ├── common_google_signin_btn_text_dark_normal.xml │ │ │ │ │ │ ├── common_google_signin_btn_text_disabled.xml │ │ │ │ │ │ ├── common_google_signin_btn_text_light.xml │ │ │ │ │ │ ├── common_google_signin_btn_text_light_focused.xml │ │ │ │ │ │ ├── common_google_signin_btn_text_light_normal.xml │ │ │ │ │ │ ├── design_fab_background.xml │ │ │ │ │ │ ├── design_snackbar_background.xml │ │ │ │ │ │ ├── icon.png │ │ │ │ │ │ ├── navigation_empty_icon.xml │ │ │ │ │ │ ├── notification_bg.xml │ │ │ │ │ │ ├── notification_bg_low.xml │ │ │ │ │ │ ├── notification_icon_background.xml │ │ │ │ │ │ └── notification_tile_bg.xml │ │ │ │ │ │ ├── layout-sw600dp-v13 │ │ │ │ │ │ └── design_layout_snackbar.xml │ │ │ │ │ │ ├── layout-v11 │ │ │ │ │ │ ├── notification_media_action.xml │ │ │ │ │ │ ├── notification_media_cancel_action.xml │ │ │ │ │ │ ├── notification_template_big_media.xml │ │ │ │ │ │ ├── notification_template_big_media_custom.xml │ │ │ │ │ │ ├── notification_template_big_media_narrow.xml │ │ │ │ │ │ └── notification_template_big_media_narrow_custom.xml │ │ │ │ │ │ ├── layout-v21 │ │ │ │ │ │ ├── notification_action.xml │ │ │ │ │ │ ├── notification_action_tombstone.xml │ │ │ │ │ │ ├── notification_template_custom_big.xml │ │ │ │ │ │ └── notification_template_icon_group.xml │ │ │ │ │ │ ├── layout │ │ │ │ │ │ ├── abc_action_bar_title_item.xml │ │ │ │ │ │ ├── abc_action_bar_up_container.xml │ │ │ │ │ │ ├── abc_action_bar_view_list_nav_layout.xml │ │ │ │ │ │ ├── abc_action_menu_item_layout.xml │ │ │ │ │ │ ├── abc_action_menu_layout.xml │ │ │ │ │ │ ├── abc_action_mode_bar.xml │ │ │ │ │ │ ├── abc_action_mode_close_item_material.xml │ │ │ │ │ │ ├── abc_activity_chooser_view.xml │ │ │ │ │ │ ├── abc_activity_chooser_view_list_item.xml │ │ │ │ │ │ ├── abc_alert_dialog_button_bar_material.xml │ │ │ │ │ │ ├── abc_alert_dialog_material.xml │ │ │ │ │ │ ├── abc_alert_dialog_title_material.xml │ │ │ │ │ │ ├── abc_dialog_title_material.xml │ │ │ │ │ │ ├── abc_expanded_menu_layout.xml │ │ │ │ │ │ ├── abc_list_menu_item_checkbox.xml │ │ │ │ │ │ ├── abc_list_menu_item_icon.xml │ │ │ │ │ │ ├── abc_list_menu_item_layout.xml │ │ │ │ │ │ ├── abc_list_menu_item_radio.xml │ │ │ │ │ │ ├── abc_popup_menu_header_item_layout.xml │ │ │ │ │ │ ├── abc_popup_menu_item_layout.xml │ │ │ │ │ │ ├── abc_screen_content_include.xml │ │ │ │ │ │ ├── abc_screen_simple.xml │ │ │ │ │ │ ├── abc_screen_simple_overlay_action_mode.xml │ │ │ │ │ │ ├── abc_screen_toolbar.xml │ │ │ │ │ │ ├── abc_search_dropdown_item_icons_2line.xml │ │ │ │ │ │ ├── abc_search_view.xml │ │ │ │ │ │ ├── abc_select_dialog_material.xml │ │ │ │ │ │ ├── activity_handheld.xml │ │ │ │ │ │ ├── content_main.xml │ │ │ │ │ │ ├── design_bottom_navigation_item.xml │ │ │ │ │ │ ├── design_bottom_sheet_dialog.xml │ │ │ │ │ │ ├── design_layout_snackbar.xml │ │ │ │ │ │ ├── design_layout_snackbar_include.xml │ │ │ │ │ │ ├── design_layout_tab_icon.xml │ │ │ │ │ │ ├── design_layout_tab_text.xml │ │ │ │ │ │ ├── design_menu_item_action_area.xml │ │ │ │ │ │ ├── design_navigation_item.xml │ │ │ │ │ │ ├── design_navigation_item_header.xml │ │ │ │ │ │ ├── design_navigation_item_separator.xml │ │ │ │ │ │ ├── design_navigation_item_subheader.xml │ │ │ │ │ │ ├── design_navigation_menu.xml │ │ │ │ │ │ ├── design_navigation_menu_item.xml │ │ │ │ │ │ ├── design_text_input_password_icon.xml │ │ │ │ │ │ ├── notification_template_lines_media.xml │ │ │ │ │ │ ├── notification_template_media.xml │ │ │ │ │ │ ├── notification_template_media_custom.xml │ │ │ │ │ │ ├── notification_template_part_chronometer.xml │ │ │ │ │ │ ├── notification_template_part_time.xml │ │ │ │ │ │ ├── select_dialog_item_material.xml │ │ │ │ │ │ ├── select_dialog_multichoice_material.xml │ │ │ │ │ │ ├── select_dialog_singlechoice_material.xml │ │ │ │ │ │ └── support_simple_spinner_dropdown_item.xml │ │ │ │ │ │ ├── raw │ │ │ │ │ │ └── androidwatchexport_debug.apk │ │ │ │ │ │ ├── values-af │ │ │ │ │ │ └── values-af.xml │ │ │ │ │ │ ├── values-am │ │ │ │ │ │ └── values-am.xml │ │ │ │ │ │ ├── values-ar │ │ │ │ │ │ └── values-ar.xml │ │ │ │ │ │ ├── values-az-rAZ │ │ │ │ │ │ └── values-az-rAZ.xml │ │ │ │ │ │ ├── values-az │ │ │ │ │ │ └── values-az.xml │ │ │ │ │ │ ├── values-b+sr+Latn │ │ │ │ │ │ └── values-b+sr+Latn.xml │ │ │ │ │ │ ├── values-be-rBY │ │ │ │ │ │ └── values-be-rBY.xml │ │ │ │ │ │ ├── values-be │ │ │ │ │ │ └── values-be.xml │ │ │ │ │ │ ├── values-bg │ │ │ │ │ │ └── values-bg.xml │ │ │ │ │ │ ├── values-bn-rBD │ │ │ │ │ │ └── values-bn-rBD.xml │ │ │ │ │ │ ├── values-bn │ │ │ │ │ │ └── values-bn.xml │ │ │ │ │ │ ├── values-bs-rBA │ │ │ │ │ │ └── values-bs-rBA.xml │ │ │ │ │ │ ├── values-bs │ │ │ │ │ │ └── values-bs.xml │ │ │ │ │ │ ├── values-ca │ │ │ │ │ │ └── values-ca.xml │ │ │ │ │ │ ├── values-cs │ │ │ │ │ │ └── values-cs.xml │ │ │ │ │ │ ├── values-da │ │ │ │ │ │ └── values-da.xml │ │ │ │ │ │ ├── values-de │ │ │ │ │ │ └── values-de.xml │ │ │ │ │ │ ├── values-el │ │ │ │ │ │ └── values-el.xml │ │ │ │ │ │ ├── values-en-rAU │ │ │ │ │ │ └── values-en-rAU.xml │ │ │ │ │ │ ├── values-en-rGB │ │ │ │ │ │ └── values-en-rGB.xml │ │ │ │ │ │ ├── values-en-rIN │ │ │ │ │ │ └── values-en-rIN.xml │ │ │ │ │ │ ├── values-es-rUS │ │ │ │ │ │ └── values-es-rUS.xml │ │ │ │ │ │ ├── values-es │ │ │ │ │ │ └── values-es.xml │ │ │ │ │ │ ├── values-et-rEE │ │ │ │ │ │ └── values-et-rEE.xml │ │ │ │ │ │ ├── values-et │ │ │ │ │ │ └── values-et.xml │ │ │ │ │ │ ├── values-eu-rES │ │ │ │ │ │ └── values-eu-rES.xml │ │ │ │ │ │ ├── values-eu │ │ │ │ │ │ └── values-eu.xml │ │ │ │ │ │ ├── values-fa │ │ │ │ │ │ └── values-fa.xml │ │ │ │ │ │ ├── values-fi │ │ │ │ │ │ └── values-fi.xml │ │ │ │ │ │ ├── values-fr-rCA │ │ │ │ │ │ └── values-fr-rCA.xml │ │ │ │ │ │ ├── values-fr │ │ │ │ │ │ └── values-fr.xml │ │ │ │ │ │ ├── values-gl-rES │ │ │ │ │ │ └── values-gl-rES.xml │ │ │ │ │ │ ├── values-gl │ │ │ │ │ │ └── values-gl.xml │ │ │ │ │ │ ├── values-gu-rIN │ │ │ │ │ │ └── values-gu-rIN.xml │ │ │ │ │ │ ├── values-gu │ │ │ │ │ │ └── values-gu.xml │ │ │ │ │ │ ├── values-h720dp-v13 │ │ │ │ │ │ └── values-h720dp-v13.xml │ │ │ │ │ │ ├── values-hdpi-v4 │ │ │ │ │ │ └── values-hdpi-v4.xml │ │ │ │ │ │ ├── values-hi │ │ │ │ │ │ └── values-hi.xml │ │ │ │ │ │ ├── values-hr │ │ │ │ │ │ └── values-hr.xml │ │ │ │ │ │ ├── values-hu │ │ │ │ │ │ └── values-hu.xml │ │ │ │ │ │ ├── values-hy-rAM │ │ │ │ │ │ └── values-hy-rAM.xml │ │ │ │ │ │ ├── values-hy │ │ │ │ │ │ └── values-hy.xml │ │ │ │ │ │ ├── values-in │ │ │ │ │ │ └── values-in.xml │ │ │ │ │ │ ├── values-is-rIS │ │ │ │ │ │ └── values-is-rIS.xml │ │ │ │ │ │ ├── values-is │ │ │ │ │ │ └── values-is.xml │ │ │ │ │ │ ├── values-it │ │ │ │ │ │ └── values-it.xml │ │ │ │ │ │ ├── values-iw │ │ │ │ │ │ └── values-iw.xml │ │ │ │ │ │ ├── values-ja │ │ │ │ │ │ └── values-ja.xml │ │ │ │ │ │ ├── values-ka-rGE │ │ │ │ │ │ └── values-ka-rGE.xml │ │ │ │ │ │ ├── values-ka │ │ │ │ │ │ └── values-ka.xml │ │ │ │ │ │ ├── values-kk-rKZ │ │ │ │ │ │ └── values-kk-rKZ.xml │ │ │ │ │ │ ├── values-kk │ │ │ │ │ │ └── values-kk.xml │ │ │ │ │ │ ├── values-km-rKH │ │ │ │ │ │ └── values-km-rKH.xml │ │ │ │ │ │ ├── values-km │ │ │ │ │ │ └── values-km.xml │ │ │ │ │ │ ├── values-kn-rIN │ │ │ │ │ │ └── values-kn-rIN.xml │ │ │ │ │ │ ├── values-kn │ │ │ │ │ │ └── values-kn.xml │ │ │ │ │ │ ├── values-ko │ │ │ │ │ │ └── values-ko.xml │ │ │ │ │ │ ├── values-ky-rKG │ │ │ │ │ │ └── values-ky-rKG.xml │ │ │ │ │ │ ├── values-ky │ │ │ │ │ │ └── values-ky.xml │ │ │ │ │ │ ├── values-land │ │ │ │ │ │ └── values-land.xml │ │ │ │ │ │ ├── values-large-v4 │ │ │ │ │ │ └── values-large-v4.xml │ │ │ │ │ │ ├── values-ldltr-v21 │ │ │ │ │ │ └── values-ldltr-v21.xml │ │ │ │ │ │ ├── values-lo-rLA │ │ │ │ │ │ └── values-lo-rLA.xml │ │ │ │ │ │ ├── values-lo │ │ │ │ │ │ └── values-lo.xml │ │ │ │ │ │ ├── values-lt │ │ │ │ │ │ └── values-lt.xml │ │ │ │ │ │ ├── values-lv │ │ │ │ │ │ └── values-lv.xml │ │ │ │ │ │ ├── values-mk-rMK │ │ │ │ │ │ └── values-mk-rMK.xml │ │ │ │ │ │ ├── values-mk │ │ │ │ │ │ └── values-mk.xml │ │ │ │ │ │ ├── values-ml-rIN │ │ │ │ │ │ └── values-ml-rIN.xml │ │ │ │ │ │ ├── values-ml │ │ │ │ │ │ └── values-ml.xml │ │ │ │ │ │ ├── values-mn-rMN │ │ │ │ │ │ └── values-mn-rMN.xml │ │ │ │ │ │ ├── values-mn │ │ │ │ │ │ └── values-mn.xml │ │ │ │ │ │ ├── values-mr-rIN │ │ │ │ │ │ └── values-mr-rIN.xml │ │ │ │ │ │ ├── values-mr │ │ │ │ │ │ └── values-mr.xml │ │ │ │ │ │ ├── values-ms-rMY │ │ │ │ │ │ └── values-ms-rMY.xml │ │ │ │ │ │ ├── values-ms │ │ │ │ │ │ └── values-ms.xml │ │ │ │ │ │ ├── values-my-rMM │ │ │ │ │ │ └── values-my-rMM.xml │ │ │ │ │ │ ├── values-my │ │ │ │ │ │ └── values-my.xml │ │ │ │ │ │ ├── values-nb │ │ │ │ │ │ └── values-nb.xml │ │ │ │ │ │ ├── values-ne-rNP │ │ │ │ │ │ └── values-ne-rNP.xml │ │ │ │ │ │ ├── values-ne │ │ │ │ │ │ └── values-ne.xml │ │ │ │ │ │ ├── values-night-v8 │ │ │ │ │ │ └── values-night-v8.xml │ │ │ │ │ │ ├── values-nl │ │ │ │ │ │ └── values-nl.xml │ │ │ │ │ │ ├── values-pa-rIN │ │ │ │ │ │ └── values-pa-rIN.xml │ │ │ │ │ │ ├── values-pa │ │ │ │ │ │ └── values-pa.xml │ │ │ │ │ │ ├── values-pl │ │ │ │ │ │ └── values-pl.xml │ │ │ │ │ │ ├── values-port │ │ │ │ │ │ └── values-port.xml │ │ │ │ │ │ ├── values-pt-rBR │ │ │ │ │ │ └── values-pt-rBR.xml │ │ │ │ │ │ ├── values-pt-rPT │ │ │ │ │ │ └── values-pt-rPT.xml │ │ │ │ │ │ ├── values-pt │ │ │ │ │ │ └── values-pt.xml │ │ │ │ │ │ ├── values-ro │ │ │ │ │ │ └── values-ro.xml │ │ │ │ │ │ ├── values-ru │ │ │ │ │ │ └── values-ru.xml │ │ │ │ │ │ ├── values-si-rLK │ │ │ │ │ │ └── values-si-rLK.xml │ │ │ │ │ │ ├── values-si │ │ │ │ │ │ └── values-si.xml │ │ │ │ │ │ ├── values-sk │ │ │ │ │ │ └── values-sk.xml │ │ │ │ │ │ ├── values-sl │ │ │ │ │ │ └── values-sl.xml │ │ │ │ │ │ ├── values-sq-rAL │ │ │ │ │ │ └── values-sq-rAL.xml │ │ │ │ │ │ ├── values-sq │ │ │ │ │ │ └── values-sq.xml │ │ │ │ │ │ ├── values-sr │ │ │ │ │ │ └── values-sr.xml │ │ │ │ │ │ ├── values-sv │ │ │ │ │ │ └── values-sv.xml │ │ │ │ │ │ ├── values-sw │ │ │ │ │ │ └── values-sw.xml │ │ │ │ │ │ ├── values-sw600dp-v13 │ │ │ │ │ │ └── values-sw600dp-v13.xml │ │ │ │ │ │ ├── values-ta-rIN │ │ │ │ │ │ └── values-ta-rIN.xml │ │ │ │ │ │ ├── values-ta │ │ │ │ │ │ └── values-ta.xml │ │ │ │ │ │ ├── values-te-rIN │ │ │ │ │ │ └── values-te-rIN.xml │ │ │ │ │ │ ├── values-te │ │ │ │ │ │ └── values-te.xml │ │ │ │ │ │ ├── values-th │ │ │ │ │ │ └── values-th.xml │ │ │ │ │ │ ├── values-tl │ │ │ │ │ │ └── values-tl.xml │ │ │ │ │ │ ├── values-tr │ │ │ │ │ │ └── values-tr.xml │ │ │ │ │ │ ├── values-uk │ │ │ │ │ │ └── values-uk.xml │ │ │ │ │ │ ├── values-ur-rPK │ │ │ │ │ │ └── values-ur-rPK.xml │ │ │ │ │ │ ├── values-ur │ │ │ │ │ │ └── values-ur.xml │ │ │ │ │ │ ├── values-uz-rUZ │ │ │ │ │ │ └── values-uz-rUZ.xml │ │ │ │ │ │ ├── values-uz │ │ │ │ │ │ └── values-uz.xml │ │ │ │ │ │ ├── values-v11 │ │ │ │ │ │ └── values-v11.xml │ │ │ │ │ │ ├── values-v12 │ │ │ │ │ │ └── values-v12.xml │ │ │ │ │ │ ├── values-v13 │ │ │ │ │ │ └── values-v13.xml │ │ │ │ │ │ ├── values-v14 │ │ │ │ │ │ └── values-v14.xml │ │ │ │ │ │ ├── values-v16 │ │ │ │ │ │ └── values-v16.xml │ │ │ │ │ │ ├── values-v17 │ │ │ │ │ │ └── values-v17.xml │ │ │ │ │ │ ├── values-v18 │ │ │ │ │ │ └── values-v18.xml │ │ │ │ │ │ ├── values-v21 │ │ │ │ │ │ └── values-v21.xml │ │ │ │ │ │ ├── values-v22 │ │ │ │ │ │ └── values-v22.xml │ │ │ │ │ │ ├── values-v23 │ │ │ │ │ │ └── values-v23.xml │ │ │ │ │ │ ├── values-v24 │ │ │ │ │ │ └── values-v24.xml │ │ │ │ │ │ ├── values-v25 │ │ │ │ │ │ └── values-v25.xml │ │ │ │ │ │ ├── values-vi │ │ │ │ │ │ └── values-vi.xml │ │ │ │ │ │ ├── values-xlarge-v4 │ │ │ │ │ │ └── values-xlarge-v4.xml │ │ │ │ │ │ ├── values-zh-rCN │ │ │ │ │ │ └── values-zh-rCN.xml │ │ │ │ │ │ ├── values-zh-rHK │ │ │ │ │ │ └── values-zh-rHK.xml │ │ │ │ │ │ ├── values-zh-rTW │ │ │ │ │ │ └── values-zh-rTW.xml │ │ │ │ │ │ ├── values-zu │ │ │ │ │ │ └── values-zu.xml │ │ │ │ │ │ ├── values │ │ │ │ │ │ └── values.xml │ │ │ │ │ │ └── xml │ │ │ │ │ │ └── wearable_app_desc.xml │ │ │ │ ├── resources-debug-androidTest.ap_ │ │ │ │ └── resources-debug.ap_ │ │ │ └── symbols │ │ │ │ ├── androidTest │ │ │ │ └── debug │ │ │ │ │ └── R.txt │ │ │ │ └── debug │ │ │ │ └── R.txt │ │ └── outputs │ │ │ └── logs │ │ │ └── manifest-merger-debug-report.txt │ ├── libs │ │ └── processing-core.jar │ ├── mobile.iml │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── processing │ │ │ └── test │ │ │ └── androidwatchexport │ │ │ ├── HandheldActivity.java │ │ │ └── Sketch.java │ │ └── res │ │ ├── drawable-hdpi │ │ └── icon.png │ │ ├── drawable-ldpi │ │ └── icon.png │ │ ├── drawable-xhdpi │ │ └── icon.png │ │ ├── drawable-xxhdpi │ │ └── icon.png │ │ ├── drawable-xxxhdpi │ │ └── icon.png │ │ ├── drawable │ │ └── icon.png │ │ ├── layout │ │ ├── activity_handheld.xml │ │ └── content_main.xml │ │ ├── raw │ │ └── androidwatchexport_debug.apk │ │ ├── values │ │ └── styles.xml │ │ └── xml │ │ └── wearable_app_desc.xml │ ├── settings.gradle │ └── wear │ ├── build.gradle │ ├── build │ ├── generated │ │ └── source │ │ │ ├── buildConfig │ │ │ ├── androidTest │ │ │ │ └── debug │ │ │ │ │ └── processing │ │ │ │ │ └── test │ │ │ │ │ └── androidwatchexport │ │ │ │ │ └── test │ │ │ │ │ └── BuildConfig.java │ │ │ └── debug │ │ │ │ └── processing │ │ │ │ └── test │ │ │ │ └── androidwatchexport │ │ │ │ └── BuildConfig.java │ │ │ └── r │ │ │ └── debug │ │ │ ├── android │ │ │ └── support │ │ │ │ ├── percent │ │ │ │ └── R.java │ │ │ │ ├── v4 │ │ │ │ └── R.java │ │ │ │ ├── v7 │ │ │ │ └── recyclerview │ │ │ │ │ └── R.java │ │ │ │ └── wearable │ │ │ │ └── R.java │ │ │ ├── com │ │ │ └── google │ │ │ │ └── android │ │ │ │ └── gms │ │ │ │ ├── R.java │ │ │ │ ├── base │ │ │ │ └── R.java │ │ │ │ ├── fitness │ │ │ │ └── R.java │ │ │ │ ├── location │ │ │ │ └── R.java │ │ │ │ ├── tasks │ │ │ │ └── R.java │ │ │ │ └── wearable │ │ │ │ └── R.java │ │ │ └── processing │ │ │ └── test │ │ │ └── androidwatchexport │ │ │ └── R.java │ ├── intermediates │ │ ├── blame │ │ │ └── res │ │ │ │ └── debug │ │ │ │ ├── multi │ │ │ │ ├── values-af.json │ │ │ │ ├── values-am.json │ │ │ │ ├── values-ar.json │ │ │ │ ├── values-az.json │ │ │ │ ├── values-b+es+419.json │ │ │ │ ├── values-be.json │ │ │ │ ├── values-bg.json │ │ │ │ ├── values-bn.json │ │ │ │ ├── values-bs.json │ │ │ │ ├── values-ca.json │ │ │ │ ├── values-cs.json │ │ │ │ ├── values-da.json │ │ │ │ ├── values-de.json │ │ │ │ ├── values-el.json │ │ │ │ ├── values-en-rGB.json │ │ │ │ ├── values-es-rUS.json │ │ │ │ ├── values-es.json │ │ │ │ ├── values-et.json │ │ │ │ ├── values-eu.json │ │ │ │ ├── values-fa.json │ │ │ │ ├── values-fi.json │ │ │ │ ├── values-fr-rCA.json │ │ │ │ ├── values-fr.json │ │ │ │ ├── values-gl.json │ │ │ │ ├── values-gu.json │ │ │ │ ├── values-hi.json │ │ │ │ ├── values-hr.json │ │ │ │ ├── values-hu.json │ │ │ │ ├── values-hy.json │ │ │ │ ├── values-in.json │ │ │ │ ├── values-is.json │ │ │ │ ├── values-it.json │ │ │ │ ├── values-iw.json │ │ │ │ ├── values-ja.json │ │ │ │ ├── values-ka.json │ │ │ │ ├── values-kk.json │ │ │ │ ├── values-km.json │ │ │ │ ├── values-kn.json │ │ │ │ ├── values-ko.json │ │ │ │ ├── values-ky.json │ │ │ │ ├── values-lo.json │ │ │ │ ├── values-lt.json │ │ │ │ ├── values-lv.json │ │ │ │ ├── values-mk.json │ │ │ │ ├── values-ml.json │ │ │ │ ├── values-mn.json │ │ │ │ ├── values-mr.json │ │ │ │ ├── values-ms.json │ │ │ │ ├── values-my.json │ │ │ │ ├── values-nb.json │ │ │ │ ├── values-ne.json │ │ │ │ ├── values-nl.json │ │ │ │ ├── values-notround-v23.json │ │ │ │ ├── values-pa.json │ │ │ │ ├── values-pl.json │ │ │ │ ├── values-pt-rBR.json │ │ │ │ ├── values-pt-rPT.json │ │ │ │ ├── values-ro.json │ │ │ │ ├── values-round-v23.json │ │ │ │ ├── values-ru.json │ │ │ │ ├── values-si.json │ │ │ │ ├── values-sk.json │ │ │ │ ├── values-sl.json │ │ │ │ ├── values-sq.json │ │ │ │ ├── values-sr.json │ │ │ │ ├── values-sv.json │ │ │ │ ├── values-sw.json │ │ │ │ ├── values-sw180dp-notround-v23.json │ │ │ │ ├── values-sw210dp-round-v23.json │ │ │ │ ├── values-sw210dp-v13.json │ │ │ │ ├── values-ta.json │ │ │ │ ├── values-te.json │ │ │ │ ├── values-th.json │ │ │ │ ├── values-tl.json │ │ │ │ ├── values-tr.json │ │ │ │ ├── values-uk.json │ │ │ │ ├── values-ur.json │ │ │ │ ├── values-uz.json │ │ │ │ ├── values-v20.json │ │ │ │ ├── values-v21.json │ │ │ │ ├── values-v23.json │ │ │ │ ├── values-vi.json │ │ │ │ ├── values-w192dp-v13.json │ │ │ │ ├── values-w205dp-v13.json │ │ │ │ ├── values-w225dp-v13.json │ │ │ │ ├── values-w228dp-v13.json │ │ │ │ ├── values-w240dp-v13.json │ │ │ │ ├── values-zh-rCN.json │ │ │ │ ├── values-zh-rHK.json │ │ │ │ ├── values-zh-rTW.json │ │ │ │ ├── values-zu.json │ │ │ │ └── values.json │ │ │ │ └── single │ │ │ │ ├── anim-v21.json │ │ │ │ ├── animator-v21.json │ │ │ │ ├── color-v21.json │ │ │ │ ├── color-v23.json │ │ │ │ ├── color.json │ │ │ │ ├── drawable-hdpi-v4.json │ │ │ │ ├── drawable-hdpi.json │ │ │ │ ├── drawable-ldpi.json │ │ │ │ ├── drawable-mdpi-v4.json │ │ │ │ ├── drawable-v21.json │ │ │ │ ├── drawable-v23.json │ │ │ │ ├── drawable-xhdpi-v4.json │ │ │ │ ├── drawable-xhdpi.json │ │ │ │ ├── drawable-xxhdpi-v4.json │ │ │ │ ├── drawable-xxhdpi.json │ │ │ │ ├── drawable-xxxhdpi.json │ │ │ │ ├── drawable.json │ │ │ │ ├── interpolator-v21.json │ │ │ │ ├── layout-v20.json │ │ │ │ ├── layout-v21.json │ │ │ │ ├── layout-v23.json │ │ │ │ ├── layout.json │ │ │ │ └── xml.json │ │ ├── incremental │ │ │ ├── compileDebugAidl │ │ │ │ └── dependency.store │ │ │ ├── compileDebugAndroidTestAidl │ │ │ │ └── dependency.store │ │ │ ├── mergeDebugAndroidTestResources │ │ │ │ ├── compile-file-map.properties │ │ │ │ └── merger.xml │ │ │ └── mergeDebugResources │ │ │ │ ├── compile-file-map.properties │ │ │ │ ├── merged.dir │ │ │ │ ├── values-af │ │ │ │ │ └── values-af.xml │ │ │ │ ├── values-am │ │ │ │ │ └── values-am.xml │ │ │ │ ├── values-ar │ │ │ │ │ └── values-ar.xml │ │ │ │ ├── values-az │ │ │ │ │ └── values-az.xml │ │ │ │ ├── values-b+es+419 │ │ │ │ │ └── values-b+es+419.xml │ │ │ │ ├── values-be │ │ │ │ │ └── values-be.xml │ │ │ │ ├── values-bg │ │ │ │ │ └── values-bg.xml │ │ │ │ ├── values-bn │ │ │ │ │ └── values-bn.xml │ │ │ │ ├── values-bs │ │ │ │ │ └── values-bs.xml │ │ │ │ ├── values-ca │ │ │ │ │ └── values-ca.xml │ │ │ │ ├── values-cs │ │ │ │ │ └── values-cs.xml │ │ │ │ ├── values-da │ │ │ │ │ └── values-da.xml │ │ │ │ ├── values-de │ │ │ │ │ └── values-de.xml │ │ │ │ ├── values-el │ │ │ │ │ └── values-el.xml │ │ │ │ ├── values-en-rGB │ │ │ │ │ └── values-en-rGB.xml │ │ │ │ ├── values-es-rUS │ │ │ │ │ └── values-es-rUS.xml │ │ │ │ ├── values-es │ │ │ │ │ └── values-es.xml │ │ │ │ ├── values-et │ │ │ │ │ └── values-et.xml │ │ │ │ ├── values-eu │ │ │ │ │ └── values-eu.xml │ │ │ │ ├── values-fa │ │ │ │ │ └── values-fa.xml │ │ │ │ ├── values-fi │ │ │ │ │ └── values-fi.xml │ │ │ │ ├── values-fr-rCA │ │ │ │ │ └── values-fr-rCA.xml │ │ │ │ ├── values-fr │ │ │ │ │ └── values-fr.xml │ │ │ │ ├── values-gl │ │ │ │ │ └── values-gl.xml │ │ │ │ ├── values-gu │ │ │ │ │ └── values-gu.xml │ │ │ │ ├── values-hi │ │ │ │ │ └── values-hi.xml │ │ │ │ ├── values-hr │ │ │ │ │ └── values-hr.xml │ │ │ │ ├── values-hu │ │ │ │ │ └── values-hu.xml │ │ │ │ ├── values-hy │ │ │ │ │ └── values-hy.xml │ │ │ │ ├── values-in │ │ │ │ │ └── values-in.xml │ │ │ │ ├── values-is │ │ │ │ │ └── values-is.xml │ │ │ │ ├── values-it │ │ │ │ │ └── values-it.xml │ │ │ │ ├── values-iw │ │ │ │ │ └── values-iw.xml │ │ │ │ ├── values-ja │ │ │ │ │ └── values-ja.xml │ │ │ │ ├── values-ka │ │ │ │ │ └── values-ka.xml │ │ │ │ ├── values-kk │ │ │ │ │ └── values-kk.xml │ │ │ │ ├── values-km │ │ │ │ │ └── values-km.xml │ │ │ │ ├── values-kn │ │ │ │ │ └── values-kn.xml │ │ │ │ ├── values-ko │ │ │ │ │ └── values-ko.xml │ │ │ │ ├── values-ky │ │ │ │ │ └── values-ky.xml │ │ │ │ ├── values-lo │ │ │ │ │ └── values-lo.xml │ │ │ │ ├── values-lt │ │ │ │ │ └── values-lt.xml │ │ │ │ ├── values-lv │ │ │ │ │ └── values-lv.xml │ │ │ │ ├── values-mk │ │ │ │ │ └── values-mk.xml │ │ │ │ ├── values-ml │ │ │ │ │ └── values-ml.xml │ │ │ │ ├── values-mn │ │ │ │ │ └── values-mn.xml │ │ │ │ ├── values-mr │ │ │ │ │ └── values-mr.xml │ │ │ │ ├── values-ms │ │ │ │ │ └── values-ms.xml │ │ │ │ ├── values-my │ │ │ │ │ └── values-my.xml │ │ │ │ ├── values-nb │ │ │ │ │ └── values-nb.xml │ │ │ │ ├── values-ne │ │ │ │ │ └── values-ne.xml │ │ │ │ ├── values-nl │ │ │ │ │ └── values-nl.xml │ │ │ │ ├── values-notround-v23 │ │ │ │ │ └── values-notround-v23.xml │ │ │ │ ├── values-pa │ │ │ │ │ └── values-pa.xml │ │ │ │ ├── values-pl │ │ │ │ │ └── values-pl.xml │ │ │ │ ├── values-pt-rBR │ │ │ │ │ └── values-pt-rBR.xml │ │ │ │ ├── values-pt-rPT │ │ │ │ │ └── values-pt-rPT.xml │ │ │ │ ├── values-ro │ │ │ │ │ └── values-ro.xml │ │ │ │ ├── values-round-v23 │ │ │ │ │ └── values-round-v23.xml │ │ │ │ ├── values-ru │ │ │ │ │ └── values-ru.xml │ │ │ │ ├── values-si │ │ │ │ │ └── values-si.xml │ │ │ │ ├── values-sk │ │ │ │ │ └── values-sk.xml │ │ │ │ ├── values-sl │ │ │ │ │ └── values-sl.xml │ │ │ │ ├── values-sq │ │ │ │ │ └── values-sq.xml │ │ │ │ ├── values-sr │ │ │ │ │ └── values-sr.xml │ │ │ │ ├── values-sv │ │ │ │ │ └── values-sv.xml │ │ │ │ ├── values-sw │ │ │ │ │ └── values-sw.xml │ │ │ │ ├── values-sw180dp-notround-v23 │ │ │ │ │ └── values-sw180dp-notround-v23.xml │ │ │ │ ├── values-sw210dp-round-v23 │ │ │ │ │ └── values-sw210dp-round-v23.xml │ │ │ │ ├── values-sw210dp-v13 │ │ │ │ │ └── values-sw210dp-v13.xml │ │ │ │ ├── values-ta │ │ │ │ │ └── values-ta.xml │ │ │ │ ├── values-te │ │ │ │ │ └── values-te.xml │ │ │ │ ├── values-th │ │ │ │ │ └── values-th.xml │ │ │ │ ├── values-tl │ │ │ │ │ └── values-tl.xml │ │ │ │ ├── values-tr │ │ │ │ │ └── values-tr.xml │ │ │ │ ├── values-uk │ │ │ │ │ └── values-uk.xml │ │ │ │ ├── values-ur │ │ │ │ │ └── values-ur.xml │ │ │ │ ├── values-uz │ │ │ │ │ └── values-uz.xml │ │ │ │ ├── values-v20 │ │ │ │ │ └── values-v20.xml │ │ │ │ ├── values-v21 │ │ │ │ │ └── values-v21.xml │ │ │ │ ├── values-v23 │ │ │ │ │ └── values-v23.xml │ │ │ │ ├── values-vi │ │ │ │ │ └── values-vi.xml │ │ │ │ ├── values-w192dp-v13 │ │ │ │ │ └── values-w192dp-v13.xml │ │ │ │ ├── values-w205dp-v13 │ │ │ │ │ └── values-w205dp-v13.xml │ │ │ │ ├── values-w225dp-v13 │ │ │ │ │ └── values-w225dp-v13.xml │ │ │ │ ├── values-w228dp-v13 │ │ │ │ │ └── values-w228dp-v13.xml │ │ │ │ ├── values-w240dp-v13 │ │ │ │ │ └── values-w240dp-v13.xml │ │ │ │ ├── values-zh-rCN │ │ │ │ │ └── values-zh-rCN.xml │ │ │ │ ├── values-zh-rHK │ │ │ │ │ └── values-zh-rHK.xml │ │ │ │ ├── values-zh-rTW │ │ │ │ │ └── values-zh-rTW.xml │ │ │ │ ├── values-zu │ │ │ │ │ └── values-zu.xml │ │ │ │ └── values │ │ │ │ │ └── values.xml │ │ │ │ └── merger.xml │ │ ├── manifest │ │ │ └── androidTest │ │ │ │ └── debug │ │ │ │ └── AndroidManifest.xml │ │ ├── manifests │ │ │ └── full │ │ │ │ └── debug │ │ │ │ └── AndroidManifest.xml │ │ ├── res │ │ │ ├── merged │ │ │ │ └── debug │ │ │ │ │ ├── anim-v21 │ │ │ │ │ ├── generic_confirmation_generic_confirmation_animation.xml │ │ │ │ │ ├── generic_confirmation_icon_animation.xml │ │ │ │ │ ├── open_on_phone_arrow_animation.xml │ │ │ │ │ ├── open_on_phone_path_1_animation.xml │ │ │ │ │ └── open_on_phone_path_2_animation.xml │ │ │ │ │ ├── animator-v21 │ │ │ │ │ └── circular_image_button_anim.xml │ │ │ │ │ ├── color-v21 │ │ │ │ │ └── btn_colored_background_material.xml │ │ │ │ │ ├── color-v23 │ │ │ │ │ └── button_icon_color.xml │ │ │ │ │ ├── color │ │ │ │ │ ├── card_grey_text_color.xml │ │ │ │ │ ├── card_text_color.xml │ │ │ │ │ ├── circular_button.xml │ │ │ │ │ ├── common_google_signin_btn_text_dark.xml │ │ │ │ │ ├── common_google_signin_btn_text_light.xml │ │ │ │ │ └── common_google_signin_btn_tint.xml │ │ │ │ │ ├── drawable-hdpi-v4 │ │ │ │ │ ├── card_frame.9.png │ │ │ │ │ ├── card_frame_pressed.9.png │ │ │ │ │ ├── common_full_open_on_phone.png │ │ │ │ │ ├── common_google_signin_btn_icon_dark_normal_background.9.png │ │ │ │ │ ├── common_google_signin_btn_icon_light_normal_background.9.png │ │ │ │ │ ├── common_google_signin_btn_text_dark_normal_background.9.png │ │ │ │ │ ├── common_google_signin_btn_text_light_normal_background.9.png │ │ │ │ │ ├── googleg_disabled_color_18.png │ │ │ │ │ ├── googleg_standard_color_18.png │ │ │ │ │ ├── ic_full_cancel.png │ │ │ │ │ └── ic_full_sad.png │ │ │ │ │ ├── drawable-hdpi │ │ │ │ │ └── icon.png │ │ │ │ │ ├── drawable-ldpi │ │ │ │ │ └── icon.png │ │ │ │ │ ├── drawable-mdpi-v4 │ │ │ │ │ ├── card_frame.9.png │ │ │ │ │ ├── card_frame_pressed.9.png │ │ │ │ │ ├── common_google_signin_btn_icon_dark_normal_background.9.png │ │ │ │ │ ├── common_google_signin_btn_icon_light_normal_background.9.png │ │ │ │ │ ├── common_google_signin_btn_text_dark_normal_background.9.png │ │ │ │ │ ├── common_google_signin_btn_text_light_normal_background.9.png │ │ │ │ │ ├── googleg_disabled_color_18.png │ │ │ │ │ ├── googleg_standard_color_18.png │ │ │ │ │ ├── ic_full_cancel.png │ │ │ │ │ └── ic_full_sad.png │ │ │ │ │ ├── drawable-v21 │ │ │ │ │ ├── accept_deny_dialog_negative_bg.xml │ │ │ │ │ ├── accept_deny_dialog_positive_bg.xml │ │ │ │ │ ├── generic_confirmation.xml │ │ │ │ │ ├── generic_confirmation_animation.xml │ │ │ │ │ ├── ic_cc_checkmark.xml │ │ │ │ │ ├── ic_cc_clear.xml │ │ │ │ │ ├── ic_expand_more_white_22.xml │ │ │ │ │ ├── open_on_phone.xml │ │ │ │ │ ├── open_on_phone_animation.xml │ │ │ │ │ └── preference_wrapped_icon.xml │ │ │ │ │ ├── drawable-v23 │ │ │ │ │ ├── action_item_background.xml │ │ │ │ │ ├── action_item_icon_background.xml │ │ │ │ │ ├── ic_cc_settings_button_bottom.xml │ │ │ │ │ ├── ic_cc_settings_button_center.xml │ │ │ │ │ ├── ic_cc_settings_button_e.xml │ │ │ │ │ ├── ic_cc_settings_button_top.xml │ │ │ │ │ ├── ic_expand_less_white_22.xml │ │ │ │ │ ├── ic_more_horiz_24dp_wht.xml │ │ │ │ │ └── ic_more_vert_24dp_wht.xml │ │ │ │ │ ├── drawable-xhdpi-v4 │ │ │ │ │ ├── card_frame.9.png │ │ │ │ │ ├── card_frame_pressed.9.png │ │ │ │ │ ├── common_full_open_on_phone.png │ │ │ │ │ ├── common_google_signin_btn_icon_dark_normal_background.9.png │ │ │ │ │ ├── common_google_signin_btn_icon_light_normal_background.9.png │ │ │ │ │ ├── common_google_signin_btn_text_dark_normal_background.9.png │ │ │ │ │ ├── common_google_signin_btn_text_light_normal_background.9.png │ │ │ │ │ ├── googleg_disabled_color_18.png │ │ │ │ │ ├── googleg_standard_color_18.png │ │ │ │ │ ├── ic_full_cancel.png │ │ │ │ │ └── ic_full_sad.png │ │ │ │ │ ├── drawable-xhdpi │ │ │ │ │ └── icon.png │ │ │ │ │ ├── drawable-xxhdpi-v4 │ │ │ │ │ ├── common_google_signin_btn_icon_dark_normal_background.9.png │ │ │ │ │ ├── common_google_signin_btn_icon_light_normal_background.9.png │ │ │ │ │ ├── common_google_signin_btn_text_dark_normal_background.9.png │ │ │ │ │ ├── common_google_signin_btn_text_light_normal_background.9.png │ │ │ │ │ ├── googleg_disabled_color_18.png │ │ │ │ │ └── googleg_standard_color_18.png │ │ │ │ │ ├── drawable-xxhdpi │ │ │ │ │ └── icon.png │ │ │ │ │ ├── drawable-xxxhdpi │ │ │ │ │ └── icon.png │ │ │ │ │ ├── drawable │ │ │ │ │ ├── card_background.xml │ │ │ │ │ ├── close_button.xml │ │ │ │ │ ├── common_google_signin_btn_icon_dark.xml │ │ │ │ │ ├── common_google_signin_btn_icon_dark_focused.xml │ │ │ │ │ ├── common_google_signin_btn_icon_dark_normal.xml │ │ │ │ │ ├── common_google_signin_btn_icon_disabled.xml │ │ │ │ │ ├── common_google_signin_btn_icon_light.xml │ │ │ │ │ ├── common_google_signin_btn_icon_light_focused.xml │ │ │ │ │ ├── common_google_signin_btn_icon_light_normal.xml │ │ │ │ │ ├── common_google_signin_btn_text_dark.xml │ │ │ │ │ ├── common_google_signin_btn_text_dark_focused.xml │ │ │ │ │ ├── common_google_signin_btn_text_dark_normal.xml │ │ │ │ │ ├── common_google_signin_btn_text_disabled.xml │ │ │ │ │ ├── common_google_signin_btn_text_light.xml │ │ │ │ │ ├── common_google_signin_btn_text_light_focused.xml │ │ │ │ │ ├── common_google_signin_btn_text_light_normal.xml │ │ │ │ │ ├── icon.png │ │ │ │ │ ├── preview_circular.png │ │ │ │ │ └── preview_rectangular.png │ │ │ │ │ ├── interpolator-v21 │ │ │ │ │ ├── generic_confirmation_animation_interpolator_0.xml │ │ │ │ │ ├── generic_confirmation_animation_interpolator_1.xml │ │ │ │ │ ├── generic_confirmation_animation_interpolator_2.xml │ │ │ │ │ ├── generic_confirmation_animation_interpolator_3.xml │ │ │ │ │ ├── open_on_phone_animation_interpolator_0.xml │ │ │ │ │ └── open_on_phone_animation_interpolator_1.xml │ │ │ │ │ ├── layout-v20 │ │ │ │ │ └── watch_card_content.xml │ │ │ │ │ ├── layout-v21 │ │ │ │ │ ├── accept_deny_dialog.xml │ │ │ │ │ ├── dismiss_overlay.xml │ │ │ │ │ └── overlay_confirmation.xml │ │ │ │ │ ├── layout-v23 │ │ │ │ │ ├── action_drawer_item_view.xml │ │ │ │ │ ├── action_drawer_peek_view.xml │ │ │ │ │ └── wearable_drawer_view.xml │ │ │ │ │ ├── layout │ │ │ │ │ ├── alert_dialog_wearable.xml │ │ │ │ │ ├── main.xml │ │ │ │ │ ├── navigation_drawer_item_view.xml │ │ │ │ │ ├── navigation_drawer_view.xml │ │ │ │ │ ├── single_page_nav_drawer_1_item.xml │ │ │ │ │ ├── single_page_nav_drawer_2_item.xml │ │ │ │ │ ├── single_page_nav_drawer_3_item.xml │ │ │ │ │ ├── single_page_nav_drawer_4_item.xml │ │ │ │ │ ├── single_page_nav_drawer_5_item.xml │ │ │ │ │ ├── single_page_nav_drawer_6_item.xml │ │ │ │ │ ├── single_page_nav_drawer_7_item.xml │ │ │ │ │ └── single_page_nav_drawer_peek_view.xml │ │ │ │ │ ├── values-af │ │ │ │ │ └── values-af.xml │ │ │ │ │ ├── values-am │ │ │ │ │ └── values-am.xml │ │ │ │ │ ├── values-ar │ │ │ │ │ └── values-ar.xml │ │ │ │ │ ├── values-az │ │ │ │ │ └── values-az.xml │ │ │ │ │ ├── values-b+es+419 │ │ │ │ │ └── values-b+es+419.xml │ │ │ │ │ ├── values-be │ │ │ │ │ └── values-be.xml │ │ │ │ │ ├── values-bg │ │ │ │ │ └── values-bg.xml │ │ │ │ │ ├── values-bn │ │ │ │ │ └── values-bn.xml │ │ │ │ │ ├── values-bs │ │ │ │ │ └── values-bs.xml │ │ │ │ │ ├── values-ca │ │ │ │ │ └── values-ca.xml │ │ │ │ │ ├── values-cs │ │ │ │ │ └── values-cs.xml │ │ │ │ │ ├── values-da │ │ │ │ │ └── values-da.xml │ │ │ │ │ ├── values-de │ │ │ │ │ └── values-de.xml │ │ │ │ │ ├── values-el │ │ │ │ │ └── values-el.xml │ │ │ │ │ ├── values-en-rGB │ │ │ │ │ └── values-en-rGB.xml │ │ │ │ │ ├── values-es-rUS │ │ │ │ │ └── values-es-rUS.xml │ │ │ │ │ ├── values-es │ │ │ │ │ └── values-es.xml │ │ │ │ │ ├── values-et │ │ │ │ │ └── values-et.xml │ │ │ │ │ ├── values-eu │ │ │ │ │ └── values-eu.xml │ │ │ │ │ ├── values-fa │ │ │ │ │ └── values-fa.xml │ │ │ │ │ ├── values-fi │ │ │ │ │ └── values-fi.xml │ │ │ │ │ ├── values-fr-rCA │ │ │ │ │ └── values-fr-rCA.xml │ │ │ │ │ ├── values-fr │ │ │ │ │ └── values-fr.xml │ │ │ │ │ ├── values-gl │ │ │ │ │ └── values-gl.xml │ │ │ │ │ ├── values-gu │ │ │ │ │ └── values-gu.xml │ │ │ │ │ ├── values-hi │ │ │ │ │ └── values-hi.xml │ │ │ │ │ ├── values-hr │ │ │ │ │ └── values-hr.xml │ │ │ │ │ ├── values-hu │ │ │ │ │ └── values-hu.xml │ │ │ │ │ ├── values-hy │ │ │ │ │ └── values-hy.xml │ │ │ │ │ ├── values-in │ │ │ │ │ └── values-in.xml │ │ │ │ │ ├── values-is │ │ │ │ │ └── values-is.xml │ │ │ │ │ ├── values-it │ │ │ │ │ └── values-it.xml │ │ │ │ │ ├── values-iw │ │ │ │ │ └── values-iw.xml │ │ │ │ │ ├── values-ja │ │ │ │ │ └── values-ja.xml │ │ │ │ │ ├── values-ka │ │ │ │ │ └── values-ka.xml │ │ │ │ │ ├── values-kk │ │ │ │ │ └── values-kk.xml │ │ │ │ │ ├── values-km │ │ │ │ │ └── values-km.xml │ │ │ │ │ ├── values-kn │ │ │ │ │ └── values-kn.xml │ │ │ │ │ ├── values-ko │ │ │ │ │ └── values-ko.xml │ │ │ │ │ ├── values-ky │ │ │ │ │ └── values-ky.xml │ │ │ │ │ ├── values-lo │ │ │ │ │ └── values-lo.xml │ │ │ │ │ ├── values-lt │ │ │ │ │ └── values-lt.xml │ │ │ │ │ ├── values-lv │ │ │ │ │ └── values-lv.xml │ │ │ │ │ ├── values-mk │ │ │ │ │ └── values-mk.xml │ │ │ │ │ ├── values-ml │ │ │ │ │ └── values-ml.xml │ │ │ │ │ ├── values-mn │ │ │ │ │ └── values-mn.xml │ │ │ │ │ ├── values-mr │ │ │ │ │ └── values-mr.xml │ │ │ │ │ ├── values-ms │ │ │ │ │ └── values-ms.xml │ │ │ │ │ ├── values-my │ │ │ │ │ └── values-my.xml │ │ │ │ │ ├── values-nb │ │ │ │ │ └── values-nb.xml │ │ │ │ │ ├── values-ne │ │ │ │ │ └── values-ne.xml │ │ │ │ │ ├── values-nl │ │ │ │ │ └── values-nl.xml │ │ │ │ │ ├── values-notround-v23 │ │ │ │ │ └── values-notround-v23.xml │ │ │ │ │ ├── values-pa │ │ │ │ │ └── values-pa.xml │ │ │ │ │ ├── values-pl │ │ │ │ │ └── values-pl.xml │ │ │ │ │ ├── values-pt-rBR │ │ │ │ │ └── values-pt-rBR.xml │ │ │ │ │ ├── values-pt-rPT │ │ │ │ │ └── values-pt-rPT.xml │ │ │ │ │ ├── values-ro │ │ │ │ │ └── values-ro.xml │ │ │ │ │ ├── values-round-v23 │ │ │ │ │ └── values-round-v23.xml │ │ │ │ │ ├── values-ru │ │ │ │ │ └── values-ru.xml │ │ │ │ │ ├── values-si │ │ │ │ │ └── values-si.xml │ │ │ │ │ ├── values-sk │ │ │ │ │ └── values-sk.xml │ │ │ │ │ ├── values-sl │ │ │ │ │ └── values-sl.xml │ │ │ │ │ ├── values-sq │ │ │ │ │ └── values-sq.xml │ │ │ │ │ ├── values-sr │ │ │ │ │ └── values-sr.xml │ │ │ │ │ ├── values-sv │ │ │ │ │ └── values-sv.xml │ │ │ │ │ ├── values-sw │ │ │ │ │ └── values-sw.xml │ │ │ │ │ ├── values-sw180dp-notround-v23 │ │ │ │ │ └── values-sw180dp-notround-v23.xml │ │ │ │ │ ├── values-sw210dp-round-v23 │ │ │ │ │ └── values-sw210dp-round-v23.xml │ │ │ │ │ ├── values-sw210dp-v13 │ │ │ │ │ └── values-sw210dp-v13.xml │ │ │ │ │ ├── values-ta │ │ │ │ │ └── values-ta.xml │ │ │ │ │ ├── values-te │ │ │ │ │ └── values-te.xml │ │ │ │ │ ├── values-th │ │ │ │ │ └── values-th.xml │ │ │ │ │ ├── values-tl │ │ │ │ │ └── values-tl.xml │ │ │ │ │ ├── values-tr │ │ │ │ │ └── values-tr.xml │ │ │ │ │ ├── values-uk │ │ │ │ │ └── values-uk.xml │ │ │ │ │ ├── values-ur │ │ │ │ │ └── values-ur.xml │ │ │ │ │ ├── values-uz │ │ │ │ │ └── values-uz.xml │ │ │ │ │ ├── values-v20 │ │ │ │ │ └── values-v20.xml │ │ │ │ │ ├── values-v21 │ │ │ │ │ └── values-v21.xml │ │ │ │ │ ├── values-v23 │ │ │ │ │ └── values-v23.xml │ │ │ │ │ ├── values-vi │ │ │ │ │ └── values-vi.xml │ │ │ │ │ ├── values-w192dp-v13 │ │ │ │ │ └── values-w192dp-v13.xml │ │ │ │ │ ├── values-w205dp-v13 │ │ │ │ │ └── values-w205dp-v13.xml │ │ │ │ │ ├── values-w225dp-v13 │ │ │ │ │ └── values-w225dp-v13.xml │ │ │ │ │ ├── values-w228dp-v13 │ │ │ │ │ └── values-w228dp-v13.xml │ │ │ │ │ ├── values-w240dp-v13 │ │ │ │ │ └── values-w240dp-v13.xml │ │ │ │ │ ├── values-zh-rCN │ │ │ │ │ └── values-zh-rCN.xml │ │ │ │ │ ├── values-zh-rHK │ │ │ │ │ └── values-zh-rHK.xml │ │ │ │ │ ├── values-zh-rTW │ │ │ │ │ └── values-zh-rTW.xml │ │ │ │ │ ├── values-zu │ │ │ │ │ └── values-zu.xml │ │ │ │ │ ├── values │ │ │ │ │ └── values.xml │ │ │ │ │ └── xml │ │ │ │ │ └── watch_face.xml │ │ │ ├── resources-debug-androidTest.ap_ │ │ │ └── resources-debug.ap_ │ │ └── symbols │ │ │ └── debug │ │ │ └── R.txt │ └── outputs │ │ └── logs │ │ └── manifest-merger-debug-report.txt │ ├── libs │ └── processing-core.jar │ ├── proguard-rules.pro │ ├── src │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── processing │ │ │ └── test │ │ │ └── androidwatchexport │ │ │ ├── AndroidWatchExport.java │ │ │ └── MainService.java │ │ └── res │ │ ├── drawable-hdpi │ │ └── icon.png │ │ ├── drawable-ldpi │ │ └── icon.png │ │ ├── drawable-xhdpi │ │ └── icon.png │ │ ├── drawable-xxhdpi │ │ └── icon.png │ │ ├── drawable-xxxhdpi │ │ └── icon.png │ │ ├── drawable │ │ ├── icon.png │ │ ├── preview_circular.png │ │ └── preview_rectangular.png │ │ ├── layout │ │ └── main.xml │ │ └── xml │ │ └── watch_face.xml │ └── wear.iml ├── ar └── ex1_ar_intro │ ├── code │ └── sketch.properties │ ├── data │ ├── grey.png │ ├── materials.mtl │ └── model.obj │ └── ex1_ar_intro.pde ├── getting_started └── ex1_touchscreen │ ├── AndroidManifest.xml │ ├── code │ └── sketch.properties │ └── ex1_touchscreen.pde ├── location_permissions ├── ex1_gps │ ├── AndroidManifest.xml │ ├── code │ │ └── sketch.properties │ └── ex1_gps.pde └── gps_example │ ├── AndroidManifest.xml │ ├── code │ └── sketch.properties │ └── gps_example.pde ├── multitouch └── mt_example │ ├── code │ └── sketch.properties │ └── mt_example.pde ├── sensors ├── ex1_accelerator │ ├── AndroidManifest.xml │ ├── code │ │ └── sketch.properties │ └── ex1_accelerator.pde └── ex2_boxes │ ├── AndroidManifest.xml │ ├── Box.pde │ ├── Wall.pde │ ├── code │ └── sketch.properties │ └── ex2_boxes.pde ├── vr ├── ex1_toon_stereo │ ├── AndroidManifest.xml │ ├── code │ │ └── sketch.properties │ ├── data │ │ ├── ToonFrag.glsl │ │ └── ToonVert.glsl │ └── ex1_toon_stereo.pde ├── ex2_grid_and_boxes │ ├── AndroidManifest.xml │ ├── code │ │ └── sketch.properties │ └── ex2_grid_and_boxes.pde └── ex3_solar_system │ ├── code │ └── sketch.properties │ ├── data │ ├── earthlike.jpg │ ├── mercury.jpg │ ├── sol.jpg │ └── startfield.jpg │ └── ex3_solar_system.pde ├── wallpapers ├── ex1_color_transition │ ├── AndroidManifest.xml │ ├── code │ │ └── sketch.properties │ └── ex1_color_transition.pde └── ex2_compass │ ├── AndroidManifest.xml │ ├── code │ └── sketch.properties │ └── ex2_compass.pde └── watchfaces ├── ex1_simple_time ├── AndroidManifest.xml ├── code │ └── sketch.properties └── ex1_simple_time.pde ├── ex2_slow_time ├── AndroidManifest.xml ├── code │ └── sketch.properties └── ex2_slow_time.pde └── ex3_step_counter ├── AndroidManifest.xml ├── code └── sketch.properties └── ex3_step_counter.pde /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # processing-android-tutorials 2 | -------------------------------------------------------------------------------- /android_studio/ex1_fragmentsv3/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex1_fragmentsv3/.gitignore -------------------------------------------------------------------------------- /android_studio/ex1_fragmentsv3/.idea/.name: -------------------------------------------------------------------------------- 1 | Fragments v3 -------------------------------------------------------------------------------- /android_studio/ex1_fragmentsv3/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex1_fragmentsv3/.idea/compiler.xml -------------------------------------------------------------------------------- /android_studio/ex1_fragmentsv3/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex1_fragmentsv3/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /android_studio/ex1_fragmentsv3/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex1_fragmentsv3/.idea/encodings.xml -------------------------------------------------------------------------------- /android_studio/ex1_fragmentsv3/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex1_fragmentsv3/.idea/gradle.xml -------------------------------------------------------------------------------- /android_studio/ex1_fragmentsv3/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex1_fragmentsv3/.idea/misc.xml -------------------------------------------------------------------------------- /android_studio/ex1_fragmentsv3/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex1_fragmentsv3/.idea/modules.xml -------------------------------------------------------------------------------- /android_studio/ex1_fragmentsv3/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex1_fragmentsv3/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /android_studio/ex1_fragmentsv3/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /android_studio/ex1_fragmentsv3/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex1_fragmentsv3/app/build.gradle -------------------------------------------------------------------------------- /android_studio/ex1_fragmentsv3/app/libs/android-core.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex1_fragmentsv3/app/libs/android-core.jar -------------------------------------------------------------------------------- /android_studio/ex1_fragmentsv3/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex1_fragmentsv3/app/proguard-rules.pro -------------------------------------------------------------------------------- /android_studio/ex1_fragmentsv3/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex1_fragmentsv3/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android_studio/ex1_fragmentsv3/app/src/main/java/tutorials/androidstudio/fragmentsv3/Sketch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex1_fragmentsv3/app/src/main/java/tutorials/androidstudio/fragmentsv3/Sketch.java -------------------------------------------------------------------------------- /android_studio/ex1_fragmentsv3/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex1_fragmentsv3/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /android_studio/ex1_fragmentsv3/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex1_fragmentsv3/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android_studio/ex1_fragmentsv3/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex1_fragmentsv3/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android_studio/ex1_fragmentsv3/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex1_fragmentsv3/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android_studio/ex1_fragmentsv3/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex1_fragmentsv3/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android_studio/ex1_fragmentsv3/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex1_fragmentsv3/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android_studio/ex1_fragmentsv3/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex1_fragmentsv3/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /android_studio/ex1_fragmentsv3/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex1_fragmentsv3/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android_studio/ex1_fragmentsv3/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex1_fragmentsv3/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /android_studio/ex1_fragmentsv3/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex1_fragmentsv3/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android_studio/ex1_fragmentsv3/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex1_fragmentsv3/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android_studio/ex1_fragmentsv3/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex1_fragmentsv3/build.gradle -------------------------------------------------------------------------------- /android_studio/ex1_fragmentsv3/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex1_fragmentsv3/gradle.properties -------------------------------------------------------------------------------- /android_studio/ex1_fragmentsv3/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex1_fragmentsv3/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android_studio/ex1_fragmentsv3/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex1_fragmentsv3/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android_studio/ex1_fragmentsv3/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex1_fragmentsv3/gradlew -------------------------------------------------------------------------------- /android_studio/ex1_fragmentsv3/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex1_fragmentsv3/gradlew.bat -------------------------------------------------------------------------------- /android_studio/ex1_fragmentsv3/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /android_studio/ex2_fragmentsv4/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex2_fragmentsv4/.gitignore -------------------------------------------------------------------------------- /android_studio/ex2_fragmentsv4/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex2_fragmentsv4/.idea/compiler.xml -------------------------------------------------------------------------------- /android_studio/ex2_fragmentsv4/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex2_fragmentsv4/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /android_studio/ex2_fragmentsv4/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex2_fragmentsv4/.idea/gradle.xml -------------------------------------------------------------------------------- /android_studio/ex2_fragmentsv4/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex2_fragmentsv4/.idea/misc.xml -------------------------------------------------------------------------------- /android_studio/ex2_fragmentsv4/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex2_fragmentsv4/.idea/modules.xml -------------------------------------------------------------------------------- /android_studio/ex2_fragmentsv4/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /android_studio/ex2_fragmentsv4/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex2_fragmentsv4/app/build.gradle -------------------------------------------------------------------------------- /android_studio/ex2_fragmentsv4/app/libs/processing-core.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex2_fragmentsv4/app/libs/processing-core.jar -------------------------------------------------------------------------------- /android_studio/ex2_fragmentsv4/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex2_fragmentsv4/app/proguard-rules.pro -------------------------------------------------------------------------------- /android_studio/ex2_fragmentsv4/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex2_fragmentsv4/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android_studio/ex2_fragmentsv4/app/src/main/java/tutorials/androidstudio/fragmentsv4/Sketch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex2_fragmentsv4/app/src/main/java/tutorials/androidstudio/fragmentsv4/Sketch.java -------------------------------------------------------------------------------- /android_studio/ex2_fragmentsv4/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex2_fragmentsv4/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /android_studio/ex2_fragmentsv4/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex2_fragmentsv4/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android_studio/ex2_fragmentsv4/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex2_fragmentsv4/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android_studio/ex2_fragmentsv4/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex2_fragmentsv4/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android_studio/ex2_fragmentsv4/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex2_fragmentsv4/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android_studio/ex2_fragmentsv4/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex2_fragmentsv4/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android_studio/ex2_fragmentsv4/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex2_fragmentsv4/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /android_studio/ex2_fragmentsv4/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex2_fragmentsv4/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android_studio/ex2_fragmentsv4/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex2_fragmentsv4/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /android_studio/ex2_fragmentsv4/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex2_fragmentsv4/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android_studio/ex2_fragmentsv4/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex2_fragmentsv4/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android_studio/ex2_fragmentsv4/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex2_fragmentsv4/build.gradle -------------------------------------------------------------------------------- /android_studio/ex2_fragmentsv4/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex2_fragmentsv4/gradle.properties -------------------------------------------------------------------------------- /android_studio/ex2_fragmentsv4/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex2_fragmentsv4/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android_studio/ex2_fragmentsv4/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex2_fragmentsv4/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android_studio/ex2_fragmentsv4/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex2_fragmentsv4/gradlew -------------------------------------------------------------------------------- /android_studio/ex2_fragmentsv4/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex2_fragmentsv4/gradlew.bat -------------------------------------------------------------------------------- /android_studio/ex2_fragmentsv4/projectFilesBackup/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex2_fragmentsv4/projectFilesBackup/.idea/workspace.xml -------------------------------------------------------------------------------- /android_studio/ex2_fragmentsv4/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /android_studio/ex3_layoutsv4/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex3_layoutsv4/.gitignore -------------------------------------------------------------------------------- /android_studio/ex3_layoutsv4/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /android_studio/ex3_layoutsv4/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex3_layoutsv4/app/build.gradle -------------------------------------------------------------------------------- /android_studio/ex3_layoutsv4/app/libs/processing-core.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex3_layoutsv4/app/libs/processing-core.jar -------------------------------------------------------------------------------- /android_studio/ex3_layoutsv4/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex3_layoutsv4/app/proguard-rules.pro -------------------------------------------------------------------------------- /android_studio/ex3_layoutsv4/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex3_layoutsv4/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android_studio/ex3_layoutsv4/app/src/main/assets/mosaic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex3_layoutsv4/app/src/main/assets/mosaic.jpg -------------------------------------------------------------------------------- /android_studio/ex3_layoutsv4/app/src/main/java/processing/test/processingintegration/Sketch.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex3_layoutsv4/app/src/main/java/processing/test/processingintegration/Sketch.java -------------------------------------------------------------------------------- /android_studio/ex3_layoutsv4/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex3_layoutsv4/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /android_studio/ex3_layoutsv4/app/src/main/res/layout/content_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex3_layoutsv4/app/src/main/res/layout/content_main.xml -------------------------------------------------------------------------------- /android_studio/ex3_layoutsv4/app/src/main/res/menu/menu_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex3_layoutsv4/app/src/main/res/menu/menu_main.xml -------------------------------------------------------------------------------- /android_studio/ex3_layoutsv4/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex3_layoutsv4/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android_studio/ex3_layoutsv4/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex3_layoutsv4/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android_studio/ex3_layoutsv4/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex3_layoutsv4/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android_studio/ex3_layoutsv4/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex3_layoutsv4/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android_studio/ex3_layoutsv4/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex3_layoutsv4/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android_studio/ex3_layoutsv4/app/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex3_layoutsv4/app/src/main/res/values-v21/styles.xml -------------------------------------------------------------------------------- /android_studio/ex3_layoutsv4/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex3_layoutsv4/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /android_studio/ex3_layoutsv4/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex3_layoutsv4/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /android_studio/ex3_layoutsv4/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex3_layoutsv4/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /android_studio/ex3_layoutsv4/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex3_layoutsv4/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android_studio/ex3_layoutsv4/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex3_layoutsv4/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android_studio/ex3_layoutsv4/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex3_layoutsv4/build.gradle -------------------------------------------------------------------------------- /android_studio/ex3_layoutsv4/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex3_layoutsv4/gradle.properties -------------------------------------------------------------------------------- /android_studio/ex3_layoutsv4/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex3_layoutsv4/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android_studio/ex3_layoutsv4/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex3_layoutsv4/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android_studio/ex3_layoutsv4/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex3_layoutsv4/gradlew -------------------------------------------------------------------------------- /android_studio/ex3_layoutsv4/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex3_layoutsv4/gradlew.bat -------------------------------------------------------------------------------- /android_studio/ex3_layoutsv4/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/build.gradle -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/ex4_mobile+wear4.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/ex4_mobile+wear4.iml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/gradle.properties -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/gradlew -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/gradlew.bat -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/local.properties -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build.gradle -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/generated/source/r/androidTest/debug/android/app/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/generated/source/r/androidTest/debug/android/app/R.java -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/generated/source/r/debug/android/support/compat/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/generated/source/r/debug/android/support/compat/R.java -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/generated/source/r/debug/android/support/coreui/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/generated/source/r/debug/android/support/coreui/R.java -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/generated/source/r/debug/android/support/design/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/generated/source/r/debug/android/support/design/R.java -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/generated/source/r/debug/android/support/v13/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/generated/source/r/debug/android/support/v13/R.java -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/generated/source/r/debug/android/support/v4/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/generated/source/r/debug/android/support/v4/R.java -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/generated/source/r/debug/com/google/android/gms/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/generated/source/r/debug/com/google/android/gms/R.java -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-af.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-af.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-am.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-am.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-ar.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-az-rAZ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-az-rAZ.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-az.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-az.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-be-rBY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-be-rBY.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-be.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-be.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-bg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-bg.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-bn-rBD.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-bn-rBD.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-bn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-bn.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-bs-rBA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-bs-rBA.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-bs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-bs.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-ca.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-cs.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-da.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-da.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-de.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-el.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-el.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-en-rAU.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-en-rAU.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-en-rGB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-en-rGB.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-en-rIN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-en-rIN.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-es-rUS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-es-rUS.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-es.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-et-rEE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-et-rEE.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-et.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-et.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-eu-rES.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-eu-rES.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-eu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-eu.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-fa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-fa.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-fi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-fi.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-fr-rCA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-fr-rCA.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-fr.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-gl-rES.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-gl-rES.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-gl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-gl.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-gu-rIN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-gu-rIN.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-gu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-gu.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-hdpi-v4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-hdpi-v4.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-hi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-hi.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-hr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-hr.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-hu.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-hy-rAM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-hy-rAM.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-hy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-hy.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-in.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-in.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-is-rIS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-is-rIS.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-is.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-is.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-it.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-iw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-iw.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-ja.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-ka-rGE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-ka-rGE.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-ka.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-ka.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-kk-rKZ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-kk-rKZ.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-kk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-kk.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-km-rKH.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-km-rKH.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-km.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-km.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-kn-rIN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-kn-rIN.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-kn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-kn.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-ko.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-ky-rKG.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-ky-rKG.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-ky.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-ky.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-land.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-land.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-lo-rLA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-lo-rLA.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-lo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-lo.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-lt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-lt.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-lv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-lv.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-mk-rMK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-mk-rMK.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-mk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-mk.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-ml-rIN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-ml-rIN.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-ml.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-ml.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-mn-rMN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-mn-rMN.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-mn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-mn.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-mr-rIN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-mr-rIN.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-mr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-mr.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-ms-rMY.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-ms-rMY.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-ms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-ms.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-my-rMM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-my-rMM.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-my.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-my.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-nb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-nb.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-ne-rNP.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-ne-rNP.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-ne.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-ne.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-nl.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-pa-rIN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-pa-rIN.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-pa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-pa.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-pl.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-port.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-port.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-pt-rBR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-pt-rBR.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-pt-rPT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-pt-rPT.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-pt.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-ro.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-ru.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-si-rLK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-si-rLK.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-si.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-si.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-sk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-sk.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-sl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-sl.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-sq-rAL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-sq-rAL.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-sq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-sq.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-sr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-sr.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-sv.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-sw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-sw.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-ta-rIN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-ta-rIN.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-ta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-ta.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-te-rIN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-te-rIN.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-te.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-te.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-th.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-th.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-tl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-tl.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-tr.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-uk.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-ur-rPK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-ur-rPK.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-ur.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-ur.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-uz-rUZ.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-uz-rUZ.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-uz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-uz.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-v11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-v11.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-v12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-v12.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-v13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-v13.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-v14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-v14.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-v16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-v16.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-v17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-v17.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-v18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-v18.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-v21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-v21.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-v22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-v22.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-v23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-v23.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-v24.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-v24.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-v25.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-v25.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-vi.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-zh-rCN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-zh-rCN.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-zh-rHK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-zh-rHK.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-zh-rTW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-zh-rTW.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-zu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values-zu.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/multi/values.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/single/anim-v21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/single/anim-v21.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/single/anim.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/single/anim.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/single/animator-v21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/single/animator-v21.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/single/color-v11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/single/color-v11.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/single/color-v23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/single/color-v23.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/single/color.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/single/color.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/single/drawable-hdpi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/single/drawable-hdpi.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/single/drawable-ldpi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/single/drawable-ldpi.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/single/drawable-v21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/single/drawable-v21.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/single/drawable-v23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/single/drawable-v23.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/single/drawable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/single/drawable.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/single/layout-v11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/single/layout-v11.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/single/layout-v21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/single/layout-v21.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/single/layout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/single/layout.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/single/raw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/single/raw.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/single/xml.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/blame/res/debug/single/xml.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/incremental/compileDebugAidl/dependency.store: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/incremental/compileDebugAndroidTestAidl/dependency.store: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/incremental/mergeDebugAndroidTestResources/compile-file-map.properties: -------------------------------------------------------------------------------- 1 | #Fri Mar 10 17:34:19 EST 2017 2 | -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/manifests/full/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/manifests/full/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/anim/abc_fade_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/anim/abc_fade_in.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/anim/abc_fade_out.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/anim/abc_fade_out.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/anim/abc_popup_enter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/anim/abc_popup_enter.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/anim/abc_popup_exit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/anim/abc_popup_exit.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/anim/design_fab_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/anim/design_fab_in.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/anim/design_fab_out.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/anim/design_fab_out.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/color/design_error.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/color/design_error.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/drawable/icon.png -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/layout/content_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/layout/content_main.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-af/values-af.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-af/values-af.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-am/values-am.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-am/values-am.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-ar/values-ar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-ar/values-ar.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-az/values-az.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-az/values-az.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-be/values-be.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-be/values-be.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-bg/values-bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-bg/values-bg.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-bn/values-bn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-bn/values-bn.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-bs/values-bs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-bs/values-bs.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-ca/values-ca.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-ca/values-ca.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-cs/values-cs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-cs/values-cs.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-da/values-da.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-da/values-da.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-de/values-de.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-de/values-de.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-el/values-el.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-el/values-el.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-es/values-es.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-es/values-es.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-et/values-et.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-et/values-et.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-eu/values-eu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-eu/values-eu.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-fa/values-fa.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-fa/values-fa.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-fi/values-fi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-fi/values-fi.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-fr/values-fr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-fr/values-fr.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-gl/values-gl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-gl/values-gl.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-gu/values-gu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-gu/values-gu.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-hi/values-hi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-hi/values-hi.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-hr/values-hr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-hr/values-hr.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-hu/values-hu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-hu/values-hu.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-hy/values-hy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-hy/values-hy.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-in/values-in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-in/values-in.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-is/values-is.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-is/values-is.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-it/values-it.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-it/values-it.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-iw/values-iw.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-iw/values-iw.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-ja/values-ja.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-ja/values-ja.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-ka/values-ka.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-ka/values-ka.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-kk/values-kk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-kk/values-kk.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-km/values-km.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-km/values-km.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-kn/values-kn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-kn/values-kn.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-ko/values-ko.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-ko/values-ko.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-ky/values-ky.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-ky/values-ky.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-lo/values-lo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-lo/values-lo.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-lt/values-lt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-lt/values-lt.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-lv/values-lv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-lv/values-lv.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-mk/values-mk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-mk/values-mk.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-ml/values-ml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-ml/values-ml.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-mn/values-mn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-mn/values-mn.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-mr/values-mr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-mr/values-mr.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-ms/values-ms.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-ms/values-ms.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-my/values-my.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-my/values-my.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-nb/values-nb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-nb/values-nb.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-ne/values-ne.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-ne/values-ne.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-nl/values-nl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-nl/values-nl.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-pa/values-pa.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-pa/values-pa.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-pl/values-pl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-pl/values-pl.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-pt/values-pt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-pt/values-pt.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-ro/values-ro.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-ro/values-ro.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-ru/values-ru.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-ru/values-ru.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-si/values-si.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-si/values-si.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-sk/values-sk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-sk/values-sk.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-sl/values-sl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-sl/values-sl.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-sq/values-sq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-sq/values-sq.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-sr/values-sr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-sr/values-sr.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-sv/values-sv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-sv/values-sv.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-sw/values-sw.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-sw/values-sw.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-ta/values-ta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-ta/values-ta.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-te/values-te.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values-te/values-te.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values/values.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/merged/debug/values/values.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/resources-debug-androidTest.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/resources-debug-androidTest.ap_ -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/resources-debug.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/res/resources-debug.ap_ -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/symbols/androidTest/debug/R.txt: -------------------------------------------------------------------------------- 1 | int string app_name 0x7f020000 2 | -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/intermediates/symbols/debug/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/intermediates/symbols/debug/R.txt -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/build/outputs/logs/manifest-merger-debug-report.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/build/outputs/logs/manifest-merger-debug-report.txt -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/libs/processing-core.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/libs/processing-core.jar -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/mobile.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/mobile.iml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/proguard-rules.pro -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/src/main/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/src/main/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/src/main/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/src/main/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/src/main/res/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/src/main/res/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/src/main/res/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/src/main/res/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/src/main/res/drawable-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/src/main/res/drawable-xxxhdpi/icon.png -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/src/main/res/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/src/main/res/drawable/icon.png -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/src/main/res/layout/activity_handheld.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/src/main/res/layout/activity_handheld.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/src/main/res/layout/content_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/src/main/res/layout/content_main.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/src/main/res/raw/androidwatchexport_debug.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/src/main/res/raw/androidwatchexport_debug.apk -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/mobile/src/main/res/xml/wearable_app_desc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/mobile/src/main/res/xml/wearable_app_desc.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':mobile', ':wear' 2 | -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build.gradle -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/generated/source/r/debug/android/support/percent/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/generated/source/r/debug/android/support/percent/R.java -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/generated/source/r/debug/android/support/v4/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/generated/source/r/debug/android/support/v4/R.java -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/generated/source/r/debug/com/google/android/gms/R.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/generated/source/r/debug/com/google/android/gms/R.java -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-af.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-af.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-am.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-am.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-ar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-ar.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-az.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-az.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-be.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-be.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-bg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-bg.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-bn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-bn.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-bs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-bs.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-ca.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-ca.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-cs.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-da.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-da.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-de.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-el.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-el.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-en-rGB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-en-rGB.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-es-rUS.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-es-rUS.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-es.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-et.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-et.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-eu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-eu.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-fa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-fa.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-fi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-fi.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-fr-rCA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-fr-rCA.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-fr.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-gl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-gl.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-gu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-gu.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-hi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-hi.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-hr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-hr.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-hu.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-hy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-hy.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-in.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-in.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-is.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-is.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-it.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-iw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-iw.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-ja.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-ka.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-ka.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-kk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-kk.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-km.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-km.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-kn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-kn.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-ko.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-ky.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-ky.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-lo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-lo.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-lt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-lt.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-lv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-lv.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-mk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-mk.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-ml.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-ml.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-mn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-mn.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-mr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-mr.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-ms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-ms.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-my.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-my.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-nb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-nb.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-ne.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-ne.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-nl.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-pa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-pa.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-pl.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-pt-rBR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-pt-rBR.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-pt-rPT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-pt-rPT.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-ro.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-ru.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-si.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-si.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-sk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-sk.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-sl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-sl.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-sq.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-sq.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-sr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-sr.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-sv.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-sw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-sw.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-ta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-ta.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-te.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-te.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-th.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-th.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-tl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-tl.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-tr.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-uk.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-ur.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-ur.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-uz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-uz.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-v20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-v20.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-v21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-v21.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-v23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-v23.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-vi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-vi.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-zh-rCN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-zh-rCN.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-zh-rHK.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-zh-rHK.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-zh-rTW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-zh-rTW.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-zu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values-zu.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/multi/values.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/single/anim-v21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/single/anim-v21.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/single/animator-v21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/single/animator-v21.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/single/color-v21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/single/color-v21.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/single/color-v23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/single/color-v23.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/single/color.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/single/color.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/single/drawable-hdpi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/single/drawable-hdpi.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/single/drawable-ldpi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/single/drawable-ldpi.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/single/drawable-v21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/single/drawable-v21.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/single/drawable-v23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/single/drawable-v23.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/single/drawable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/single/drawable.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/single/layout-v20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/single/layout-v20.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/single/layout-v21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/single/layout-v21.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/single/layout-v23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/single/layout-v23.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/single/layout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/single/layout.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/single/xml.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/blame/res/debug/single/xml.json -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/incremental/compileDebugAidl/dependency.store: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/incremental/compileDebugAndroidTestAidl/dependency.store: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/incremental/mergeDebugAndroidTestResources/compile-file-map.properties: -------------------------------------------------------------------------------- 1 | #Fri Mar 10 00:19:14 EST 2017 2 | -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/manifests/full/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/manifests/full/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/drawable/icon.png -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/layout/main.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-af/values-af.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-af/values-af.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-am/values-am.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-am/values-am.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-ar/values-ar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-ar/values-ar.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-az/values-az.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-az/values-az.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-be/values-be.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-be/values-be.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-bg/values-bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-bg/values-bg.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-bn/values-bn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-bn/values-bn.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-bs/values-bs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-bs/values-bs.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-ca/values-ca.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-ca/values-ca.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-cs/values-cs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-cs/values-cs.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-da/values-da.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-da/values-da.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-de/values-de.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-de/values-de.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-el/values-el.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-el/values-el.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-es/values-es.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-es/values-es.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-et/values-et.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-et/values-et.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-eu/values-eu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-eu/values-eu.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-fa/values-fa.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-fa/values-fa.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-fi/values-fi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-fi/values-fi.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-fr/values-fr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-fr/values-fr.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-gl/values-gl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-gl/values-gl.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-gu/values-gu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-gu/values-gu.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-hi/values-hi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-hi/values-hi.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-hr/values-hr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-hr/values-hr.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-hu/values-hu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-hu/values-hu.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-hy/values-hy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-hy/values-hy.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-in/values-in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-in/values-in.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-is/values-is.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-is/values-is.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-it/values-it.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-it/values-it.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-iw/values-iw.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-iw/values-iw.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-ja/values-ja.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-ja/values-ja.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-ka/values-ka.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-ka/values-ka.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-kk/values-kk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-kk/values-kk.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-km/values-km.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-km/values-km.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-kn/values-kn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-kn/values-kn.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-ko/values-ko.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-ko/values-ko.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-ky/values-ky.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-ky/values-ky.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-lo/values-lo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-lo/values-lo.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-lt/values-lt.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-lt/values-lt.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-lv/values-lv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-lv/values-lv.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-mk/values-mk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-mk/values-mk.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-ml/values-ml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-ml/values-ml.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-mn/values-mn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-mn/values-mn.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-mr/values-mr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-mr/values-mr.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-ms/values-ms.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-ms/values-ms.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-my/values-my.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-my/values-my.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-nb/values-nb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-nb/values-nb.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-ne/values-ne.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-ne/values-ne.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-nl/values-nl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-nl/values-nl.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-pa/values-pa.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-pa/values-pa.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-pl/values-pl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-pl/values-pl.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-ro/values-ro.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-ro/values-ro.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-ru/values-ru.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-ru/values-ru.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-si/values-si.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-si/values-si.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-sk/values-sk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-sk/values-sk.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-sl/values-sl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-sl/values-sl.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-sq/values-sq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-sq/values-sq.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-sr/values-sr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-sr/values-sr.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-sv/values-sv.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-sv/values-sv.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-sw/values-sw.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-sw/values-sw.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-ta/values-ta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-ta/values-ta.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-te/values-te.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-te/values-te.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-th/values-th.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-th/values-th.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-tl/values-tl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-tl/values-tl.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-tr/values-tr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-tr/values-tr.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-uk/values-uk.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-uk/values-uk.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-ur/values-ur.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-ur/values-ur.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-uz/values-uz.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-uz/values-uz.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-vi/values-vi.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-vi/values-vi.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-zu/values-zu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values-zu/values-zu.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values/values.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/values/values.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/xml/watch_face.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/res/merged/debug/xml/watch_face.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/res/resources-debug-androidTest.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/res/resources-debug-androidTest.ap_ -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/res/resources-debug.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/res/resources-debug.ap_ -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/intermediates/symbols/debug/R.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/intermediates/symbols/debug/R.txt -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/build/outputs/logs/manifest-merger-debug-report.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/build/outputs/logs/manifest-merger-debug-report.txt -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/libs/processing-core.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/libs/processing-core.jar -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/proguard-rules.pro -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/src/main/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/src/main/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/src/main/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/src/main/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/src/main/res/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/src/main/res/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/src/main/res/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/src/main/res/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/src/main/res/drawable-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/src/main/res/drawable-xxxhdpi/icon.png -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/src/main/res/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/src/main/res/drawable/icon.png -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/src/main/res/drawable/preview_circular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/src/main/res/drawable/preview_circular.png -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/src/main/res/drawable/preview_rectangular.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/src/main/res/drawable/preview_rectangular.png -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/src/main/res/layout/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/src/main/res/layout/main.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/src/main/res/xml/watch_face.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/src/main/res/xml/watch_face.xml -------------------------------------------------------------------------------- /android_studio/ex4_mobile+wear4/wear/wear.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/android_studio/ex4_mobile+wear4/wear/wear.iml -------------------------------------------------------------------------------- /ar/ex1_ar_intro/code/sketch.properties: -------------------------------------------------------------------------------- 1 | component=ar 2 | -------------------------------------------------------------------------------- /ar/ex1_ar_intro/data/grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/ar/ex1_ar_intro/data/grey.png -------------------------------------------------------------------------------- /ar/ex1_ar_intro/data/materials.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/ar/ex1_ar_intro/data/materials.mtl -------------------------------------------------------------------------------- /ar/ex1_ar_intro/data/model.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/ar/ex1_ar_intro/data/model.obj -------------------------------------------------------------------------------- /ar/ex1_ar_intro/ex1_ar_intro.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/ar/ex1_ar_intro/ex1_ar_intro.pde -------------------------------------------------------------------------------- /getting_started/ex1_touchscreen/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/getting_started/ex1_touchscreen/AndroidManifest.xml -------------------------------------------------------------------------------- /getting_started/ex1_touchscreen/code/sketch.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/getting_started/ex1_touchscreen/code/sketch.properties -------------------------------------------------------------------------------- /getting_started/ex1_touchscreen/ex1_touchscreen.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/getting_started/ex1_touchscreen/ex1_touchscreen.pde -------------------------------------------------------------------------------- /location_permissions/ex1_gps/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/location_permissions/ex1_gps/AndroidManifest.xml -------------------------------------------------------------------------------- /location_permissions/ex1_gps/code/sketch.properties: -------------------------------------------------------------------------------- 1 | component=app 2 | -------------------------------------------------------------------------------- /location_permissions/ex1_gps/ex1_gps.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/location_permissions/ex1_gps/ex1_gps.pde -------------------------------------------------------------------------------- /location_permissions/gps_example/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/location_permissions/gps_example/AndroidManifest.xml -------------------------------------------------------------------------------- /location_permissions/gps_example/code/sketch.properties: -------------------------------------------------------------------------------- 1 | component=app 2 | -------------------------------------------------------------------------------- /location_permissions/gps_example/gps_example.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/location_permissions/gps_example/gps_example.pde -------------------------------------------------------------------------------- /multitouch/mt_example/code/sketch.properties: -------------------------------------------------------------------------------- 1 | component=app 2 | -------------------------------------------------------------------------------- /multitouch/mt_example/mt_example.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/multitouch/mt_example/mt_example.pde -------------------------------------------------------------------------------- /sensors/ex1_accelerator/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/sensors/ex1_accelerator/AndroidManifest.xml -------------------------------------------------------------------------------- /sensors/ex1_accelerator/code/sketch.properties: -------------------------------------------------------------------------------- 1 | component=app 2 | -------------------------------------------------------------------------------- /sensors/ex1_accelerator/ex1_accelerator.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/sensors/ex1_accelerator/ex1_accelerator.pde -------------------------------------------------------------------------------- /sensors/ex2_boxes/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/sensors/ex2_boxes/AndroidManifest.xml -------------------------------------------------------------------------------- /sensors/ex2_boxes/Box.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/sensors/ex2_boxes/Box.pde -------------------------------------------------------------------------------- /sensors/ex2_boxes/Wall.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/sensors/ex2_boxes/Wall.pde -------------------------------------------------------------------------------- /sensors/ex2_boxes/code/sketch.properties: -------------------------------------------------------------------------------- 1 | component=app 2 | -------------------------------------------------------------------------------- /sensors/ex2_boxes/ex2_boxes.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/sensors/ex2_boxes/ex2_boxes.pde -------------------------------------------------------------------------------- /vr/ex1_toon_stereo/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/vr/ex1_toon_stereo/AndroidManifest.xml -------------------------------------------------------------------------------- /vr/ex1_toon_stereo/code/sketch.properties: -------------------------------------------------------------------------------- 1 | component=vr 2 | -------------------------------------------------------------------------------- /vr/ex1_toon_stereo/data/ToonFrag.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/vr/ex1_toon_stereo/data/ToonFrag.glsl -------------------------------------------------------------------------------- /vr/ex1_toon_stereo/data/ToonVert.glsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/vr/ex1_toon_stereo/data/ToonVert.glsl -------------------------------------------------------------------------------- /vr/ex1_toon_stereo/ex1_toon_stereo.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/vr/ex1_toon_stereo/ex1_toon_stereo.pde -------------------------------------------------------------------------------- /vr/ex2_grid_and_boxes/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/vr/ex2_grid_and_boxes/AndroidManifest.xml -------------------------------------------------------------------------------- /vr/ex2_grid_and_boxes/code/sketch.properties: -------------------------------------------------------------------------------- 1 | component=vr 2 | -------------------------------------------------------------------------------- /vr/ex2_grid_and_boxes/ex2_grid_and_boxes.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/vr/ex2_grid_and_boxes/ex2_grid_and_boxes.pde -------------------------------------------------------------------------------- /vr/ex3_solar_system/code/sketch.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/vr/ex3_solar_system/code/sketch.properties -------------------------------------------------------------------------------- /vr/ex3_solar_system/data/earthlike.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/vr/ex3_solar_system/data/earthlike.jpg -------------------------------------------------------------------------------- /vr/ex3_solar_system/data/mercury.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/vr/ex3_solar_system/data/mercury.jpg -------------------------------------------------------------------------------- /vr/ex3_solar_system/data/sol.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/vr/ex3_solar_system/data/sol.jpg -------------------------------------------------------------------------------- /vr/ex3_solar_system/data/startfield.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/vr/ex3_solar_system/data/startfield.jpg -------------------------------------------------------------------------------- /vr/ex3_solar_system/ex3_solar_system.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/vr/ex3_solar_system/ex3_solar_system.pde -------------------------------------------------------------------------------- /wallpapers/ex1_color_transition/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/wallpapers/ex1_color_transition/AndroidManifest.xml -------------------------------------------------------------------------------- /wallpapers/ex1_color_transition/code/sketch.properties: -------------------------------------------------------------------------------- 1 | component=wallpaper 2 | -------------------------------------------------------------------------------- /wallpapers/ex1_color_transition/ex1_color_transition.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/wallpapers/ex1_color_transition/ex1_color_transition.pde -------------------------------------------------------------------------------- /wallpapers/ex2_compass/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/wallpapers/ex2_compass/AndroidManifest.xml -------------------------------------------------------------------------------- /wallpapers/ex2_compass/code/sketch.properties: -------------------------------------------------------------------------------- 1 | component=wallpaper 2 | -------------------------------------------------------------------------------- /wallpapers/ex2_compass/ex2_compass.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/wallpapers/ex2_compass/ex2_compass.pde -------------------------------------------------------------------------------- /watchfaces/ex1_simple_time/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/watchfaces/ex1_simple_time/AndroidManifest.xml -------------------------------------------------------------------------------- /watchfaces/ex1_simple_time/code/sketch.properties: -------------------------------------------------------------------------------- 1 | component=watchface 2 | -------------------------------------------------------------------------------- /watchfaces/ex1_simple_time/ex1_simple_time.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/watchfaces/ex1_simple_time/ex1_simple_time.pde -------------------------------------------------------------------------------- /watchfaces/ex2_slow_time/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/watchfaces/ex2_slow_time/AndroidManifest.xml -------------------------------------------------------------------------------- /watchfaces/ex2_slow_time/code/sketch.properties: -------------------------------------------------------------------------------- 1 | component=watchface 2 | -------------------------------------------------------------------------------- /watchfaces/ex2_slow_time/ex2_slow_time.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/watchfaces/ex2_slow_time/ex2_slow_time.pde -------------------------------------------------------------------------------- /watchfaces/ex3_step_counter/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/watchfaces/ex3_step_counter/AndroidManifest.xml -------------------------------------------------------------------------------- /watchfaces/ex3_step_counter/code/sketch.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/watchfaces/ex3_step_counter/code/sketch.properties -------------------------------------------------------------------------------- /watchfaces/ex3_step_counter/ex3_step_counter.pde: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeanticode/processing-android-tutorials/HEAD/watchfaces/ex3_step_counter/ex3_step_counter.pde --------------------------------------------------------------------------------