├── .gitignore ├── 9781484231555.jpg ├── AS3Source codes ├── ch10 │ ├── InternalStorage │ │ ├── .gradle │ │ │ ├── 4.1 │ │ │ │ ├── fileChanges │ │ │ │ │ └── last-build.bin │ │ │ │ ├── fileContent │ │ │ │ │ └── fileContent.lock │ │ │ │ ├── fileHashes │ │ │ │ │ ├── fileHashes.bin │ │ │ │ │ ├── fileHashes.lock │ │ │ │ │ └── resourceHashesCache.bin │ │ │ │ ├── javaCompile │ │ │ │ │ ├── classAnalysis.bin │ │ │ │ │ ├── jarAnalysis.bin │ │ │ │ │ ├── javaCompile.lock │ │ │ │ │ ├── taskHistory.bin │ │ │ │ │ └── taskJars.bin │ │ │ │ └── taskHistory │ │ │ │ │ ├── fileSnapshots.bin │ │ │ │ │ ├── taskHistory.bin │ │ │ │ │ └── taskHistory.lock │ │ │ └── buildOutputCleanup │ │ │ │ ├── built.bin │ │ │ │ ├── cache.properties │ │ │ │ └── cache.properties.lock │ │ ├── .idea │ │ │ ├── encodings.xml │ │ │ ├── gradle.xml │ │ │ ├── libraries │ │ │ │ ├── 1_common_1_0_0.xml │ │ │ │ ├── animated_vector_drawable_26_1_0.xml │ │ │ │ ├── appcompat_v7_26_1_0.xml │ │ │ │ ├── common_1_0_0.xml │ │ │ │ ├── constraint_layout_1_0_2.xml │ │ │ │ ├── constraint_layout_solver_1_0_2.xml │ │ │ │ ├── espresso_core_3_0_1.xml │ │ │ │ ├── espresso_idling_resource_3_0_1.xml │ │ │ │ ├── hamcrest_core_1_3.xml │ │ │ │ ├── hamcrest_integration_1_3.xml │ │ │ │ ├── hamcrest_library_1_3.xml │ │ │ │ ├── javawriter_2_1_1.xml │ │ │ │ ├── javax_inject_1.xml │ │ │ │ ├── jsr305_2_0_1.xml │ │ │ │ ├── junit_4_12.xml │ │ │ │ ├── kxml2_2_3_0.xml │ │ │ │ ├── rules_1_0_1.xml │ │ │ │ ├── runner_1_0_1.xml │ │ │ │ ├── runtime_1_0_0.xml │ │ │ │ ├── support_annotations_26_1_0.xml │ │ │ │ ├── support_compat_26_1_0.xml │ │ │ │ ├── support_core_ui_26_1_0.xml │ │ │ │ ├── support_core_utils_26_1_0.xml │ │ │ │ ├── support_fragment_26_1_0.xml │ │ │ │ ├── support_media_compat_26_1_0.xml │ │ │ │ ├── support_v4_26_1_0.xml │ │ │ │ └── support_vector_drawable_26_1_0.xml │ │ │ ├── misc.xml │ │ │ ├── modules.xml │ │ │ ├── runConfigurations.xml │ │ │ └── workspace.xml │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── ted │ │ │ │ └── internalstorage │ │ │ │ └── MainActivity.java │ │ │ └── res │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── SharedPref │ │ ├── .gradle │ │ │ ├── 4.1 │ │ │ │ ├── fileChanges │ │ │ │ │ └── last-build.bin │ │ │ │ ├── fileContent │ │ │ │ │ └── fileContent.lock │ │ │ │ ├── fileHashes │ │ │ │ │ ├── fileHashes.bin │ │ │ │ │ ├── fileHashes.lock │ │ │ │ │ └── resourceHashesCache.bin │ │ │ │ ├── javaCompile │ │ │ │ │ ├── classAnalysis.bin │ │ │ │ │ ├── jarAnalysis.bin │ │ │ │ │ ├── javaCompile.lock │ │ │ │ │ ├── taskHistory.bin │ │ │ │ │ └── taskJars.bin │ │ │ │ └── taskHistory │ │ │ │ │ ├── fileSnapshots.bin │ │ │ │ │ ├── taskHistory.bin │ │ │ │ │ └── taskHistory.lock │ │ │ └── buildOutputCleanup │ │ │ │ ├── built.bin │ │ │ │ ├── cache.properties │ │ │ │ └── cache.properties.lock │ │ ├── .idea │ │ │ ├── encodings.xml │ │ │ ├── gradle.xml │ │ │ ├── libraries │ │ │ │ ├── android_arch_core_common_1_0_0_jar.xml │ │ │ │ ├── android_arch_lifecycle_common_1_0_0_jar.xml │ │ │ │ ├── android_arch_lifecycle_runtime_1_0_0.xml │ │ │ │ ├── com_android_support_animated_vector_drawable_26_1_0.xml │ │ │ │ ├── com_android_support_appcompat_v7_26_1_0.xml │ │ │ │ ├── com_android_support_constraint_constraint_layout_1_0_2.xml │ │ │ │ ├── com_android_support_constraint_constraint_layout_solver_1_0_2_jar.xml │ │ │ │ ├── com_android_support_support_annotations_26_1_0_jar.xml │ │ │ │ ├── com_android_support_support_compat_26_1_0.xml │ │ │ │ ├── com_android_support_support_core_ui_26_1_0.xml │ │ │ │ ├── com_android_support_support_core_utils_26_1_0.xml │ │ │ │ ├── com_android_support_support_fragment_26_1_0.xml │ │ │ │ ├── com_android_support_support_media_compat_26_1_0.xml │ │ │ │ ├── com_android_support_support_v4_26_1_0.xml │ │ │ │ ├── com_android_support_support_vector_drawable_26_1_0.xml │ │ │ │ ├── com_android_support_test_espresso_espresso_core_3_0_1.xml │ │ │ │ ├── com_android_support_test_espresso_espresso_idling_resource_3_0_1.xml │ │ │ │ ├── com_android_support_test_rules_1_0_1.xml │ │ │ │ ├── com_android_support_test_runner_1_0_1.xml │ │ │ │ ├── com_google_code_findbugs_jsr305_2_0_1_jar.xml │ │ │ │ ├── com_squareup_javawriter_2_1_1_jar.xml │ │ │ │ ├── javax_inject_javax_inject_1_jar.xml │ │ │ │ ├── junit_junit_4_12_jar.xml │ │ │ │ ├── net_sf_kxml_kxml2_2_3_0_jar.xml │ │ │ │ ├── org_hamcrest_hamcrest_core_1_3_jar.xml │ │ │ │ ├── org_hamcrest_hamcrest_integration_1_3_jar.xml │ │ │ │ └── org_hamcrest_hamcrest_library_1_3_jar.xml │ │ │ ├── misc.xml │ │ │ ├── modules.xml │ │ │ ├── runConfigurations.xml │ │ │ └── workspace.xml │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── ted │ │ │ │ └── sharedpref │ │ │ │ └── MainActivity.java │ │ │ └── res │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ └── SharedPref2 │ │ ├── .gradle │ │ ├── 4.1 │ │ │ ├── fileChanges │ │ │ │ └── last-build.bin │ │ │ ├── fileContent │ │ │ │ └── fileContent.lock │ │ │ ├── fileHashes │ │ │ │ ├── fileHashes.bin │ │ │ │ ├── fileHashes.lock │ │ │ │ └── resourceHashesCache.bin │ │ │ ├── javaCompile │ │ │ │ ├── classAnalysis.bin │ │ │ │ ├── jarAnalysis.bin │ │ │ │ ├── javaCompile.lock │ │ │ │ ├── taskHistory.bin │ │ │ │ └── taskJars.bin │ │ │ └── taskHistory │ │ │ │ ├── fileSnapshots.bin │ │ │ │ ├── taskHistory.bin │ │ │ │ └── taskHistory.lock │ │ └── buildOutputCleanup │ │ │ ├── built.bin │ │ │ ├── cache.properties │ │ │ └── cache.properties.lock │ │ ├── .idea │ │ ├── encodings.xml │ │ ├── gradle.xml │ │ ├── libraries │ │ │ ├── 1_common_1_0_0.xml │ │ │ ├── animated_vector_drawable_26_1_0.xml │ │ │ ├── appcompat_v7_26_1_0.xml │ │ │ ├── common_1_0_0.xml │ │ │ ├── constraint_layout_1_0_2.xml │ │ │ ├── constraint_layout_solver_1_0_2.xml │ │ │ ├── espresso_core_3_0_1.xml │ │ │ ├── espresso_idling_resource_3_0_1.xml │ │ │ ├── hamcrest_core_1_3.xml │ │ │ ├── hamcrest_integration_1_3.xml │ │ │ ├── hamcrest_library_1_3.xml │ │ │ ├── javawriter_2_1_1.xml │ │ │ ├── javax_inject_1.xml │ │ │ ├── jsr305_2_0_1.xml │ │ │ ├── junit_4_12.xml │ │ │ ├── kxml2_2_3_0.xml │ │ │ ├── rules_1_0_1.xml │ │ │ ├── runner_1_0_1.xml │ │ │ ├── runtime_1_0_0.xml │ │ │ ├── support_annotations_26_1_0.xml │ │ │ ├── support_compat_26_1_0.xml │ │ │ ├── support_core_ui_26_1_0.xml │ │ │ ├── support_core_utils_26_1_0.xml │ │ │ ├── support_fragment_26_1_0.xml │ │ │ ├── support_media_compat_26_1_0.xml │ │ │ ├── support_v4_26_1_0.xml │ │ │ └── support_vector_drawable_26_1_0.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── runConfigurations.xml │ │ └── workspace.xml │ │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── ted │ │ │ └── sharedpref2 │ │ │ ├── MainActivity.java │ │ │ └── Second.java │ │ └── res │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ ├── activity_main.xml │ │ └── activity_second.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml ├── ch3 │ └── MyApplication │ │ ├── .gradle │ │ └── 2.10 │ │ │ ├── taskArtifacts │ │ │ ├── cache.properties │ │ │ ├── cache.properties.lock │ │ │ ├── fileHashes.bin │ │ │ ├── fileSnapshots.bin │ │ │ ├── outputFileStates.bin │ │ │ └── taskArtifacts.bin │ │ │ └── tasks │ │ │ └── _app_compileDebugJavaWithJavac │ │ │ ├── localClassSetAnalysis │ │ │ ├── localClassSetAnalysis.bin │ │ │ └── localClassSetAnalysis.lock │ │ │ └── localJarClasspathSnapshot │ │ │ ├── localJarClasspathSnapshot.bin │ │ │ └── localJarClasspathSnapshot.lock │ │ ├── .idea │ │ ├── .name │ │ ├── compiler.xml │ │ ├── copyright │ │ │ └── profiles_settings.xml │ │ ├── encodings.xml │ │ ├── gradle.xml │ │ ├── libraries │ │ │ ├── animated_vector_drawable_23_4_0.xml │ │ │ ├── appcompat_v7_23_4_0.xml │ │ │ ├── hamcrest_core_1_3.xml │ │ │ ├── junit_4_12.xml │ │ │ ├── support_annotations_23_4_0.xml │ │ │ ├── support_v4_23_4_0.xml │ │ │ └── support_vector_drawable_23_4_0.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── runConfigurations.xml │ │ └── workspace.xml │ │ └── app │ │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── ted │ │ │ └── myapplication │ │ │ └── MainActivity.java │ │ └── res │ │ └── layout │ │ └── activity_main.xml ├── ch4 │ └── Hello │ │ ├── .gradle │ │ ├── 4.1-rc-1 │ │ │ ├── fileChanges │ │ │ │ └── last-build.bin │ │ │ ├── fileContent │ │ │ │ └── fileContent.lock │ │ │ ├── fileHashes │ │ │ │ ├── fileHashes.bin │ │ │ │ ├── fileHashes.lock │ │ │ │ └── resourceHashesCache.bin │ │ │ ├── javaCompile │ │ │ │ ├── classAnalysis.bin │ │ │ │ ├── jarAnalysis.bin │ │ │ │ ├── javaCompile.lock │ │ │ │ ├── taskHistory.bin │ │ │ │ └── taskJars.bin │ │ │ └── taskHistory │ │ │ │ ├── fileSnapshots.bin │ │ │ │ ├── taskHistory.bin │ │ │ │ └── taskHistory.lock │ │ ├── 4.1 │ │ │ ├── fileChanges │ │ │ │ └── last-build.bin │ │ │ ├── fileHashes │ │ │ │ ├── fileHashes.bin │ │ │ │ ├── fileHashes.lock │ │ │ │ └── resourceHashesCache.bin │ │ │ └── taskHistory │ │ │ │ ├── fileSnapshots.bin │ │ │ │ ├── taskHistory.bin │ │ │ │ └── taskHistory.lock │ │ └── buildOutputCleanup │ │ │ ├── built.bin │ │ │ ├── cache.properties │ │ │ └── cache.properties.lock │ │ ├── .idea │ │ ├── compiler.xml │ │ ├── copyright │ │ │ └── profiles_settings.xml │ │ ├── encodings.xml │ │ ├── gradle.xml │ │ ├── libraries │ │ │ ├── android_arch_core_common_1_0_0_jar.xml │ │ │ ├── android_arch_lifecycle_common_1_0_0_jar.xml │ │ │ ├── android_arch_lifecycle_runtime_1_0_0.xml │ │ │ ├── com_android_support_animated_vector_drawable_26_1_0.xml │ │ │ ├── com_android_support_appcompat_v7_26_1_0.xml │ │ │ ├── com_android_support_constraint_constraint_layout_1_0_2.xml │ │ │ ├── com_android_support_constraint_constraint_layout_solver_1_0_2_jar.xml │ │ │ ├── com_android_support_support_annotations_26_1_0_jar.xml │ │ │ ├── com_android_support_support_compat_26_1_0.xml │ │ │ ├── com_android_support_support_core_ui_26_1_0.xml │ │ │ ├── com_android_support_support_core_utils_26_1_0.xml │ │ │ ├── com_android_support_support_fragment_26_1_0.xml │ │ │ ├── com_android_support_support_media_compat_26_1_0.xml │ │ │ ├── com_android_support_support_v4_26_1_0.xml │ │ │ ├── com_android_support_support_vector_drawable_26_1_0.xml │ │ │ ├── com_android_support_test_espresso_espresso_core_3_0_1.xml │ │ │ ├── com_android_support_test_espresso_espresso_idling_resource_3_0_1.xml │ │ │ ├── com_android_support_test_rules_1_0_1.xml │ │ │ ├── com_android_support_test_runner_1_0_1.xml │ │ │ ├── com_google_code_findbugs_jsr305_2_0_1_jar.xml │ │ │ ├── com_squareup_javawriter_2_1_1_jar.xml │ │ │ ├── javax_inject_javax_inject_1_jar.xml │ │ │ ├── junit_junit_4_12_jar.xml │ │ │ ├── net_sf_kxml_kxml2_2_3_0_jar.xml │ │ │ ├── org_hamcrest_hamcrest_core_1_3_jar.xml │ │ │ ├── org_hamcrest_hamcrest_integration_1_3_jar.xml │ │ │ └── org_hamcrest_hamcrest_library_1_3_jar.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── runConfigurations.xml │ │ └── workspace.xml │ │ └── app │ │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── ted │ │ │ └── hello │ │ │ └── MainActivity.java │ │ └── res │ │ └── layout │ │ └── activity_main.xml ├── ch5 │ ├── EventHandling1 │ │ ├── .gradle │ │ │ ├── 4.1 │ │ │ │ ├── fileChanges │ │ │ │ │ └── last-build.bin │ │ │ │ ├── fileContent │ │ │ │ │ └── fileContent.lock │ │ │ │ ├── fileHashes │ │ │ │ │ ├── fileHashes.bin │ │ │ │ │ ├── fileHashes.lock │ │ │ │ │ └── resourceHashesCache.bin │ │ │ │ ├── javaCompile │ │ │ │ │ ├── classAnalysis.bin │ │ │ │ │ ├── jarAnalysis.bin │ │ │ │ │ ├── javaCompile.lock │ │ │ │ │ ├── taskHistory.bin │ │ │ │ │ └── taskJars.bin │ │ │ │ └── taskHistory │ │ │ │ │ ├── fileSnapshots.bin │ │ │ │ │ ├── taskHistory.bin │ │ │ │ │ └── taskHistory.lock │ │ │ ├── 4.4-20171031235950+0000 │ │ │ │ ├── fileChanges │ │ │ │ │ └── last-build.bin │ │ │ │ ├── fileContent │ │ │ │ │ └── fileContent.lock │ │ │ │ ├── fileHashes │ │ │ │ │ ├── fileHashes.bin │ │ │ │ │ ├── fileHashes.lock │ │ │ │ │ └── resourceHashesCache.bin │ │ │ │ ├── javaCompile │ │ │ │ │ ├── classAnalysis.bin │ │ │ │ │ ├── jarAnalysis.bin │ │ │ │ │ ├── javaCompile.lock │ │ │ │ │ ├── taskHistory.bin │ │ │ │ │ └── taskJars.bin │ │ │ │ └── taskHistory │ │ │ │ │ ├── taskHistory.bin │ │ │ │ │ └── taskHistory.lock │ │ │ └── buildOutputCleanup │ │ │ │ ├── buildOutputCleanup.lock │ │ │ │ ├── cache.properties │ │ │ │ └── outputFiles.bin │ │ ├── .idea │ │ │ ├── caches │ │ │ │ └── build_file_checksums.ser │ │ │ ├── encodings.xml │ │ │ ├── gradle.xml │ │ │ ├── libraries │ │ │ │ ├── android_arch_core_common_1_0_0_jar.xml │ │ │ │ ├── android_arch_lifecycle_common_1_0_0_jar.xml │ │ │ │ ├── android_arch_lifecycle_runtime_1_0_0.xml │ │ │ │ ├── com_android_support_animated_vector_drawable_26_1_0.xml │ │ │ │ ├── com_android_support_appcompat_v7_26_1_0.xml │ │ │ │ ├── com_android_support_constraint_constraint_layout_1_0_2.xml │ │ │ │ ├── com_android_support_constraint_constraint_layout_solver_1_0_2_jar.xml │ │ │ │ ├── com_android_support_support_annotations_26_1_0_jar.xml │ │ │ │ ├── com_android_support_support_compat_26_1_0.xml │ │ │ │ ├── com_android_support_support_core_ui_26_1_0.xml │ │ │ │ ├── com_android_support_support_core_utils_26_1_0.xml │ │ │ │ ├── com_android_support_support_fragment_26_1_0.xml │ │ │ │ ├── com_android_support_support_media_compat_26_1_0.xml │ │ │ │ ├── com_android_support_support_v4_26_1_0.xml │ │ │ │ ├── com_android_support_support_vector_drawable_26_1_0.xml │ │ │ │ ├── com_android_support_test_espresso_espresso_core_3_0_1.xml │ │ │ │ ├── com_android_support_test_espresso_espresso_idling_resource_3_0_1.xml │ │ │ │ ├── com_android_support_test_rules_1_0_1.xml │ │ │ │ ├── com_android_support_test_runner_1_0_1.xml │ │ │ │ ├── com_google_code_findbugs_jsr305_2_0_1_jar.xml │ │ │ │ ├── com_squareup_javawriter_2_1_1_jar.xml │ │ │ │ ├── javax_inject_javax_inject_1_jar.xml │ │ │ │ ├── junit_junit_4_12_jar.xml │ │ │ │ ├── net_sf_kxml_kxml2_2_3_0_jar.xml │ │ │ │ ├── org_hamcrest_hamcrest_core_1_3_jar.xml │ │ │ │ ├── org_hamcrest_hamcrest_integration_1_3_jar.xml │ │ │ │ └── org_hamcrest_hamcrest_library_1_3_jar.xml │ │ │ ├── misc.xml │ │ │ ├── modules.xml │ │ │ ├── runConfigurations.xml │ │ │ └── workspace.xml │ │ └── app │ │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── ted │ │ │ │ └── eventhandling1 │ │ │ │ ├── MainActivity.java │ │ │ │ └── MainActivity2.java │ │ │ └── res │ │ │ └── layout │ │ │ └── activity_main.xml │ ├── Hello │ │ ├── .gradle │ │ │ ├── 4.1-rc-1 │ │ │ │ ├── fileChanges │ │ │ │ │ └── last-build.bin │ │ │ │ ├── fileContent │ │ │ │ │ └── fileContent.lock │ │ │ │ ├── fileHashes │ │ │ │ │ ├── fileHashes.bin │ │ │ │ │ ├── fileHashes.lock │ │ │ │ │ └── resourceHashesCache.bin │ │ │ │ ├── javaCompile │ │ │ │ │ ├── classAnalysis.bin │ │ │ │ │ ├── jarAnalysis.bin │ │ │ │ │ ├── javaCompile.lock │ │ │ │ │ ├── taskHistory.bin │ │ │ │ │ └── taskJars.bin │ │ │ │ └── taskHistory │ │ │ │ │ ├── fileSnapshots.bin │ │ │ │ │ ├── taskHistory.bin │ │ │ │ │ └── taskHistory.lock │ │ │ ├── 4.1 │ │ │ │ ├── fileChanges │ │ │ │ │ └── last-build.bin │ │ │ │ ├── fileHashes │ │ │ │ │ ├── fileHashes.bin │ │ │ │ │ ├── fileHashes.lock │ │ │ │ │ └── resourceHashesCache.bin │ │ │ │ └── taskHistory │ │ │ │ │ ├── fileSnapshots.bin │ │ │ │ │ ├── taskHistory.bin │ │ │ │ │ └── taskHistory.lock │ │ │ └── buildOutputCleanup │ │ │ │ ├── built.bin │ │ │ │ ├── cache.properties │ │ │ │ └── cache.properties.lock │ │ ├── .idea │ │ │ ├── compiler.xml │ │ │ ├── copyright │ │ │ │ └── profiles_settings.xml │ │ │ ├── encodings.xml │ │ │ ├── gradle.xml │ │ │ ├── libraries │ │ │ │ ├── android_arch_core_common_1_0_0_jar.xml │ │ │ │ ├── android_arch_lifecycle_common_1_0_0_jar.xml │ │ │ │ ├── android_arch_lifecycle_runtime_1_0_0.xml │ │ │ │ ├── com_android_support_animated_vector_drawable_26_1_0.xml │ │ │ │ ├── com_android_support_appcompat_v7_26_1_0.xml │ │ │ │ ├── com_android_support_constraint_constraint_layout_1_0_2.xml │ │ │ │ ├── com_android_support_constraint_constraint_layout_solver_1_0_2_jar.xml │ │ │ │ ├── com_android_support_support_annotations_26_1_0_jar.xml │ │ │ │ ├── com_android_support_support_compat_26_1_0.xml │ │ │ │ ├── com_android_support_support_core_ui_26_1_0.xml │ │ │ │ ├── com_android_support_support_core_utils_26_1_0.xml │ │ │ │ ├── com_android_support_support_fragment_26_1_0.xml │ │ │ │ ├── com_android_support_support_media_compat_26_1_0.xml │ │ │ │ ├── com_android_support_support_v4_26_1_0.xml │ │ │ │ ├── com_android_support_support_vector_drawable_26_1_0.xml │ │ │ │ ├── com_android_support_test_espresso_espresso_core_3_0_1.xml │ │ │ │ ├── com_android_support_test_espresso_espresso_idling_resource_3_0_1.xml │ │ │ │ ├── com_android_support_test_rules_1_0_1.xml │ │ │ │ ├── com_android_support_test_runner_1_0_1.xml │ │ │ │ ├── com_google_code_findbugs_jsr305_2_0_1_jar.xml │ │ │ │ ├── com_squareup_javawriter_2_1_1_jar.xml │ │ │ │ ├── javax_inject_javax_inject_1_jar.xml │ │ │ │ ├── junit_junit_4_12_jar.xml │ │ │ │ ├── net_sf_kxml_kxml2_2_3_0_jar.xml │ │ │ │ ├── org_hamcrest_hamcrest_core_1_3_jar.xml │ │ │ │ ├── org_hamcrest_hamcrest_integration_1_3_jar.xml │ │ │ │ └── org_hamcrest_hamcrest_library_1_3_jar.xml │ │ │ ├── misc.xml │ │ │ ├── modules.xml │ │ │ ├── runConfigurations.xml │ │ │ └── workspace.xml │ │ └── app │ │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── ted │ │ │ │ └── hello │ │ │ │ └── MainActivity.java │ │ │ └── res │ │ │ └── layout │ │ │ └── activity_main.xml │ └── eventhandlinginnerclassaslistener │ │ ├── .gitignore │ │ └── app │ │ ├── .gitignore │ │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── ted │ │ │ └── eventhandling_innerclass_as_listener │ │ │ └── MainActivity.java │ │ └── res │ │ └── layout │ │ └── activity_main.xml ├── ch6 │ ├── FirstIntent │ │ ├── .gradle │ │ │ ├── 4.1-rc-1 │ │ │ │ ├── fileChanges │ │ │ │ │ └── last-build.bin │ │ │ │ ├── fileContent │ │ │ │ │ └── fileContent.lock │ │ │ │ ├── fileHashes │ │ │ │ │ ├── fileHashes.bin │ │ │ │ │ ├── fileHashes.lock │ │ │ │ │ └── resourceHashesCache.bin │ │ │ │ ├── javaCompile │ │ │ │ │ ├── classAnalysis.bin │ │ │ │ │ ├── jarAnalysis.bin │ │ │ │ │ ├── javaCompile.lock │ │ │ │ │ ├── taskHistory.bin │ │ │ │ │ └── taskJars.bin │ │ │ │ └── taskHistory │ │ │ │ │ ├── fileSnapshots.bin │ │ │ │ │ ├── taskHistory.bin │ │ │ │ │ └── taskHistory.lock │ │ │ ├── 4.1 │ │ │ │ ├── fileChanges │ │ │ │ │ └── last-build.bin │ │ │ │ ├── fileContent │ │ │ │ │ └── fileContent.lock │ │ │ │ ├── fileHashes │ │ │ │ │ ├── fileHashes.bin │ │ │ │ │ ├── fileHashes.lock │ │ │ │ │ └── resourceHashesCache.bin │ │ │ │ ├── javaCompile │ │ │ │ │ ├── classAnalysis.bin │ │ │ │ │ ├── jarAnalysis.bin │ │ │ │ │ ├── javaCompile.lock │ │ │ │ │ ├── taskHistory.bin │ │ │ │ │ └── taskJars.bin │ │ │ │ └── taskHistory │ │ │ │ │ ├── fileSnapshots.bin │ │ │ │ │ ├── taskHistory.bin │ │ │ │ │ └── taskHistory.lock │ │ │ └── buildOutputCleanup │ │ │ │ ├── built.bin │ │ │ │ ├── cache.properties │ │ │ │ └── cache.properties.lock │ │ ├── .idea │ │ │ ├── encodings.xml │ │ │ ├── gradle.xml │ │ │ ├── libraries │ │ │ │ ├── android_arch_core_common_1_0_0_jar.xml │ │ │ │ ├── android_arch_lifecycle_common_1_0_0_jar.xml │ │ │ │ ├── android_arch_lifecycle_runtime_1_0_0.xml │ │ │ │ ├── com_android_support_animated_vector_drawable_26_1_0.xml │ │ │ │ ├── com_android_support_appcompat_v7_26_1_0.xml │ │ │ │ ├── com_android_support_constraint_constraint_layout_1_0_2.xml │ │ │ │ ├── com_android_support_constraint_constraint_layout_solver_1_0_2_jar.xml │ │ │ │ ├── com_android_support_support_annotations_26_1_0_jar.xml │ │ │ │ ├── com_android_support_support_compat_26_1_0.xml │ │ │ │ ├── com_android_support_support_core_ui_26_1_0.xml │ │ │ │ ├── com_android_support_support_core_utils_26_1_0.xml │ │ │ │ ├── com_android_support_support_fragment_26_1_0.xml │ │ │ │ ├── com_android_support_support_media_compat_26_1_0.xml │ │ │ │ ├── com_android_support_support_v4_26_1_0.xml │ │ │ │ ├── com_android_support_support_vector_drawable_26_1_0.xml │ │ │ │ ├── com_android_support_test_espresso_espresso_core_3_0_1.xml │ │ │ │ ├── com_android_support_test_espresso_espresso_idling_resource_3_0_1.xml │ │ │ │ ├── com_android_support_test_rules_1_0_1.xml │ │ │ │ ├── com_android_support_test_runner_1_0_1.xml │ │ │ │ ├── com_google_code_findbugs_jsr305_2_0_1_jar.xml │ │ │ │ ├── com_squareup_javawriter_2_1_1_jar.xml │ │ │ │ ├── javax_inject_javax_inject_1_jar.xml │ │ │ │ ├── junit_junit_4_12_jar.xml │ │ │ │ ├── net_sf_kxml_kxml2_2_3_0_jar.xml │ │ │ │ ├── org_hamcrest_hamcrest_core_1_3_jar.xml │ │ │ │ ├── org_hamcrest_hamcrest_integration_1_3_jar.xml │ │ │ │ └── org_hamcrest_hamcrest_library_1_3_jar.xml │ │ │ ├── misc.xml │ │ │ ├── modules.xml │ │ │ ├── runConfigurations.xml │ │ │ └── workspace.xml │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── ted │ │ │ │ └── firstintent │ │ │ │ ├── MainActivity.java │ │ │ │ └── SecondActivity.java │ │ │ └── res │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ └── activity_second.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── GCF │ │ ├── .gradle │ │ │ ├── 4.1 │ │ │ │ ├── fileChanges │ │ │ │ │ └── last-build.bin │ │ │ │ ├── fileContent │ │ │ │ │ └── fileContent.lock │ │ │ │ ├── fileHashes │ │ │ │ │ ├── fileHashes.bin │ │ │ │ │ ├── fileHashes.lock │ │ │ │ │ └── resourceHashesCache.bin │ │ │ │ ├── javaCompile │ │ │ │ │ ├── classAnalysis.bin │ │ │ │ │ ├── jarAnalysis.bin │ │ │ │ │ ├── javaCompile.lock │ │ │ │ │ ├── taskHistory.bin │ │ │ │ │ └── taskJars.bin │ │ │ │ └── taskHistory │ │ │ │ │ ├── fileSnapshots.bin │ │ │ │ │ ├── taskHistory.bin │ │ │ │ │ └── taskHistory.lock │ │ │ ├── 4.4-20171031235950+0000 │ │ │ │ ├── fileChanges │ │ │ │ │ └── last-build.bin │ │ │ │ ├── fileHashes │ │ │ │ │ ├── fileHashes.bin │ │ │ │ │ ├── fileHashes.lock │ │ │ │ │ └── resourceHashesCache.bin │ │ │ │ └── taskHistory │ │ │ │ │ ├── taskHistory.bin │ │ │ │ │ └── taskHistory.lock │ │ │ └── buildOutputCleanup │ │ │ │ ├── buildOutputCleanup.lock │ │ │ │ ├── cache.properties │ │ │ │ └── outputFiles.bin │ │ ├── .idea │ │ │ ├── caches │ │ │ │ └── build_file_checksums.ser │ │ │ ├── encodings.xml │ │ │ ├── gradle.xml │ │ │ ├── libraries │ │ │ │ ├── android_arch_core_common_1_0_0_jar.xml │ │ │ │ ├── android_arch_lifecycle_common_1_0_0_jar.xml │ │ │ │ ├── android_arch_lifecycle_runtime_1_0_0.xml │ │ │ │ ├── com_android_support_animated_vector_drawable_26_1_0.xml │ │ │ │ ├── com_android_support_appcompat_v7_26_1_0.xml │ │ │ │ ├── com_android_support_constraint_constraint_layout_1_0_2.xml │ │ │ │ ├── com_android_support_constraint_constraint_layout_solver_1_0_2_jar.xml │ │ │ │ ├── com_android_support_support_annotations_26_1_0_jar.xml │ │ │ │ ├── com_android_support_support_compat_26_1_0.xml │ │ │ │ ├── com_android_support_support_core_ui_26_1_0.xml │ │ │ │ ├── com_android_support_support_core_utils_26_1_0.xml │ │ │ │ ├── com_android_support_support_fragment_26_1_0.xml │ │ │ │ ├── com_android_support_support_media_compat_26_1_0.xml │ │ │ │ ├── com_android_support_support_v4_26_1_0.xml │ │ │ │ ├── com_android_support_support_vector_drawable_26_1_0.xml │ │ │ │ ├── com_android_support_test_espresso_espresso_core_3_0_1.xml │ │ │ │ ├── com_android_support_test_espresso_espresso_idling_resource_3_0_1.xml │ │ │ │ ├── com_android_support_test_rules_1_0_1.xml │ │ │ │ ├── com_android_support_test_runner_1_0_1.xml │ │ │ │ ├── com_google_code_findbugs_jsr305_2_0_1_jar.xml │ │ │ │ ├── com_squareup_javawriter_2_1_1_jar.xml │ │ │ │ ├── javax_inject_javax_inject_1_jar.xml │ │ │ │ ├── junit_junit_4_12_jar.xml │ │ │ │ ├── net_sf_kxml_kxml2_2_3_0_jar.xml │ │ │ │ ├── org_hamcrest_hamcrest_core_1_3_jar.xml │ │ │ │ ├── org_hamcrest_hamcrest_integration_1_3_jar.xml │ │ │ │ └── org_hamcrest_hamcrest_library_1_3_jar.xml │ │ │ ├── misc.xml │ │ │ ├── modules.xml │ │ │ ├── runConfigurations.xml │ │ │ └── workspace.xml │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── ted │ │ │ │ └── gcf │ │ │ │ ├── Calculate.java │ │ │ │ ├── MainActivity.java │ │ │ │ └── MainActivity2.java │ │ │ └── res │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ ├── activity_calculate.xml │ │ │ ├── activity_main.xml │ │ │ └── activity_main2.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── GetResultsSubActivity │ │ ├── .gradle │ │ │ ├── 4.1 │ │ │ │ ├── fileChanges │ │ │ │ │ └── last-build.bin │ │ │ │ ├── fileContent │ │ │ │ │ └── fileContent.lock │ │ │ │ ├── fileHashes │ │ │ │ │ ├── fileHashes.bin │ │ │ │ │ ├── fileHashes.lock │ │ │ │ │ └── resourceHashesCache.bin │ │ │ │ ├── javaCompile │ │ │ │ │ ├── classAnalysis.bin │ │ │ │ │ ├── jarAnalysis.bin │ │ │ │ │ ├── javaCompile.lock │ │ │ │ │ ├── taskHistory.bin │ │ │ │ │ └── taskJars.bin │ │ │ │ └── taskHistory │ │ │ │ │ ├── fileSnapshots.bin │ │ │ │ │ ├── taskHistory.bin │ │ │ │ │ └── taskHistory.lock │ │ │ └── buildOutputCleanup │ │ │ │ ├── built.bin │ │ │ │ ├── cache.properties │ │ │ │ └── cache.properties.lock │ │ ├── .idea │ │ │ ├── encodings.xml │ │ │ ├── gradle.xml │ │ │ ├── libraries │ │ │ │ ├── 1_common_1_0_0.xml │ │ │ │ ├── animated_vector_drawable_26_1_0.xml │ │ │ │ ├── appcompat_v7_26_1_0.xml │ │ │ │ ├── common_1_0_0.xml │ │ │ │ ├── constraint_layout_1_0_2.xml │ │ │ │ ├── constraint_layout_solver_1_0_2.xml │ │ │ │ ├── espresso_core_3_0_1.xml │ │ │ │ ├── espresso_idling_resource_3_0_1.xml │ │ │ │ ├── hamcrest_core_1_3.xml │ │ │ │ ├── hamcrest_integration_1_3.xml │ │ │ │ ├── hamcrest_library_1_3.xml │ │ │ │ ├── javawriter_2_1_1.xml │ │ │ │ ├── javax_inject_1.xml │ │ │ │ ├── jsr305_2_0_1.xml │ │ │ │ ├── junit_4_12.xml │ │ │ │ ├── kxml2_2_3_0.xml │ │ │ │ ├── rules_1_0_1.xml │ │ │ │ ├── runner_1_0_1.xml │ │ │ │ ├── runtime_1_0_0.xml │ │ │ │ ├── support_annotations_26_1_0.xml │ │ │ │ ├── support_compat_26_1_0.xml │ │ │ │ ├── support_core_ui_26_1_0.xml │ │ │ │ ├── support_core_utils_26_1_0.xml │ │ │ │ ├── support_fragment_26_1_0.xml │ │ │ │ ├── support_media_compat_26_1_0.xml │ │ │ │ ├── support_v4_26_1_0.xml │ │ │ │ └── support_vector_drawable_26_1_0.xml │ │ │ ├── misc.xml │ │ │ ├── modules.xml │ │ │ ├── runConfigurations.xml │ │ │ └── workspace.xml │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── ted │ │ │ │ └── getresultssubactivity │ │ │ │ ├── MainActivity.java │ │ │ │ └── SecondActivity.java │ │ │ └── res │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ ├── activity_secon.xml │ │ │ └── activity_second.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ └── ImplicitIntents │ │ ├── .gradle │ │ ├── 4.1 │ │ │ ├── fileChanges │ │ │ │ └── last-build.bin │ │ │ ├── fileContent │ │ │ │ └── fileContent.lock │ │ │ ├── fileHashes │ │ │ │ ├── fileHashes.bin │ │ │ │ ├── fileHashes.lock │ │ │ │ └── resourceHashesCache.bin │ │ │ ├── javaCompile │ │ │ │ ├── classAnalysis.bin │ │ │ │ ├── jarAnalysis.bin │ │ │ │ ├── javaCompile.lock │ │ │ │ ├── taskHistory.bin │ │ │ │ └── taskJars.bin │ │ │ └── taskHistory │ │ │ │ ├── fileSnapshots.bin │ │ │ │ ├── taskHistory.bin │ │ │ │ └── taskHistory.lock │ │ └── buildOutputCleanup │ │ │ ├── built.bin │ │ │ ├── cache.properties │ │ │ └── cache.properties.lock │ │ ├── .idea │ │ ├── encodings.xml │ │ ├── gradle.xml │ │ ├── libraries │ │ │ ├── 1_common_1_0_0.xml │ │ │ ├── animated_vector_drawable_26_1_0.xml │ │ │ ├── appcompat_v7_26_1_0.xml │ │ │ ├── common_1_0_0.xml │ │ │ ├── constraint_layout_1_0_2.xml │ │ │ ├── constraint_layout_solver_1_0_2.xml │ │ │ ├── espresso_core_3_0_1.xml │ │ │ ├── espresso_idling_resource_3_0_1.xml │ │ │ ├── hamcrest_core_1_3.xml │ │ │ ├── hamcrest_integration_1_3.xml │ │ │ ├── hamcrest_library_1_3.xml │ │ │ ├── javawriter_2_1_1.xml │ │ │ ├── javax_inject_1.xml │ │ │ ├── jsr305_2_0_1.xml │ │ │ ├── junit_4_12.xml │ │ │ ├── kxml2_2_3_0.xml │ │ │ ├── rules_1_0_1.xml │ │ │ ├── runner_1_0_1.xml │ │ │ ├── runtime_1_0_0.xml │ │ │ ├── support_annotations_26_1_0.xml │ │ │ ├── support_compat_26_1_0.xml │ │ │ ├── support_core_ui_26_1_0.xml │ │ │ ├── support_core_utils_26_1_0.xml │ │ │ ├── support_fragment_26_1_0.xml │ │ │ ├── support_media_compat_26_1_0.xml │ │ │ ├── support_v4_26_1_0.xml │ │ │ └── support_vector_drawable_26_1_0.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── runConfigurations.xml │ │ └── workspace.xml │ │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── ted │ │ │ └── implicitintents │ │ │ └── MainActivity.java │ │ └── res │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ └── activity_main.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml ├── ch7 │ ├── ActionBar │ │ ├── .gradle │ │ │ ├── 4.1 │ │ │ │ ├── fileChanges │ │ │ │ │ └── last-build.bin │ │ │ │ ├── fileContent │ │ │ │ │ └── fileContent.lock │ │ │ │ ├── fileHashes │ │ │ │ │ ├── fileHashes.bin │ │ │ │ │ ├── fileHashes.lock │ │ │ │ │ └── resourceHashesCache.bin │ │ │ │ ├── javaCompile │ │ │ │ │ ├── classAnalysis.bin │ │ │ │ │ ├── jarAnalysis.bin │ │ │ │ │ ├── javaCompile.lock │ │ │ │ │ ├── taskHistory.bin │ │ │ │ │ └── taskJars.bin │ │ │ │ └── taskHistory │ │ │ │ │ ├── fileSnapshots.bin │ │ │ │ │ ├── taskHistory.bin │ │ │ │ │ └── taskHistory.lock │ │ │ └── buildOutputCleanup │ │ │ │ ├── built.bin │ │ │ │ ├── cache.properties │ │ │ │ └── cache.properties.lock │ │ ├── .idea │ │ │ ├── encodings.xml │ │ │ ├── gradle.xml │ │ │ ├── libraries │ │ │ │ ├── 1_common_1_0_0.xml │ │ │ │ ├── animated_vector_drawable_26_1_0.xml │ │ │ │ ├── appcompat_v7_26_1_0.xml │ │ │ │ ├── common_1_0_0.xml │ │ │ │ ├── constraint_layout_1_0_2.xml │ │ │ │ ├── constraint_layout_solver_1_0_2.xml │ │ │ │ ├── espresso_core_3_0_1.xml │ │ │ │ ├── espresso_idling_resource_3_0_1.xml │ │ │ │ ├── hamcrest_core_1_3.xml │ │ │ │ ├── hamcrest_integration_1_3.xml │ │ │ │ ├── hamcrest_library_1_3.xml │ │ │ │ ├── javawriter_2_1_1.xml │ │ │ │ ├── javax_inject_1.xml │ │ │ │ ├── jsr305_2_0_1.xml │ │ │ │ ├── junit_4_12.xml │ │ │ │ ├── kxml2_2_3_0.xml │ │ │ │ ├── rules_1_0_1.xml │ │ │ │ ├── runner_1_0_1.xml │ │ │ │ ├── runtime_1_0_0.xml │ │ │ │ ├── support_annotations_26_1_0.xml │ │ │ │ ├── support_compat_26_1_0.xml │ │ │ │ ├── support_core_ui_26_1_0.xml │ │ │ │ ├── support_core_utils_26_1_0.xml │ │ │ │ ├── support_fragment_26_1_0.xml │ │ │ │ ├── support_media_compat_26_1_0.xml │ │ │ │ ├── support_v4_26_1_0.xml │ │ │ │ └── support_vector_drawable_26_1_0.xml │ │ │ ├── misc.xml │ │ │ ├── modules.xml │ │ │ ├── runConfigurations.xml │ │ │ └── workspace.xml │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── ted │ │ │ │ └── actionbar │ │ │ │ └── MainActivity.java │ │ │ └── res │ │ │ ├── drawable │ │ │ ├── ic_attach_file_black_24dp.xml │ │ │ ├── ic_edit_black_24dp.xml │ │ │ ├── ic_help_black_24dp.xml │ │ │ ├── ic_launcher_background.xml │ │ │ └── ic_power_settings_new_black_24dp.xml │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── menu │ │ │ └── main_menu.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── Fragments │ │ ├── .gradle │ │ │ ├── 4.1 │ │ │ │ ├── fileChanges │ │ │ │ │ └── last-build.bin │ │ │ │ ├── fileContent │ │ │ │ │ └── fileContent.lock │ │ │ │ ├── fileHashes │ │ │ │ │ ├── fileHashes.bin │ │ │ │ │ ├── fileHashes.lock │ │ │ │ │ └── resourceHashesCache.bin │ │ │ │ ├── javaCompile │ │ │ │ │ ├── classAnalysis.bin │ │ │ │ │ ├── jarAnalysis.bin │ │ │ │ │ ├── javaCompile.lock │ │ │ │ │ ├── taskHistory.bin │ │ │ │ │ └── taskJars.bin │ │ │ │ └── taskHistory │ │ │ │ │ ├── fileSnapshots.bin │ │ │ │ │ ├── taskHistory.bin │ │ │ │ │ └── taskHistory.lock │ │ │ ├── 4.4-20171031235950+0000 │ │ │ │ ├── fileChanges │ │ │ │ │ └── last-build.bin │ │ │ │ ├── fileContent │ │ │ │ │ └── fileContent.lock │ │ │ │ ├── fileHashes │ │ │ │ │ ├── fileHashes.bin │ │ │ │ │ ├── fileHashes.lock │ │ │ │ │ └── resourceHashesCache.bin │ │ │ │ ├── javaCompile │ │ │ │ │ ├── classAnalysis.bin │ │ │ │ │ ├── jarAnalysis.bin │ │ │ │ │ ├── javaCompile.lock │ │ │ │ │ ├── taskHistory.bin │ │ │ │ │ └── taskJars.bin │ │ │ │ └── taskHistory │ │ │ │ │ ├── taskHistory.bin │ │ │ │ │ └── taskHistory.lock │ │ │ └── buildOutputCleanup │ │ │ │ ├── buildOutputCleanup.lock │ │ │ │ ├── cache.properties │ │ │ │ └── outputFiles.bin │ │ ├── .idea │ │ │ ├── caches │ │ │ │ └── build_file_checksums.ser │ │ │ ├── encodings.xml │ │ │ ├── gradle.xml │ │ │ ├── libraries │ │ │ │ ├── android_arch_core_common_1_0_0_jar.xml │ │ │ │ ├── android_arch_lifecycle_common_1_0_0_jar.xml │ │ │ │ ├── android_arch_lifecycle_runtime_1_0_0.xml │ │ │ │ ├── com_android_support_animated_vector_drawable_26_1_0.xml │ │ │ │ ├── com_android_support_appcompat_v7_26_1_0.xml │ │ │ │ ├── com_android_support_constraint_constraint_layout_1_0_2.xml │ │ │ │ ├── com_android_support_constraint_constraint_layout_solver_1_0_2_jar.xml │ │ │ │ ├── com_android_support_support_annotations_26_1_0_jar.xml │ │ │ │ ├── com_android_support_support_compat_26_1_0.xml │ │ │ │ ├── com_android_support_support_core_ui_26_1_0.xml │ │ │ │ ├── com_android_support_support_core_utils_26_1_0.xml │ │ │ │ ├── com_android_support_support_fragment_26_1_0.xml │ │ │ │ ├── com_android_support_support_media_compat_26_1_0.xml │ │ │ │ ├── com_android_support_support_v4_26_1_0.xml │ │ │ │ ├── com_android_support_support_vector_drawable_26_1_0.xml │ │ │ │ ├── com_android_support_test_espresso_espresso_core_3_0_1.xml │ │ │ │ ├── com_android_support_test_espresso_espresso_idling_resource_3_0_1.xml │ │ │ │ ├── com_android_support_test_rules_1_0_1.xml │ │ │ │ ├── com_android_support_test_runner_1_0_1.xml │ │ │ │ ├── com_google_code_findbugs_jsr305_2_0_1_jar.xml │ │ │ │ ├── com_squareup_javawriter_2_1_1_jar.xml │ │ │ │ ├── javax_inject_javax_inject_1_jar.xml │ │ │ │ ├── junit_junit_4_12_jar.xml │ │ │ │ ├── net_sf_kxml_kxml2_2_3_0_jar.xml │ │ │ │ ├── org_hamcrest_hamcrest_core_1_3_jar.xml │ │ │ │ ├── org_hamcrest_hamcrest_integration_1_3_jar.xml │ │ │ │ └── org_hamcrest_hamcrest_library_1_3_jar.xml │ │ │ ├── misc.xml │ │ │ ├── modules.xml │ │ │ ├── runConfigurations.xml │ │ │ └── workspace.xml │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── ted │ │ │ │ └── fragments │ │ │ │ ├── FragmentA.java │ │ │ │ └── MainActivity.java │ │ │ └── res │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ └── fragment_a.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ └── Fragments2 │ │ ├── .gradle │ │ ├── 4.1 │ │ │ ├── fileChanges │ │ │ │ └── last-build.bin │ │ │ ├── fileContent │ │ │ │ └── fileContent.lock │ │ │ ├── fileHashes │ │ │ │ ├── fileHashes.bin │ │ │ │ ├── fileHashes.lock │ │ │ │ └── resourceHashesCache.bin │ │ │ ├── javaCompile │ │ │ │ ├── classAnalysis.bin │ │ │ │ ├── jarAnalysis.bin │ │ │ │ ├── javaCompile.lock │ │ │ │ ├── taskHistory.bin │ │ │ │ └── taskJars.bin │ │ │ └── taskHistory │ │ │ │ ├── fileSnapshots.bin │ │ │ │ ├── taskHistory.bin │ │ │ │ └── taskHistory.lock │ │ ├── 4.4-20171031235950+0000 │ │ │ ├── fileChanges │ │ │ │ └── last-build.bin │ │ │ ├── fileContent │ │ │ │ └── fileContent.lock │ │ │ ├── fileHashes │ │ │ │ ├── fileHashes.bin │ │ │ │ ├── fileHashes.lock │ │ │ │ └── resourceHashesCache.bin │ │ │ ├── javaCompile │ │ │ │ ├── classAnalysis.bin │ │ │ │ ├── jarAnalysis.bin │ │ │ │ ├── javaCompile.lock │ │ │ │ ├── taskHistory.bin │ │ │ │ └── taskJars.bin │ │ │ └── taskHistory │ │ │ │ ├── taskHistory.bin │ │ │ │ └── taskHistory.lock │ │ └── buildOutputCleanup │ │ │ ├── buildOutputCleanup.lock │ │ │ ├── cache.properties │ │ │ └── outputFiles.bin │ │ ├── .idea │ │ ├── caches │ │ │ └── build_file_checksums.ser │ │ ├── encodings.xml │ │ ├── gradle.xml │ │ ├── libraries │ │ │ ├── android_arch_core_common_1_0_0_jar.xml │ │ │ ├── android_arch_lifecycle_common_1_0_0_jar.xml │ │ │ ├── android_arch_lifecycle_runtime_1_0_0.xml │ │ │ ├── com_android_support_animated_vector_drawable_26_1_0.xml │ │ │ ├── com_android_support_appcompat_v7_26_1_0.xml │ │ │ ├── com_android_support_constraint_constraint_layout_1_0_2.xml │ │ │ ├── com_android_support_constraint_constraint_layout_solver_1_0_2_jar.xml │ │ │ ├── com_android_support_support_annotations_26_1_0_jar.xml │ │ │ ├── com_android_support_support_compat_26_1_0.xml │ │ │ ├── com_android_support_support_core_ui_26_1_0.xml │ │ │ ├── com_android_support_support_core_utils_26_1_0.xml │ │ │ ├── com_android_support_support_fragment_26_1_0.xml │ │ │ ├── com_android_support_support_media_compat_26_1_0.xml │ │ │ ├── com_android_support_support_v4_26_1_0.xml │ │ │ ├── com_android_support_support_vector_drawable_26_1_0.xml │ │ │ ├── com_android_support_test_espresso_espresso_core_3_0_1.xml │ │ │ ├── com_android_support_test_espresso_espresso_idling_resource_3_0_1.xml │ │ │ ├── com_android_support_test_rules_1_0_1.xml │ │ │ ├── com_android_support_test_runner_1_0_1.xml │ │ │ ├── com_google_code_findbugs_jsr305_2_0_1_jar.xml │ │ │ ├── com_squareup_javawriter_2_1_1_jar.xml │ │ │ ├── javax_inject_javax_inject_1_jar.xml │ │ │ ├── junit_junit_4_12_jar.xml │ │ │ ├── net_sf_kxml_kxml2_2_3_0_jar.xml │ │ │ ├── org_hamcrest_hamcrest_core_1_3_jar.xml │ │ │ ├── org_hamcrest_hamcrest_integration_1_3_jar.xml │ │ │ └── org_hamcrest_hamcrest_library_1_3_jar.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── runConfigurations.xml │ │ └── workspace.xml │ │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── example │ │ │ └── ted │ │ │ └── fragments2 │ │ │ ├── FragmentA.java │ │ │ └── MainActivity.java │ │ └── res │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ ├── activity_main.xml │ │ └── fragment_a.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml └── ch8 │ └── Async │ ├── .gradle │ ├── 4.1 │ │ ├── fileChanges │ │ │ └── last-build.bin │ │ ├── fileContent │ │ │ └── fileContent.lock │ │ ├── fileHashes │ │ │ ├── fileHashes.bin │ │ │ ├── fileHashes.lock │ │ │ └── resourceHashesCache.bin │ │ ├── javaCompile │ │ │ ├── classAnalysis.bin │ │ │ ├── jarAnalysis.bin │ │ │ ├── javaCompile.lock │ │ │ ├── taskHistory.bin │ │ │ └── taskJars.bin │ │ └── taskHistory │ │ │ ├── fileSnapshots.bin │ │ │ ├── taskHistory.bin │ │ │ └── taskHistory.lock │ └── buildOutputCleanup │ │ ├── built.bin │ │ ├── cache.properties │ │ └── cache.properties.lock │ ├── .idea │ ├── encodings.xml │ ├── gradle.xml │ ├── libraries │ │ ├── 1_common_1_0_0.xml │ │ ├── animated_vector_drawable_26_1_0.xml │ │ ├── appcompat_v7_26_1_0.xml │ │ ├── common_1_0_0.xml │ │ ├── constraint_layout_1_0_2.xml │ │ ├── constraint_layout_solver_1_0_2.xml │ │ ├── espresso_core_3_0_1.xml │ │ ├── espresso_idling_resource_3_0_1.xml │ │ ├── hamcrest_core_1_3.xml │ │ ├── hamcrest_integration_1_3.xml │ │ ├── hamcrest_library_1_3.xml │ │ ├── javawriter_2_1_1.xml │ │ ├── javax_inject_1.xml │ │ ├── jsr305_2_0_1.xml │ │ ├── junit_4_12.xml │ │ ├── kxml2_2_3_0.xml │ │ ├── rules_1_0_1.xml │ │ ├── runner_1_0_1.xml │ │ ├── runtime_1_0_0.xml │ │ ├── support_annotations_26_1_0.xml │ │ ├── support_compat_26_1_0.xml │ │ ├── support_core_ui_26_1_0.xml │ │ ├── support_core_utils_26_1_0.xml │ │ ├── support_fragment_26_1_0.xml │ │ ├── support_media_compat_26_1_0.xml │ │ ├── support_v4_26_1_0.xml │ │ └── support_vector_drawable_26_1_0.xml │ ├── misc.xml │ ├── modules.xml │ ├── runConfigurations.xml │ └── workspace.xml │ └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ ├── Worker.java │ └── com │ │ └── example │ │ └── ted │ │ └── async │ │ └── MainActivity.java │ └── res │ ├── drawable │ └── ic_launcher_background.xml │ ├── layout │ └── activity_main.xml │ ├── mipmap-anydpi-v26 │ ├── ic_launcher.xml │ └── ic_launcher_round.xml │ ├── mipmap-hdpi │ ├── ic_launcher.png │ ├── ic_launcher_foreground.png │ └── ic_launcher_round.png │ ├── mipmap-mdpi │ ├── ic_launcher.png │ ├── ic_launcher_foreground.png │ └── ic_launcher_round.png │ ├── mipmap-xhdpi │ ├── ic_launcher.png │ ├── ic_launcher_foreground.png │ └── ic_launcher_round.png │ ├── mipmap-xxhdpi │ ├── ic_launcher.png │ ├── ic_launcher_foreground.png │ └── ic_launcher_round.png │ ├── mipmap-xxxhdpi │ ├── ic_launcher.png │ ├── ic_launcher_foreground.png │ └── ic_launcher_round.png │ └── values │ ├── colors.xml │ ├── strings.xml │ └── styles.xml ├── LICENSE.txt ├── README.md └── contributing.md /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .idea 3 | *.class 4 | 5 | 6 | -------------------------------------------------------------------------------- /9781484231555.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/9781484231555.jpg -------------------------------------------------------------------------------- /AS3Source codes/ch10/InternalStorage/.gradle/4.1/fileChanges/last-build.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AS3Source codes/ch10/InternalStorage/.gradle/4.1/fileContent/fileContent.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/InternalStorage/.gradle/4.1/fileContent/fileContent.lock -------------------------------------------------------------------------------- /AS3Source codes/ch10/InternalStorage/.gradle/4.1/fileHashes/fileHashes.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/InternalStorage/.gradle/4.1/fileHashes/fileHashes.bin -------------------------------------------------------------------------------- /AS3Source codes/ch10/InternalStorage/.gradle/4.1/fileHashes/fileHashes.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/InternalStorage/.gradle/4.1/fileHashes/fileHashes.lock -------------------------------------------------------------------------------- /AS3Source codes/ch10/InternalStorage/.gradle/4.1/fileHashes/resourceHashesCache.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/InternalStorage/.gradle/4.1/fileHashes/resourceHashesCache.bin -------------------------------------------------------------------------------- /AS3Source codes/ch10/InternalStorage/.gradle/4.1/javaCompile/classAnalysis.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/InternalStorage/.gradle/4.1/javaCompile/classAnalysis.bin -------------------------------------------------------------------------------- /AS3Source codes/ch10/InternalStorage/.gradle/4.1/javaCompile/jarAnalysis.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/InternalStorage/.gradle/4.1/javaCompile/jarAnalysis.bin -------------------------------------------------------------------------------- /AS3Source codes/ch10/InternalStorage/.gradle/4.1/javaCompile/javaCompile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/InternalStorage/.gradle/4.1/javaCompile/javaCompile.lock -------------------------------------------------------------------------------- /AS3Source codes/ch10/InternalStorage/.gradle/4.1/javaCompile/taskHistory.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/InternalStorage/.gradle/4.1/javaCompile/taskHistory.bin -------------------------------------------------------------------------------- /AS3Source codes/ch10/InternalStorage/.gradle/4.1/javaCompile/taskJars.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/InternalStorage/.gradle/4.1/javaCompile/taskJars.bin -------------------------------------------------------------------------------- /AS3Source codes/ch10/InternalStorage/.gradle/4.1/taskHistory/fileSnapshots.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/InternalStorage/.gradle/4.1/taskHistory/fileSnapshots.bin -------------------------------------------------------------------------------- /AS3Source codes/ch10/InternalStorage/.gradle/4.1/taskHistory/taskHistory.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/InternalStorage/.gradle/4.1/taskHistory/taskHistory.bin -------------------------------------------------------------------------------- /AS3Source codes/ch10/InternalStorage/.gradle/4.1/taskHistory/taskHistory.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/InternalStorage/.gradle/4.1/taskHistory/taskHistory.lock -------------------------------------------------------------------------------- /AS3Source codes/ch10/InternalStorage/.gradle/buildOutputCleanup/built.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/InternalStorage/.gradle/buildOutputCleanup/built.bin -------------------------------------------------------------------------------- /AS3Source codes/ch10/InternalStorage/.gradle/buildOutputCleanup/cache.properties: -------------------------------------------------------------------------------- 1 | #Tue Oct 17 15:15:47 PHT 2017 2 | gradle.version=4.1 3 | -------------------------------------------------------------------------------- /AS3Source codes/ch10/InternalStorage/.gradle/buildOutputCleanup/cache.properties.lock: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /AS3Source codes/ch10/InternalStorage/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /AS3Source codes/ch10/InternalStorage/.idea/libraries/constraint_layout_solver_1_0_2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /AS3Source codes/ch10/InternalStorage/.idea/libraries/jsr305_2_0_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /AS3Source codes/ch10/InternalStorage/.idea/libraries/kxml2_2_3_0.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /AS3Source codes/ch10/InternalStorage/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /AS3Source codes/ch10/InternalStorage/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /AS3Source codes/ch10/InternalStorage/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /AS3Source codes/ch10/InternalStorage/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/InternalStorage/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /AS3Source codes/ch10/InternalStorage/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/InternalStorage/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /AS3Source codes/ch10/InternalStorage/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/InternalStorage/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AS3Source codes/ch10/InternalStorage/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/InternalStorage/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /AS3Source codes/ch10/InternalStorage/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/InternalStorage/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /AS3Source codes/ch10/InternalStorage/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/InternalStorage/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AS3Source codes/ch10/InternalStorage/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/InternalStorage/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AS3Source codes/ch10/InternalStorage/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/InternalStorage/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /AS3Source codes/ch10/InternalStorage/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/InternalStorage/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AS3Source codes/ch10/InternalStorage/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/InternalStorage/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AS3Source codes/ch10/InternalStorage/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/InternalStorage/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /AS3Source codes/ch10/InternalStorage/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/InternalStorage/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AS3Source codes/ch10/InternalStorage/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/InternalStorage/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AS3Source codes/ch10/InternalStorage/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/InternalStorage/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /AS3Source codes/ch10/InternalStorage/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/InternalStorage/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AS3Source codes/ch10/InternalStorage/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /AS3Source codes/ch10/InternalStorage/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | InternalStorage 3 | 4 | -------------------------------------------------------------------------------- /AS3Source codes/ch10/SharedPref/.gradle/4.1/fileChanges/last-build.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AS3Source codes/ch10/SharedPref/.gradle/4.1/fileContent/fileContent.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/SharedPref/.gradle/4.1/fileContent/fileContent.lock -------------------------------------------------------------------------------- /AS3Source codes/ch10/SharedPref/.gradle/4.1/fileHashes/fileHashes.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/SharedPref/.gradle/4.1/fileHashes/fileHashes.bin -------------------------------------------------------------------------------- /AS3Source codes/ch10/SharedPref/.gradle/4.1/fileHashes/fileHashes.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/SharedPref/.gradle/4.1/fileHashes/fileHashes.lock -------------------------------------------------------------------------------- /AS3Source codes/ch10/SharedPref/.gradle/4.1/fileHashes/resourceHashesCache.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/SharedPref/.gradle/4.1/fileHashes/resourceHashesCache.bin -------------------------------------------------------------------------------- /AS3Source codes/ch10/SharedPref/.gradle/4.1/javaCompile/classAnalysis.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/SharedPref/.gradle/4.1/javaCompile/classAnalysis.bin -------------------------------------------------------------------------------- /AS3Source codes/ch10/SharedPref/.gradle/4.1/javaCompile/jarAnalysis.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/SharedPref/.gradle/4.1/javaCompile/jarAnalysis.bin -------------------------------------------------------------------------------- /AS3Source codes/ch10/SharedPref/.gradle/4.1/javaCompile/javaCompile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/SharedPref/.gradle/4.1/javaCompile/javaCompile.lock -------------------------------------------------------------------------------- /AS3Source codes/ch10/SharedPref/.gradle/4.1/javaCompile/taskHistory.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/SharedPref/.gradle/4.1/javaCompile/taskHistory.bin -------------------------------------------------------------------------------- /AS3Source codes/ch10/SharedPref/.gradle/4.1/javaCompile/taskJars.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/SharedPref/.gradle/4.1/javaCompile/taskJars.bin -------------------------------------------------------------------------------- /AS3Source codes/ch10/SharedPref/.gradle/4.1/taskHistory/fileSnapshots.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/SharedPref/.gradle/4.1/taskHistory/fileSnapshots.bin -------------------------------------------------------------------------------- /AS3Source codes/ch10/SharedPref/.gradle/4.1/taskHistory/taskHistory.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/SharedPref/.gradle/4.1/taskHistory/taskHistory.bin -------------------------------------------------------------------------------- /AS3Source codes/ch10/SharedPref/.gradle/4.1/taskHistory/taskHistory.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/SharedPref/.gradle/4.1/taskHistory/taskHistory.lock -------------------------------------------------------------------------------- /AS3Source codes/ch10/SharedPref/.gradle/buildOutputCleanup/built.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/SharedPref/.gradle/buildOutputCleanup/built.bin -------------------------------------------------------------------------------- /AS3Source codes/ch10/SharedPref/.gradle/buildOutputCleanup/cache.properties: -------------------------------------------------------------------------------- 1 | #Tue Oct 10 15:45:45 PHT 2017 2 | gradle.version=4.1 3 | -------------------------------------------------------------------------------- /AS3Source codes/ch10/SharedPref/.gradle/buildOutputCleanup/cache.properties.lock: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /AS3Source codes/ch10/SharedPref/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /AS3Source codes/ch10/SharedPref/.idea/libraries/net_sf_kxml_kxml2_2_3_0_jar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /AS3Source codes/ch10/SharedPref/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /AS3Source codes/ch10/SharedPref/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /AS3Source codes/ch10/SharedPref/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /AS3Source codes/ch10/SharedPref/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/SharedPref/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /AS3Source codes/ch10/SharedPref/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/SharedPref/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /AS3Source codes/ch10/SharedPref/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/SharedPref/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AS3Source codes/ch10/SharedPref/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/SharedPref/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /AS3Source codes/ch10/SharedPref/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/SharedPref/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /AS3Source codes/ch10/SharedPref/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/SharedPref/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AS3Source codes/ch10/SharedPref/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/SharedPref/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AS3Source codes/ch10/SharedPref/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/SharedPref/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /AS3Source codes/ch10/SharedPref/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/SharedPref/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AS3Source codes/ch10/SharedPref/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/SharedPref/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AS3Source codes/ch10/SharedPref/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/SharedPref/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /AS3Source codes/ch10/SharedPref/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/SharedPref/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AS3Source codes/ch10/SharedPref/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/SharedPref/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AS3Source codes/ch10/SharedPref/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/SharedPref/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /AS3Source codes/ch10/SharedPref/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/SharedPref/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AS3Source codes/ch10/SharedPref/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /AS3Source codes/ch10/SharedPref/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | SharedPref 3 | 4 | -------------------------------------------------------------------------------- /AS3Source codes/ch10/SharedPref2/.gradle/4.1/fileChanges/last-build.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AS3Source codes/ch10/SharedPref2/.gradle/4.1/fileContent/fileContent.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/SharedPref2/.gradle/4.1/fileContent/fileContent.lock -------------------------------------------------------------------------------- /AS3Source codes/ch10/SharedPref2/.gradle/4.1/fileHashes/fileHashes.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/SharedPref2/.gradle/4.1/fileHashes/fileHashes.bin -------------------------------------------------------------------------------- /AS3Source codes/ch10/SharedPref2/.gradle/4.1/fileHashes/fileHashes.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/SharedPref2/.gradle/4.1/fileHashes/fileHashes.lock -------------------------------------------------------------------------------- /AS3Source codes/ch10/SharedPref2/.gradle/4.1/fileHashes/resourceHashesCache.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/SharedPref2/.gradle/4.1/fileHashes/resourceHashesCache.bin -------------------------------------------------------------------------------- /AS3Source codes/ch10/SharedPref2/.gradle/4.1/javaCompile/classAnalysis.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/SharedPref2/.gradle/4.1/javaCompile/classAnalysis.bin -------------------------------------------------------------------------------- /AS3Source codes/ch10/SharedPref2/.gradle/4.1/javaCompile/jarAnalysis.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/SharedPref2/.gradle/4.1/javaCompile/jarAnalysis.bin -------------------------------------------------------------------------------- /AS3Source codes/ch10/SharedPref2/.gradle/4.1/javaCompile/javaCompile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/SharedPref2/.gradle/4.1/javaCompile/javaCompile.lock -------------------------------------------------------------------------------- /AS3Source codes/ch10/SharedPref2/.gradle/4.1/javaCompile/taskHistory.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/SharedPref2/.gradle/4.1/javaCompile/taskHistory.bin -------------------------------------------------------------------------------- /AS3Source codes/ch10/SharedPref2/.gradle/4.1/javaCompile/taskJars.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/SharedPref2/.gradle/4.1/javaCompile/taskJars.bin -------------------------------------------------------------------------------- /AS3Source codes/ch10/SharedPref2/.gradle/4.1/taskHistory/fileSnapshots.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/SharedPref2/.gradle/4.1/taskHistory/fileSnapshots.bin -------------------------------------------------------------------------------- /AS3Source codes/ch10/SharedPref2/.gradle/4.1/taskHistory/taskHistory.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/SharedPref2/.gradle/4.1/taskHistory/taskHistory.bin -------------------------------------------------------------------------------- /AS3Source codes/ch10/SharedPref2/.gradle/4.1/taskHistory/taskHistory.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/SharedPref2/.gradle/4.1/taskHistory/taskHistory.lock -------------------------------------------------------------------------------- /AS3Source codes/ch10/SharedPref2/.gradle/buildOutputCleanup/built.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/SharedPref2/.gradle/buildOutputCleanup/built.bin -------------------------------------------------------------------------------- /AS3Source codes/ch10/SharedPref2/.gradle/buildOutputCleanup/cache.properties: -------------------------------------------------------------------------------- 1 | #Tue Oct 10 15:45:45 PHT 2017 2 | gradle.version=4.1 3 | -------------------------------------------------------------------------------- /AS3Source codes/ch10/SharedPref2/.gradle/buildOutputCleanup/cache.properties.lock: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /AS3Source codes/ch10/SharedPref2/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /AS3Source codes/ch10/SharedPref2/.idea/libraries/constraint_layout_solver_1_0_2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /AS3Source codes/ch10/SharedPref2/.idea/libraries/jsr305_2_0_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /AS3Source codes/ch10/SharedPref2/.idea/libraries/kxml2_2_3_0.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /AS3Source codes/ch10/SharedPref2/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /AS3Source codes/ch10/SharedPref2/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /AS3Source codes/ch10/SharedPref2/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /AS3Source codes/ch10/SharedPref2/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/SharedPref2/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /AS3Source codes/ch10/SharedPref2/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/SharedPref2/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /AS3Source codes/ch10/SharedPref2/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/SharedPref2/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AS3Source codes/ch10/SharedPref2/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/SharedPref2/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /AS3Source codes/ch10/SharedPref2/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/SharedPref2/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /AS3Source codes/ch10/SharedPref2/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/SharedPref2/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AS3Source codes/ch10/SharedPref2/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/SharedPref2/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AS3Source codes/ch10/SharedPref2/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/SharedPref2/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /AS3Source codes/ch10/SharedPref2/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/SharedPref2/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AS3Source codes/ch10/SharedPref2/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/SharedPref2/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AS3Source codes/ch10/SharedPref2/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/SharedPref2/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /AS3Source codes/ch10/SharedPref2/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/SharedPref2/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AS3Source codes/ch10/SharedPref2/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/SharedPref2/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AS3Source codes/ch10/SharedPref2/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/SharedPref2/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /AS3Source codes/ch10/SharedPref2/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch10/SharedPref2/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AS3Source codes/ch10/SharedPref2/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /AS3Source codes/ch10/SharedPref2/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | SharedPref 3 | 4 | -------------------------------------------------------------------------------- /AS3Source codes/ch3/MyApplication/.gradle/2.10/taskArtifacts/cache.properties: -------------------------------------------------------------------------------- 1 | #Fri Jul 01 12:03:50 PHT 2016 2 | -------------------------------------------------------------------------------- /AS3Source codes/ch3/MyApplication/.gradle/2.10/taskArtifacts/cache.properties.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch3/MyApplication/.gradle/2.10/taskArtifacts/cache.properties.lock -------------------------------------------------------------------------------- /AS3Source codes/ch3/MyApplication/.gradle/2.10/taskArtifacts/fileHashes.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch3/MyApplication/.gradle/2.10/taskArtifacts/fileHashes.bin -------------------------------------------------------------------------------- /AS3Source codes/ch3/MyApplication/.gradle/2.10/taskArtifacts/fileSnapshots.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch3/MyApplication/.gradle/2.10/taskArtifacts/fileSnapshots.bin -------------------------------------------------------------------------------- /AS3Source codes/ch3/MyApplication/.gradle/2.10/taskArtifacts/outputFileStates.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch3/MyApplication/.gradle/2.10/taskArtifacts/outputFileStates.bin -------------------------------------------------------------------------------- /AS3Source codes/ch3/MyApplication/.gradle/2.10/taskArtifacts/taskArtifacts.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch3/MyApplication/.gradle/2.10/taskArtifacts/taskArtifacts.bin -------------------------------------------------------------------------------- /AS3Source codes/ch3/MyApplication/.gradle/2.10/tasks/_app_compileDebugJavaWithJavac/localClassSetAnalysis/localClassSetAnalysis.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch3/MyApplication/.gradle/2.10/tasks/_app_compileDebugJavaWithJavac/localClassSetAnalysis/localClassSetAnalysis.bin -------------------------------------------------------------------------------- /AS3Source codes/ch3/MyApplication/.gradle/2.10/tasks/_app_compileDebugJavaWithJavac/localClassSetAnalysis/localClassSetAnalysis.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch3/MyApplication/.gradle/2.10/tasks/_app_compileDebugJavaWithJavac/localClassSetAnalysis/localClassSetAnalysis.lock -------------------------------------------------------------------------------- /AS3Source codes/ch3/MyApplication/.gradle/2.10/tasks/_app_compileDebugJavaWithJavac/localJarClasspathSnapshot/localJarClasspathSnapshot.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch3/MyApplication/.gradle/2.10/tasks/_app_compileDebugJavaWithJavac/localJarClasspathSnapshot/localJarClasspathSnapshot.bin -------------------------------------------------------------------------------- /AS3Source codes/ch3/MyApplication/.gradle/2.10/tasks/_app_compileDebugJavaWithJavac/localJarClasspathSnapshot/localJarClasspathSnapshot.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch3/MyApplication/.gradle/2.10/tasks/_app_compileDebugJavaWithJavac/localJarClasspathSnapshot/localJarClasspathSnapshot.lock -------------------------------------------------------------------------------- /AS3Source codes/ch3/MyApplication/.idea/.name: -------------------------------------------------------------------------------- 1 | My Application -------------------------------------------------------------------------------- /AS3Source codes/ch3/MyApplication/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /AS3Source codes/ch3/MyApplication/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /AS3Source codes/ch3/MyApplication/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /AS3Source codes/ch4/Hello/.gradle/4.1-rc-1/fileChanges/last-build.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AS3Source codes/ch4/Hello/.gradle/4.1-rc-1/fileContent/fileContent.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch4/Hello/.gradle/4.1-rc-1/fileContent/fileContent.lock -------------------------------------------------------------------------------- /AS3Source codes/ch4/Hello/.gradle/4.1-rc-1/fileHashes/fileHashes.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch4/Hello/.gradle/4.1-rc-1/fileHashes/fileHashes.bin -------------------------------------------------------------------------------- /AS3Source codes/ch4/Hello/.gradle/4.1-rc-1/fileHashes/fileHashes.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch4/Hello/.gradle/4.1-rc-1/fileHashes/fileHashes.lock -------------------------------------------------------------------------------- /AS3Source codes/ch4/Hello/.gradle/4.1-rc-1/fileHashes/resourceHashesCache.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch4/Hello/.gradle/4.1-rc-1/fileHashes/resourceHashesCache.bin -------------------------------------------------------------------------------- /AS3Source codes/ch4/Hello/.gradle/4.1-rc-1/javaCompile/classAnalysis.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch4/Hello/.gradle/4.1-rc-1/javaCompile/classAnalysis.bin -------------------------------------------------------------------------------- /AS3Source codes/ch4/Hello/.gradle/4.1-rc-1/javaCompile/jarAnalysis.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch4/Hello/.gradle/4.1-rc-1/javaCompile/jarAnalysis.bin -------------------------------------------------------------------------------- /AS3Source codes/ch4/Hello/.gradle/4.1-rc-1/javaCompile/javaCompile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch4/Hello/.gradle/4.1-rc-1/javaCompile/javaCompile.lock -------------------------------------------------------------------------------- /AS3Source codes/ch4/Hello/.gradle/4.1-rc-1/javaCompile/taskHistory.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch4/Hello/.gradle/4.1-rc-1/javaCompile/taskHistory.bin -------------------------------------------------------------------------------- /AS3Source codes/ch4/Hello/.gradle/4.1-rc-1/javaCompile/taskJars.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch4/Hello/.gradle/4.1-rc-1/javaCompile/taskJars.bin -------------------------------------------------------------------------------- /AS3Source codes/ch4/Hello/.gradle/4.1-rc-1/taskHistory/fileSnapshots.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch4/Hello/.gradle/4.1-rc-1/taskHistory/fileSnapshots.bin -------------------------------------------------------------------------------- /AS3Source codes/ch4/Hello/.gradle/4.1-rc-1/taskHistory/taskHistory.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch4/Hello/.gradle/4.1-rc-1/taskHistory/taskHistory.bin -------------------------------------------------------------------------------- /AS3Source codes/ch4/Hello/.gradle/4.1-rc-1/taskHistory/taskHistory.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch4/Hello/.gradle/4.1-rc-1/taskHistory/taskHistory.lock -------------------------------------------------------------------------------- /AS3Source codes/ch4/Hello/.gradle/4.1/fileChanges/last-build.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AS3Source codes/ch4/Hello/.gradle/4.1/fileHashes/fileHashes.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch4/Hello/.gradle/4.1/fileHashes/fileHashes.bin -------------------------------------------------------------------------------- /AS3Source codes/ch4/Hello/.gradle/4.1/fileHashes/fileHashes.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch4/Hello/.gradle/4.1/fileHashes/fileHashes.lock -------------------------------------------------------------------------------- /AS3Source codes/ch4/Hello/.gradle/4.1/fileHashes/resourceHashesCache.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch4/Hello/.gradle/4.1/fileHashes/resourceHashesCache.bin -------------------------------------------------------------------------------- /AS3Source codes/ch4/Hello/.gradle/4.1/taskHistory/fileSnapshots.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch4/Hello/.gradle/4.1/taskHistory/fileSnapshots.bin -------------------------------------------------------------------------------- /AS3Source codes/ch4/Hello/.gradle/4.1/taskHistory/taskHistory.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch4/Hello/.gradle/4.1/taskHistory/taskHistory.bin -------------------------------------------------------------------------------- /AS3Source codes/ch4/Hello/.gradle/4.1/taskHistory/taskHistory.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch4/Hello/.gradle/4.1/taskHistory/taskHistory.lock -------------------------------------------------------------------------------- /AS3Source codes/ch4/Hello/.gradle/buildOutputCleanup/built.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch4/Hello/.gradle/buildOutputCleanup/built.bin -------------------------------------------------------------------------------- /AS3Source codes/ch4/Hello/.gradle/buildOutputCleanup/cache.properties: -------------------------------------------------------------------------------- 1 | #Fri Dec 22 13:35:50 PHT 2017 2 | gradle.version=4.1 3 | -------------------------------------------------------------------------------- /AS3Source codes/ch4/Hello/.gradle/buildOutputCleanup/cache.properties.lock: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /AS3Source codes/ch4/Hello/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /AS3Source codes/ch4/Hello/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /AS3Source codes/ch4/Hello/.idea/libraries/com_google_code_findbugs_jsr305_2_0_1_jar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /AS3Source codes/ch4/Hello/.idea/libraries/net_sf_kxml_kxml2_2_3_0_jar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /AS3Source codes/ch4/Hello/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /AS3Source codes/ch5/EventHandling1/.gradle/4.1/fileChanges/last-build.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AS3Source codes/ch5/EventHandling1/.gradle/4.1/fileContent/fileContent.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch5/EventHandling1/.gradle/4.1/fileContent/fileContent.lock -------------------------------------------------------------------------------- /AS3Source codes/ch5/EventHandling1/.gradle/4.1/fileHashes/fileHashes.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch5/EventHandling1/.gradle/4.1/fileHashes/fileHashes.bin -------------------------------------------------------------------------------- /AS3Source codes/ch5/EventHandling1/.gradle/4.1/fileHashes/fileHashes.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch5/EventHandling1/.gradle/4.1/fileHashes/fileHashes.lock -------------------------------------------------------------------------------- /AS3Source codes/ch5/EventHandling1/.gradle/4.1/fileHashes/resourceHashesCache.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch5/EventHandling1/.gradle/4.1/fileHashes/resourceHashesCache.bin -------------------------------------------------------------------------------- /AS3Source codes/ch5/EventHandling1/.gradle/4.1/javaCompile/classAnalysis.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch5/EventHandling1/.gradle/4.1/javaCompile/classAnalysis.bin -------------------------------------------------------------------------------- /AS3Source codes/ch5/EventHandling1/.gradle/4.1/javaCompile/jarAnalysis.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch5/EventHandling1/.gradle/4.1/javaCompile/jarAnalysis.bin -------------------------------------------------------------------------------- /AS3Source codes/ch5/EventHandling1/.gradle/4.1/javaCompile/javaCompile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch5/EventHandling1/.gradle/4.1/javaCompile/javaCompile.lock -------------------------------------------------------------------------------- /AS3Source codes/ch5/EventHandling1/.gradle/4.1/javaCompile/taskHistory.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch5/EventHandling1/.gradle/4.1/javaCompile/taskHistory.bin -------------------------------------------------------------------------------- /AS3Source codes/ch5/EventHandling1/.gradle/4.1/javaCompile/taskJars.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch5/EventHandling1/.gradle/4.1/javaCompile/taskJars.bin -------------------------------------------------------------------------------- /AS3Source codes/ch5/EventHandling1/.gradle/4.1/taskHistory/fileSnapshots.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch5/EventHandling1/.gradle/4.1/taskHistory/fileSnapshots.bin -------------------------------------------------------------------------------- /AS3Source codes/ch5/EventHandling1/.gradle/4.1/taskHistory/taskHistory.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch5/EventHandling1/.gradle/4.1/taskHistory/taskHistory.bin -------------------------------------------------------------------------------- /AS3Source codes/ch5/EventHandling1/.gradle/4.1/taskHistory/taskHistory.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch5/EventHandling1/.gradle/4.1/taskHistory/taskHistory.lock -------------------------------------------------------------------------------- /AS3Source codes/ch5/EventHandling1/.gradle/4.4-20171031235950+0000/fileChanges/last-build.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AS3Source codes/ch5/EventHandling1/.gradle/4.4-20171031235950+0000/fileContent/fileContent.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch5/EventHandling1/.gradle/4.4-20171031235950+0000/fileContent/fileContent.lock -------------------------------------------------------------------------------- /AS3Source codes/ch5/EventHandling1/.gradle/4.4-20171031235950+0000/fileHashes/fileHashes.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch5/EventHandling1/.gradle/4.4-20171031235950+0000/fileHashes/fileHashes.bin -------------------------------------------------------------------------------- /AS3Source codes/ch5/EventHandling1/.gradle/4.4-20171031235950+0000/fileHashes/fileHashes.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch5/EventHandling1/.gradle/4.4-20171031235950+0000/fileHashes/fileHashes.lock -------------------------------------------------------------------------------- /AS3Source codes/ch5/EventHandling1/.gradle/4.4-20171031235950+0000/fileHashes/resourceHashesCache.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch5/EventHandling1/.gradle/4.4-20171031235950+0000/fileHashes/resourceHashesCache.bin -------------------------------------------------------------------------------- /AS3Source codes/ch5/EventHandling1/.gradle/4.4-20171031235950+0000/javaCompile/classAnalysis.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch5/EventHandling1/.gradle/4.4-20171031235950+0000/javaCompile/classAnalysis.bin -------------------------------------------------------------------------------- /AS3Source codes/ch5/EventHandling1/.gradle/4.4-20171031235950+0000/javaCompile/jarAnalysis.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch5/EventHandling1/.gradle/4.4-20171031235950+0000/javaCompile/jarAnalysis.bin -------------------------------------------------------------------------------- /AS3Source codes/ch5/EventHandling1/.gradle/4.4-20171031235950+0000/javaCompile/javaCompile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch5/EventHandling1/.gradle/4.4-20171031235950+0000/javaCompile/javaCompile.lock -------------------------------------------------------------------------------- /AS3Source codes/ch5/EventHandling1/.gradle/4.4-20171031235950+0000/javaCompile/taskHistory.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch5/EventHandling1/.gradle/4.4-20171031235950+0000/javaCompile/taskHistory.bin -------------------------------------------------------------------------------- /AS3Source codes/ch5/EventHandling1/.gradle/4.4-20171031235950+0000/javaCompile/taskJars.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch5/EventHandling1/.gradle/4.4-20171031235950+0000/javaCompile/taskJars.bin -------------------------------------------------------------------------------- /AS3Source codes/ch5/EventHandling1/.gradle/4.4-20171031235950+0000/taskHistory/taskHistory.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch5/EventHandling1/.gradle/4.4-20171031235950+0000/taskHistory/taskHistory.bin -------------------------------------------------------------------------------- /AS3Source codes/ch5/EventHandling1/.gradle/4.4-20171031235950+0000/taskHistory/taskHistory.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch5/EventHandling1/.gradle/4.4-20171031235950+0000/taskHistory/taskHistory.lock -------------------------------------------------------------------------------- /AS3Source codes/ch5/EventHandling1/.gradle/buildOutputCleanup/buildOutputCleanup.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch5/EventHandling1/.gradle/buildOutputCleanup/buildOutputCleanup.lock -------------------------------------------------------------------------------- /AS3Source codes/ch5/EventHandling1/.gradle/buildOutputCleanup/cache.properties: -------------------------------------------------------------------------------- 1 | #Fri Dec 15 15:43:37 PHT 2017 2 | gradle.version=4.4-20171031235950+0000 3 | -------------------------------------------------------------------------------- /AS3Source codes/ch5/EventHandling1/.gradle/buildOutputCleanup/outputFiles.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch5/EventHandling1/.gradle/buildOutputCleanup/outputFiles.bin -------------------------------------------------------------------------------- /AS3Source codes/ch5/EventHandling1/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch5/EventHandling1/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /AS3Source codes/ch5/EventHandling1/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /AS3Source codes/ch5/EventHandling1/.idea/libraries/net_sf_kxml_kxml2_2_3_0_jar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /AS3Source codes/ch5/EventHandling1/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /AS3Source codes/ch5/Hello/.gradle/4.1-rc-1/fileChanges/last-build.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AS3Source codes/ch5/Hello/.gradle/4.1-rc-1/fileContent/fileContent.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch5/Hello/.gradle/4.1-rc-1/fileContent/fileContent.lock -------------------------------------------------------------------------------- /AS3Source codes/ch5/Hello/.gradle/4.1-rc-1/fileHashes/fileHashes.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch5/Hello/.gradle/4.1-rc-1/fileHashes/fileHashes.bin -------------------------------------------------------------------------------- /AS3Source codes/ch5/Hello/.gradle/4.1-rc-1/fileHashes/fileHashes.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch5/Hello/.gradle/4.1-rc-1/fileHashes/fileHashes.lock -------------------------------------------------------------------------------- /AS3Source codes/ch5/Hello/.gradle/4.1-rc-1/fileHashes/resourceHashesCache.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch5/Hello/.gradle/4.1-rc-1/fileHashes/resourceHashesCache.bin -------------------------------------------------------------------------------- /AS3Source codes/ch5/Hello/.gradle/4.1-rc-1/javaCompile/classAnalysis.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch5/Hello/.gradle/4.1-rc-1/javaCompile/classAnalysis.bin -------------------------------------------------------------------------------- /AS3Source codes/ch5/Hello/.gradle/4.1-rc-1/javaCompile/jarAnalysis.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch5/Hello/.gradle/4.1-rc-1/javaCompile/jarAnalysis.bin -------------------------------------------------------------------------------- /AS3Source codes/ch5/Hello/.gradle/4.1-rc-1/javaCompile/javaCompile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch5/Hello/.gradle/4.1-rc-1/javaCompile/javaCompile.lock -------------------------------------------------------------------------------- /AS3Source codes/ch5/Hello/.gradle/4.1-rc-1/javaCompile/taskHistory.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch5/Hello/.gradle/4.1-rc-1/javaCompile/taskHistory.bin -------------------------------------------------------------------------------- /AS3Source codes/ch5/Hello/.gradle/4.1-rc-1/javaCompile/taskJars.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch5/Hello/.gradle/4.1-rc-1/javaCompile/taskJars.bin -------------------------------------------------------------------------------- /AS3Source codes/ch5/Hello/.gradle/4.1-rc-1/taskHistory/fileSnapshots.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch5/Hello/.gradle/4.1-rc-1/taskHistory/fileSnapshots.bin -------------------------------------------------------------------------------- /AS3Source codes/ch5/Hello/.gradle/4.1-rc-1/taskHistory/taskHistory.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch5/Hello/.gradle/4.1-rc-1/taskHistory/taskHistory.bin -------------------------------------------------------------------------------- /AS3Source codes/ch5/Hello/.gradle/4.1-rc-1/taskHistory/taskHistory.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch5/Hello/.gradle/4.1-rc-1/taskHistory/taskHistory.lock -------------------------------------------------------------------------------- /AS3Source codes/ch5/Hello/.gradle/4.1/fileChanges/last-build.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AS3Source codes/ch5/Hello/.gradle/4.1/fileHashes/fileHashes.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch5/Hello/.gradle/4.1/fileHashes/fileHashes.bin -------------------------------------------------------------------------------- /AS3Source codes/ch5/Hello/.gradle/4.1/fileHashes/fileHashes.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch5/Hello/.gradle/4.1/fileHashes/fileHashes.lock -------------------------------------------------------------------------------- /AS3Source codes/ch5/Hello/.gradle/4.1/fileHashes/resourceHashesCache.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch5/Hello/.gradle/4.1/fileHashes/resourceHashesCache.bin -------------------------------------------------------------------------------- /AS3Source codes/ch5/Hello/.gradle/4.1/taskHistory/fileSnapshots.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch5/Hello/.gradle/4.1/taskHistory/fileSnapshots.bin -------------------------------------------------------------------------------- /AS3Source codes/ch5/Hello/.gradle/4.1/taskHistory/taskHistory.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch5/Hello/.gradle/4.1/taskHistory/taskHistory.bin -------------------------------------------------------------------------------- /AS3Source codes/ch5/Hello/.gradle/4.1/taskHistory/taskHistory.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch5/Hello/.gradle/4.1/taskHistory/taskHistory.lock -------------------------------------------------------------------------------- /AS3Source codes/ch5/Hello/.gradle/buildOutputCleanup/built.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch5/Hello/.gradle/buildOutputCleanup/built.bin -------------------------------------------------------------------------------- /AS3Source codes/ch5/Hello/.gradle/buildOutputCleanup/cache.properties: -------------------------------------------------------------------------------- 1 | #Fri Dec 22 13:35:50 PHT 2017 2 | gradle.version=4.1 3 | -------------------------------------------------------------------------------- /AS3Source codes/ch5/Hello/.gradle/buildOutputCleanup/cache.properties.lock: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /AS3Source codes/ch5/Hello/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /AS3Source codes/ch5/Hello/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /AS3Source codes/ch5/Hello/.idea/libraries/com_google_code_findbugs_jsr305_2_0_1_jar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /AS3Source codes/ch5/Hello/.idea/libraries/net_sf_kxml_kxml2_2_3_0_jar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /AS3Source codes/ch5/Hello/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /AS3Source codes/ch5/eventhandlinginnerclassaslistener/.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/libraries 5 | /.idea/modules.xml 6 | /.idea/workspace.xml 7 | .DS_Store 8 | /build 9 | /captures 10 | .externalNativeBuild 11 | -------------------------------------------------------------------------------- /AS3Source codes/ch5/eventhandlinginnerclassaslistener/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /AS3Source codes/ch6/FirstIntent/.gradle/4.1-rc-1/fileChanges/last-build.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AS3Source codes/ch6/FirstIntent/.gradle/4.1-rc-1/fileContent/fileContent.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/FirstIntent/.gradle/4.1-rc-1/fileContent/fileContent.lock -------------------------------------------------------------------------------- /AS3Source codes/ch6/FirstIntent/.gradle/4.1-rc-1/fileHashes/fileHashes.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/FirstIntent/.gradle/4.1-rc-1/fileHashes/fileHashes.bin -------------------------------------------------------------------------------- /AS3Source codes/ch6/FirstIntent/.gradle/4.1-rc-1/fileHashes/fileHashes.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/FirstIntent/.gradle/4.1-rc-1/fileHashes/fileHashes.lock -------------------------------------------------------------------------------- /AS3Source codes/ch6/FirstIntent/.gradle/4.1-rc-1/fileHashes/resourceHashesCache.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/FirstIntent/.gradle/4.1-rc-1/fileHashes/resourceHashesCache.bin -------------------------------------------------------------------------------- /AS3Source codes/ch6/FirstIntent/.gradle/4.1-rc-1/javaCompile/classAnalysis.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/FirstIntent/.gradle/4.1-rc-1/javaCompile/classAnalysis.bin -------------------------------------------------------------------------------- /AS3Source codes/ch6/FirstIntent/.gradle/4.1-rc-1/javaCompile/jarAnalysis.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/FirstIntent/.gradle/4.1-rc-1/javaCompile/jarAnalysis.bin -------------------------------------------------------------------------------- /AS3Source codes/ch6/FirstIntent/.gradle/4.1-rc-1/javaCompile/javaCompile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/FirstIntent/.gradle/4.1-rc-1/javaCompile/javaCompile.lock -------------------------------------------------------------------------------- /AS3Source codes/ch6/FirstIntent/.gradle/4.1-rc-1/javaCompile/taskHistory.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/FirstIntent/.gradle/4.1-rc-1/javaCompile/taskHistory.bin -------------------------------------------------------------------------------- /AS3Source codes/ch6/FirstIntent/.gradle/4.1-rc-1/javaCompile/taskJars.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/FirstIntent/.gradle/4.1-rc-1/javaCompile/taskJars.bin -------------------------------------------------------------------------------- /AS3Source codes/ch6/FirstIntent/.gradle/4.1-rc-1/taskHistory/fileSnapshots.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/FirstIntent/.gradle/4.1-rc-1/taskHistory/fileSnapshots.bin -------------------------------------------------------------------------------- /AS3Source codes/ch6/FirstIntent/.gradle/4.1-rc-1/taskHistory/taskHistory.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/FirstIntent/.gradle/4.1-rc-1/taskHistory/taskHistory.bin -------------------------------------------------------------------------------- /AS3Source codes/ch6/FirstIntent/.gradle/4.1-rc-1/taskHistory/taskHistory.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/FirstIntent/.gradle/4.1-rc-1/taskHistory/taskHistory.lock -------------------------------------------------------------------------------- /AS3Source codes/ch6/FirstIntent/.gradle/4.1/fileChanges/last-build.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AS3Source codes/ch6/FirstIntent/.gradle/4.1/fileContent/fileContent.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/FirstIntent/.gradle/4.1/fileContent/fileContent.lock -------------------------------------------------------------------------------- /AS3Source codes/ch6/FirstIntent/.gradle/4.1/fileHashes/fileHashes.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/FirstIntent/.gradle/4.1/fileHashes/fileHashes.bin -------------------------------------------------------------------------------- /AS3Source codes/ch6/FirstIntent/.gradle/4.1/fileHashes/fileHashes.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/FirstIntent/.gradle/4.1/fileHashes/fileHashes.lock -------------------------------------------------------------------------------- /AS3Source codes/ch6/FirstIntent/.gradle/4.1/fileHashes/resourceHashesCache.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/FirstIntent/.gradle/4.1/fileHashes/resourceHashesCache.bin -------------------------------------------------------------------------------- /AS3Source codes/ch6/FirstIntent/.gradle/4.1/javaCompile/classAnalysis.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/FirstIntent/.gradle/4.1/javaCompile/classAnalysis.bin -------------------------------------------------------------------------------- /AS3Source codes/ch6/FirstIntent/.gradle/4.1/javaCompile/jarAnalysis.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/FirstIntent/.gradle/4.1/javaCompile/jarAnalysis.bin -------------------------------------------------------------------------------- /AS3Source codes/ch6/FirstIntent/.gradle/4.1/javaCompile/javaCompile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/FirstIntent/.gradle/4.1/javaCompile/javaCompile.lock -------------------------------------------------------------------------------- /AS3Source codes/ch6/FirstIntent/.gradle/4.1/javaCompile/taskHistory.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/FirstIntent/.gradle/4.1/javaCompile/taskHistory.bin -------------------------------------------------------------------------------- /AS3Source codes/ch6/FirstIntent/.gradle/4.1/javaCompile/taskJars.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/FirstIntent/.gradle/4.1/javaCompile/taskJars.bin -------------------------------------------------------------------------------- /AS3Source codes/ch6/FirstIntent/.gradle/4.1/taskHistory/fileSnapshots.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/FirstIntent/.gradle/4.1/taskHistory/fileSnapshots.bin -------------------------------------------------------------------------------- /AS3Source codes/ch6/FirstIntent/.gradle/4.1/taskHistory/taskHistory.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/FirstIntent/.gradle/4.1/taskHistory/taskHistory.bin -------------------------------------------------------------------------------- /AS3Source codes/ch6/FirstIntent/.gradle/4.1/taskHistory/taskHistory.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/FirstIntent/.gradle/4.1/taskHistory/taskHistory.lock -------------------------------------------------------------------------------- /AS3Source codes/ch6/FirstIntent/.gradle/buildOutputCleanup/built.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/FirstIntent/.gradle/buildOutputCleanup/built.bin -------------------------------------------------------------------------------- /AS3Source codes/ch6/FirstIntent/.gradle/buildOutputCleanup/cache.properties: -------------------------------------------------------------------------------- 1 | #Fri Dec 22 14:05:25 PHT 2017 2 | gradle.version=4.1 3 | -------------------------------------------------------------------------------- /AS3Source codes/ch6/FirstIntent/.gradle/buildOutputCleanup/cache.properties.lock: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /AS3Source codes/ch6/FirstIntent/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /AS3Source codes/ch6/FirstIntent/.idea/libraries/net_sf_kxml_kxml2_2_3_0_jar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /AS3Source codes/ch6/FirstIntent/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /AS3Source codes/ch6/FirstIntent/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /AS3Source codes/ch6/FirstIntent/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /AS3Source codes/ch6/FirstIntent/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/FirstIntent/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /AS3Source codes/ch6/FirstIntent/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/FirstIntent/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /AS3Source codes/ch6/FirstIntent/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/FirstIntent/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AS3Source codes/ch6/FirstIntent/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/FirstIntent/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /AS3Source codes/ch6/FirstIntent/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/FirstIntent/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /AS3Source codes/ch6/FirstIntent/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/FirstIntent/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AS3Source codes/ch6/FirstIntent/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/FirstIntent/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AS3Source codes/ch6/FirstIntent/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/FirstIntent/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /AS3Source codes/ch6/FirstIntent/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/FirstIntent/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AS3Source codes/ch6/FirstIntent/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/FirstIntent/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AS3Source codes/ch6/FirstIntent/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/FirstIntent/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /AS3Source codes/ch6/FirstIntent/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/FirstIntent/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AS3Source codes/ch6/FirstIntent/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/FirstIntent/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AS3Source codes/ch6/FirstIntent/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/FirstIntent/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /AS3Source codes/ch6/FirstIntent/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/FirstIntent/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AS3Source codes/ch6/FirstIntent/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /AS3Source codes/ch6/FirstIntent/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | FirstIntent 3 | 4 | -------------------------------------------------------------------------------- /AS3Source codes/ch6/GCF/.gradle/4.1/fileChanges/last-build.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AS3Source codes/ch6/GCF/.gradle/4.1/fileContent/fileContent.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/GCF/.gradle/4.1/fileContent/fileContent.lock -------------------------------------------------------------------------------- /AS3Source codes/ch6/GCF/.gradle/4.1/fileHashes/fileHashes.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/GCF/.gradle/4.1/fileHashes/fileHashes.bin -------------------------------------------------------------------------------- /AS3Source codes/ch6/GCF/.gradle/4.1/fileHashes/fileHashes.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/GCF/.gradle/4.1/fileHashes/fileHashes.lock -------------------------------------------------------------------------------- /AS3Source codes/ch6/GCF/.gradle/4.1/fileHashes/resourceHashesCache.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/GCF/.gradle/4.1/fileHashes/resourceHashesCache.bin -------------------------------------------------------------------------------- /AS3Source codes/ch6/GCF/.gradle/4.1/javaCompile/classAnalysis.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/GCF/.gradle/4.1/javaCompile/classAnalysis.bin -------------------------------------------------------------------------------- /AS3Source codes/ch6/GCF/.gradle/4.1/javaCompile/jarAnalysis.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/GCF/.gradle/4.1/javaCompile/jarAnalysis.bin -------------------------------------------------------------------------------- /AS3Source codes/ch6/GCF/.gradle/4.1/javaCompile/javaCompile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/GCF/.gradle/4.1/javaCompile/javaCompile.lock -------------------------------------------------------------------------------- /AS3Source codes/ch6/GCF/.gradle/4.1/javaCompile/taskHistory.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/GCF/.gradle/4.1/javaCompile/taskHistory.bin -------------------------------------------------------------------------------- /AS3Source codes/ch6/GCF/.gradle/4.1/javaCompile/taskJars.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/GCF/.gradle/4.1/javaCompile/taskJars.bin -------------------------------------------------------------------------------- /AS3Source codes/ch6/GCF/.gradle/4.1/taskHistory/fileSnapshots.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/GCF/.gradle/4.1/taskHistory/fileSnapshots.bin -------------------------------------------------------------------------------- /AS3Source codes/ch6/GCF/.gradle/4.1/taskHistory/taskHistory.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/GCF/.gradle/4.1/taskHistory/taskHistory.bin -------------------------------------------------------------------------------- /AS3Source codes/ch6/GCF/.gradle/4.1/taskHistory/taskHistory.lock: -------------------------------------------------------------------------------- 1 |  zAYࢸ8� -------------------------------------------------------------------------------- /AS3Source codes/ch6/GCF/.gradle/4.4-20171031235950+0000/fileChanges/last-build.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AS3Source codes/ch6/GCF/.gradle/4.4-20171031235950+0000/fileHashes/fileHashes.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/GCF/.gradle/4.4-20171031235950+0000/fileHashes/fileHashes.bin -------------------------------------------------------------------------------- /AS3Source codes/ch6/GCF/.gradle/4.4-20171031235950+0000/fileHashes/fileHashes.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/GCF/.gradle/4.4-20171031235950+0000/fileHashes/fileHashes.lock -------------------------------------------------------------------------------- /AS3Source codes/ch6/GCF/.gradle/4.4-20171031235950+0000/fileHashes/resourceHashesCache.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/GCF/.gradle/4.4-20171031235950+0000/fileHashes/resourceHashesCache.bin -------------------------------------------------------------------------------- /AS3Source codes/ch6/GCF/.gradle/4.4-20171031235950+0000/taskHistory/taskHistory.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/GCF/.gradle/4.4-20171031235950+0000/taskHistory/taskHistory.bin -------------------------------------------------------------------------------- /AS3Source codes/ch6/GCF/.gradle/4.4-20171031235950+0000/taskHistory/taskHistory.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/GCF/.gradle/4.4-20171031235950+0000/taskHistory/taskHistory.lock -------------------------------------------------------------------------------- /AS3Source codes/ch6/GCF/.gradle/buildOutputCleanup/buildOutputCleanup.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/GCF/.gradle/buildOutputCleanup/buildOutputCleanup.lock -------------------------------------------------------------------------------- /AS3Source codes/ch6/GCF/.gradle/buildOutputCleanup/cache.properties: -------------------------------------------------------------------------------- 1 | #Mon Dec 18 14:28:30 PHT 2017 2 | gradle.version=4.4-20171031235950+0000 3 | -------------------------------------------------------------------------------- /AS3Source codes/ch6/GCF/.gradle/buildOutputCleanup/outputFiles.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/GCF/.gradle/buildOutputCleanup/outputFiles.bin -------------------------------------------------------------------------------- /AS3Source codes/ch6/GCF/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/GCF/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /AS3Source codes/ch6/GCF/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /AS3Source codes/ch6/GCF/.idea/libraries/com_google_code_findbugs_jsr305_2_0_1_jar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /AS3Source codes/ch6/GCF/.idea/libraries/net_sf_kxml_kxml2_2_3_0_jar.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /AS3Source codes/ch6/GCF/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /AS3Source codes/ch6/GCF/src/main/java/com/example/ted/gcf/MainActivity2.java: -------------------------------------------------------------------------------- 1 | package com.example.ted.gcf; 2 | 3 | import android.support.v7.app.AppCompatActivity; 4 | import android.os.Bundle; 5 | 6 | public class MainActivity2 extends AppCompatActivity { 7 | 8 | @Override 9 | protected void onCreate(Bundle savedInstanceState) { 10 | super.onCreate(savedInstanceState); 11 | setContentView(R.layout.activity_main2); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /AS3Source codes/ch6/GCF/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /AS3Source codes/ch6/GCF/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /AS3Source codes/ch6/GCF/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/GCF/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /AS3Source codes/ch6/GCF/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/GCF/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /AS3Source codes/ch6/GCF/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/GCF/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AS3Source codes/ch6/GCF/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/GCF/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /AS3Source codes/ch6/GCF/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/GCF/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /AS3Source codes/ch6/GCF/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/GCF/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AS3Source codes/ch6/GCF/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/GCF/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AS3Source codes/ch6/GCF/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/GCF/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /AS3Source codes/ch6/GCF/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/GCF/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AS3Source codes/ch6/GCF/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/GCF/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AS3Source codes/ch6/GCF/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/GCF/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /AS3Source codes/ch6/GCF/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/GCF/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AS3Source codes/ch6/GCF/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/GCF/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AS3Source codes/ch6/GCF/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/GCF/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /AS3Source codes/ch6/GCF/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/GCF/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AS3Source codes/ch6/GCF/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /AS3Source codes/ch6/GCF/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | GCF 3 | 4 | -------------------------------------------------------------------------------- /AS3Source codes/ch6/GCF/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /AS3Source codes/ch6/GetResultsSubActivity/.gradle/4.1/fileChanges/last-build.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AS3Source codes/ch6/GetResultsSubActivity/.gradle/4.1/fileContent/fileContent.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/GetResultsSubActivity/.gradle/4.1/fileContent/fileContent.lock -------------------------------------------------------------------------------- /AS3Source codes/ch6/GetResultsSubActivity/.gradle/4.1/fileHashes/fileHashes.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/GetResultsSubActivity/.gradle/4.1/fileHashes/fileHashes.bin -------------------------------------------------------------------------------- /AS3Source codes/ch6/GetResultsSubActivity/.gradle/4.1/fileHashes/fileHashes.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/GetResultsSubActivity/.gradle/4.1/fileHashes/fileHashes.lock -------------------------------------------------------------------------------- /AS3Source codes/ch6/GetResultsSubActivity/.gradle/4.1/fileHashes/resourceHashesCache.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/GetResultsSubActivity/.gradle/4.1/fileHashes/resourceHashesCache.bin -------------------------------------------------------------------------------- /AS3Source codes/ch6/GetResultsSubActivity/.gradle/4.1/javaCompile/classAnalysis.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/GetResultsSubActivity/.gradle/4.1/javaCompile/classAnalysis.bin -------------------------------------------------------------------------------- /AS3Source codes/ch6/GetResultsSubActivity/.gradle/4.1/javaCompile/jarAnalysis.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/GetResultsSubActivity/.gradle/4.1/javaCompile/jarAnalysis.bin -------------------------------------------------------------------------------- /AS3Source codes/ch6/GetResultsSubActivity/.gradle/4.1/javaCompile/javaCompile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/GetResultsSubActivity/.gradle/4.1/javaCompile/javaCompile.lock -------------------------------------------------------------------------------- /AS3Source codes/ch6/GetResultsSubActivity/.gradle/4.1/javaCompile/taskHistory.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/GetResultsSubActivity/.gradle/4.1/javaCompile/taskHistory.bin -------------------------------------------------------------------------------- /AS3Source codes/ch6/GetResultsSubActivity/.gradle/4.1/javaCompile/taskJars.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/GetResultsSubActivity/.gradle/4.1/javaCompile/taskJars.bin -------------------------------------------------------------------------------- /AS3Source codes/ch6/GetResultsSubActivity/.gradle/4.1/taskHistory/fileSnapshots.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/GetResultsSubActivity/.gradle/4.1/taskHistory/fileSnapshots.bin -------------------------------------------------------------------------------- /AS3Source codes/ch6/GetResultsSubActivity/.gradle/4.1/taskHistory/taskHistory.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/GetResultsSubActivity/.gradle/4.1/taskHistory/taskHistory.bin -------------------------------------------------------------------------------- /AS3Source codes/ch6/GetResultsSubActivity/.gradle/4.1/taskHistory/taskHistory.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/GetResultsSubActivity/.gradle/4.1/taskHistory/taskHistory.lock -------------------------------------------------------------------------------- /AS3Source codes/ch6/GetResultsSubActivity/.gradle/buildOutputCleanup/built.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/GetResultsSubActivity/.gradle/buildOutputCleanup/built.bin -------------------------------------------------------------------------------- /AS3Source codes/ch6/GetResultsSubActivity/.gradle/buildOutputCleanup/cache.properties: -------------------------------------------------------------------------------- 1 | #Tue Oct 10 10:00:32 PHT 2017 2 | gradle.version=4.1 3 | -------------------------------------------------------------------------------- /AS3Source codes/ch6/GetResultsSubActivity/.gradle/buildOutputCleanup/cache.properties.lock: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /AS3Source codes/ch6/GetResultsSubActivity/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /AS3Source codes/ch6/GetResultsSubActivity/.idea/libraries/constraint_layout_solver_1_0_2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /AS3Source codes/ch6/GetResultsSubActivity/.idea/libraries/jsr305_2_0_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /AS3Source codes/ch6/GetResultsSubActivity/.idea/libraries/kxml2_2_3_0.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /AS3Source codes/ch6/GetResultsSubActivity/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /AS3Source codes/ch6/GetResultsSubActivity/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /AS3Source codes/ch6/GetResultsSubActivity/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/GetResultsSubActivity/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /AS3Source codes/ch6/GetResultsSubActivity/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/GetResultsSubActivity/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /AS3Source codes/ch6/GetResultsSubActivity/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/GetResultsSubActivity/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AS3Source codes/ch6/GetResultsSubActivity/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/GetResultsSubActivity/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /AS3Source codes/ch6/GetResultsSubActivity/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/GetResultsSubActivity/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /AS3Source codes/ch6/GetResultsSubActivity/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/GetResultsSubActivity/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AS3Source codes/ch6/GetResultsSubActivity/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/GetResultsSubActivity/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AS3Source codes/ch6/GetResultsSubActivity/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/GetResultsSubActivity/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /AS3Source codes/ch6/GetResultsSubActivity/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/GetResultsSubActivity/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AS3Source codes/ch6/GetResultsSubActivity/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/GetResultsSubActivity/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AS3Source codes/ch6/GetResultsSubActivity/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/GetResultsSubActivity/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /AS3Source codes/ch6/GetResultsSubActivity/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/GetResultsSubActivity/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AS3Source codes/ch6/GetResultsSubActivity/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/GetResultsSubActivity/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AS3Source codes/ch6/GetResultsSubActivity/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/GetResultsSubActivity/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /AS3Source codes/ch6/GetResultsSubActivity/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/GetResultsSubActivity/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AS3Source codes/ch6/GetResultsSubActivity/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /AS3Source codes/ch6/GetResultsSubActivity/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | GetResultsSubActivity 3 | 4 | -------------------------------------------------------------------------------- /AS3Source codes/ch6/ImplicitIntents/.gradle/4.1/fileChanges/last-build.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AS3Source codes/ch6/ImplicitIntents/.gradle/4.1/fileContent/fileContent.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/ImplicitIntents/.gradle/4.1/fileContent/fileContent.lock -------------------------------------------------------------------------------- /AS3Source codes/ch6/ImplicitIntents/.gradle/4.1/fileHashes/fileHashes.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/ImplicitIntents/.gradle/4.1/fileHashes/fileHashes.bin -------------------------------------------------------------------------------- /AS3Source codes/ch6/ImplicitIntents/.gradle/4.1/fileHashes/fileHashes.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/ImplicitIntents/.gradle/4.1/fileHashes/fileHashes.lock -------------------------------------------------------------------------------- /AS3Source codes/ch6/ImplicitIntents/.gradle/4.1/fileHashes/resourceHashesCache.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/ImplicitIntents/.gradle/4.1/fileHashes/resourceHashesCache.bin -------------------------------------------------------------------------------- /AS3Source codes/ch6/ImplicitIntents/.gradle/4.1/javaCompile/classAnalysis.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/ImplicitIntents/.gradle/4.1/javaCompile/classAnalysis.bin -------------------------------------------------------------------------------- /AS3Source codes/ch6/ImplicitIntents/.gradle/4.1/javaCompile/jarAnalysis.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/ImplicitIntents/.gradle/4.1/javaCompile/jarAnalysis.bin -------------------------------------------------------------------------------- /AS3Source codes/ch6/ImplicitIntents/.gradle/4.1/javaCompile/javaCompile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/ImplicitIntents/.gradle/4.1/javaCompile/javaCompile.lock -------------------------------------------------------------------------------- /AS3Source codes/ch6/ImplicitIntents/.gradle/4.1/javaCompile/taskHistory.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/ImplicitIntents/.gradle/4.1/javaCompile/taskHistory.bin -------------------------------------------------------------------------------- /AS3Source codes/ch6/ImplicitIntents/.gradle/4.1/javaCompile/taskJars.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/ImplicitIntents/.gradle/4.1/javaCompile/taskJars.bin -------------------------------------------------------------------------------- /AS3Source codes/ch6/ImplicitIntents/.gradle/4.1/taskHistory/fileSnapshots.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/ImplicitIntents/.gradle/4.1/taskHistory/fileSnapshots.bin -------------------------------------------------------------------------------- /AS3Source codes/ch6/ImplicitIntents/.gradle/4.1/taskHistory/taskHistory.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/ImplicitIntents/.gradle/4.1/taskHistory/taskHistory.bin -------------------------------------------------------------------------------- /AS3Source codes/ch6/ImplicitIntents/.gradle/4.1/taskHistory/taskHistory.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/ImplicitIntents/.gradle/4.1/taskHistory/taskHistory.lock -------------------------------------------------------------------------------- /AS3Source codes/ch6/ImplicitIntents/.gradle/buildOutputCleanup/built.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/ImplicitIntents/.gradle/buildOutputCleanup/built.bin -------------------------------------------------------------------------------- /AS3Source codes/ch6/ImplicitIntents/.gradle/buildOutputCleanup/cache.properties: -------------------------------------------------------------------------------- 1 | #Wed Oct 11 12:14:15 PHT 2017 2 | gradle.version=4.1 3 | -------------------------------------------------------------------------------- /AS3Source codes/ch6/ImplicitIntents/.gradle/buildOutputCleanup/cache.properties.lock: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /AS3Source codes/ch6/ImplicitIntents/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /AS3Source codes/ch6/ImplicitIntents/.idea/libraries/constraint_layout_solver_1_0_2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /AS3Source codes/ch6/ImplicitIntents/.idea/libraries/jsr305_2_0_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /AS3Source codes/ch6/ImplicitIntents/.idea/libraries/kxml2_2_3_0.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /AS3Source codes/ch6/ImplicitIntents/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /AS3Source codes/ch6/ImplicitIntents/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /AS3Source codes/ch6/ImplicitIntents/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /AS3Source codes/ch6/ImplicitIntents/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/ImplicitIntents/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /AS3Source codes/ch6/ImplicitIntents/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/ImplicitIntents/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /AS3Source codes/ch6/ImplicitIntents/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/ImplicitIntents/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AS3Source codes/ch6/ImplicitIntents/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/ImplicitIntents/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /AS3Source codes/ch6/ImplicitIntents/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/ImplicitIntents/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /AS3Source codes/ch6/ImplicitIntents/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/ImplicitIntents/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AS3Source codes/ch6/ImplicitIntents/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/ImplicitIntents/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AS3Source codes/ch6/ImplicitIntents/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/ImplicitIntents/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /AS3Source codes/ch6/ImplicitIntents/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/ImplicitIntents/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AS3Source codes/ch6/ImplicitIntents/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/ImplicitIntents/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AS3Source codes/ch6/ImplicitIntents/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/ImplicitIntents/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /AS3Source codes/ch6/ImplicitIntents/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/ImplicitIntents/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AS3Source codes/ch6/ImplicitIntents/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/ImplicitIntents/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AS3Source codes/ch6/ImplicitIntents/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/ImplicitIntents/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /AS3Source codes/ch6/ImplicitIntents/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch6/ImplicitIntents/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AS3Source codes/ch6/ImplicitIntents/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /AS3Source codes/ch6/ImplicitIntents/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | ImplicitIntents 3 | 4 | -------------------------------------------------------------------------------- /AS3Source codes/ch7/ActionBar/.gradle/4.1/fileChanges/last-build.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AS3Source codes/ch7/ActionBar/.gradle/4.1/fileContent/fileContent.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/ActionBar/.gradle/4.1/fileContent/fileContent.lock -------------------------------------------------------------------------------- /AS3Source codes/ch7/ActionBar/.gradle/4.1/fileHashes/fileHashes.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/ActionBar/.gradle/4.1/fileHashes/fileHashes.bin -------------------------------------------------------------------------------- /AS3Source codes/ch7/ActionBar/.gradle/4.1/fileHashes/fileHashes.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/ActionBar/.gradle/4.1/fileHashes/fileHashes.lock -------------------------------------------------------------------------------- /AS3Source codes/ch7/ActionBar/.gradle/4.1/fileHashes/resourceHashesCache.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/ActionBar/.gradle/4.1/fileHashes/resourceHashesCache.bin -------------------------------------------------------------------------------- /AS3Source codes/ch7/ActionBar/.gradle/4.1/javaCompile/classAnalysis.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/ActionBar/.gradle/4.1/javaCompile/classAnalysis.bin -------------------------------------------------------------------------------- /AS3Source codes/ch7/ActionBar/.gradle/4.1/javaCompile/jarAnalysis.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/ActionBar/.gradle/4.1/javaCompile/jarAnalysis.bin -------------------------------------------------------------------------------- /AS3Source codes/ch7/ActionBar/.gradle/4.1/javaCompile/javaCompile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/ActionBar/.gradle/4.1/javaCompile/javaCompile.lock -------------------------------------------------------------------------------- /AS3Source codes/ch7/ActionBar/.gradle/4.1/javaCompile/taskHistory.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/ActionBar/.gradle/4.1/javaCompile/taskHistory.bin -------------------------------------------------------------------------------- /AS3Source codes/ch7/ActionBar/.gradle/4.1/javaCompile/taskJars.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/ActionBar/.gradle/4.1/javaCompile/taskJars.bin -------------------------------------------------------------------------------- /AS3Source codes/ch7/ActionBar/.gradle/4.1/taskHistory/fileSnapshots.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/ActionBar/.gradle/4.1/taskHistory/fileSnapshots.bin -------------------------------------------------------------------------------- /AS3Source codes/ch7/ActionBar/.gradle/4.1/taskHistory/taskHistory.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/ActionBar/.gradle/4.1/taskHistory/taskHistory.bin -------------------------------------------------------------------------------- /AS3Source codes/ch7/ActionBar/.gradle/4.1/taskHistory/taskHistory.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/ActionBar/.gradle/4.1/taskHistory/taskHistory.lock -------------------------------------------------------------------------------- /AS3Source codes/ch7/ActionBar/.gradle/buildOutputCleanup/built.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/ActionBar/.gradle/buildOutputCleanup/built.bin -------------------------------------------------------------------------------- /AS3Source codes/ch7/ActionBar/.gradle/buildOutputCleanup/cache.properties: -------------------------------------------------------------------------------- 1 | #Fri Oct 13 15:31:34 PHT 2017 2 | gradle.version=4.1 3 | -------------------------------------------------------------------------------- /AS3Source codes/ch7/ActionBar/.gradle/buildOutputCleanup/cache.properties.lock: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /AS3Source codes/ch7/ActionBar/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /AS3Source codes/ch7/ActionBar/.idea/libraries/constraint_layout_solver_1_0_2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /AS3Source codes/ch7/ActionBar/.idea/libraries/jsr305_2_0_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /AS3Source codes/ch7/ActionBar/.idea/libraries/kxml2_2_3_0.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /AS3Source codes/ch7/ActionBar/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /AS3Source codes/ch7/ActionBar/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /AS3Source codes/ch7/ActionBar/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /AS3Source codes/ch7/ActionBar/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/ActionBar/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /AS3Source codes/ch7/ActionBar/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/ActionBar/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /AS3Source codes/ch7/ActionBar/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/ActionBar/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AS3Source codes/ch7/ActionBar/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/ActionBar/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /AS3Source codes/ch7/ActionBar/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/ActionBar/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /AS3Source codes/ch7/ActionBar/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/ActionBar/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AS3Source codes/ch7/ActionBar/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/ActionBar/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AS3Source codes/ch7/ActionBar/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/ActionBar/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /AS3Source codes/ch7/ActionBar/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/ActionBar/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AS3Source codes/ch7/ActionBar/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/ActionBar/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AS3Source codes/ch7/ActionBar/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/ActionBar/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /AS3Source codes/ch7/ActionBar/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/ActionBar/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AS3Source codes/ch7/ActionBar/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/ActionBar/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AS3Source codes/ch7/ActionBar/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/ActionBar/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /AS3Source codes/ch7/ActionBar/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/ActionBar/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AS3Source codes/ch7/ActionBar/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /AS3Source codes/ch7/ActionBar/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | ActionBar 3 | File 4 | Edit 5 | Help 6 | Exit 7 | 8 | -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments/.gradle/4.1/fileChanges/last-build.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments/.gradle/4.1/fileContent/fileContent.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/Fragments/.gradle/4.1/fileContent/fileContent.lock -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments/.gradle/4.1/fileHashes/fileHashes.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/Fragments/.gradle/4.1/fileHashes/fileHashes.bin -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments/.gradle/4.1/fileHashes/fileHashes.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/Fragments/.gradle/4.1/fileHashes/fileHashes.lock -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments/.gradle/4.1/fileHashes/resourceHashesCache.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/Fragments/.gradle/4.1/fileHashes/resourceHashesCache.bin -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments/.gradle/4.1/javaCompile/classAnalysis.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/Fragments/.gradle/4.1/javaCompile/classAnalysis.bin -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments/.gradle/4.1/javaCompile/jarAnalysis.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/Fragments/.gradle/4.1/javaCompile/jarAnalysis.bin -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments/.gradle/4.1/javaCompile/javaCompile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/Fragments/.gradle/4.1/javaCompile/javaCompile.lock -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments/.gradle/4.1/javaCompile/taskHistory.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/Fragments/.gradle/4.1/javaCompile/taskHistory.bin -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments/.gradle/4.1/javaCompile/taskJars.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/Fragments/.gradle/4.1/javaCompile/taskJars.bin -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments/.gradle/4.1/taskHistory/fileSnapshots.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/Fragments/.gradle/4.1/taskHistory/fileSnapshots.bin -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments/.gradle/4.1/taskHistory/taskHistory.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/Fragments/.gradle/4.1/taskHistory/taskHistory.bin -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments/.gradle/4.1/taskHistory/taskHistory.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/Fragments/.gradle/4.1/taskHistory/taskHistory.lock -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments/.gradle/4.4-20171031235950+0000/fileChanges/last-build.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments/.gradle/4.4-20171031235950+0000/fileContent/fileContent.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/Fragments/.gradle/4.4-20171031235950+0000/fileContent/fileContent.lock -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments/.gradle/4.4-20171031235950+0000/fileHashes/fileHashes.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/Fragments/.gradle/4.4-20171031235950+0000/fileHashes/fileHashes.bin -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments/.gradle/4.4-20171031235950+0000/fileHashes/fileHashes.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/Fragments/.gradle/4.4-20171031235950+0000/fileHashes/fileHashes.lock -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments/.gradle/4.4-20171031235950+0000/fileHashes/resourceHashesCache.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/Fragments/.gradle/4.4-20171031235950+0000/fileHashes/resourceHashesCache.bin -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments/.gradle/4.4-20171031235950+0000/javaCompile/classAnalysis.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/Fragments/.gradle/4.4-20171031235950+0000/javaCompile/classAnalysis.bin -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments/.gradle/4.4-20171031235950+0000/javaCompile/jarAnalysis.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/Fragments/.gradle/4.4-20171031235950+0000/javaCompile/jarAnalysis.bin -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments/.gradle/4.4-20171031235950+0000/javaCompile/javaCompile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/Fragments/.gradle/4.4-20171031235950+0000/javaCompile/javaCompile.lock -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments/.gradle/4.4-20171031235950+0000/javaCompile/taskHistory.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/Fragments/.gradle/4.4-20171031235950+0000/javaCompile/taskHistory.bin -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments/.gradle/4.4-20171031235950+0000/javaCompile/taskJars.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/Fragments/.gradle/4.4-20171031235950+0000/javaCompile/taskJars.bin -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments/.gradle/4.4-20171031235950+0000/taskHistory/taskHistory.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/Fragments/.gradle/4.4-20171031235950+0000/taskHistory/taskHistory.bin -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments/.gradle/4.4-20171031235950+0000/taskHistory/taskHistory.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/Fragments/.gradle/4.4-20171031235950+0000/taskHistory/taskHistory.lock -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments/.gradle/buildOutputCleanup/buildOutputCleanup.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/Fragments/.gradle/buildOutputCleanup/buildOutputCleanup.lock -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments/.gradle/buildOutputCleanup/cache.properties: -------------------------------------------------------------------------------- 1 | #Mon Dec 18 18:42:49 PHT 2017 2 | gradle.version=4.4-20171031235950+0000 3 | -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments/.gradle/buildOutputCleanup/outputFiles.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/Fragments/.gradle/buildOutputCleanup/outputFiles.bin -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/Fragments/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/Fragments/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/Fragments/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/Fragments/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/Fragments/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/Fragments/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/Fragments/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/Fragments/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/Fragments/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/Fragments/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/Fragments/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/Fragments/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/Fragments/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/Fragments/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/Fragments/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/Fragments/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Fragments 3 | 4 | -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments2/.gradle/4.1/fileChanges/last-build.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments2/.gradle/4.1/fileContent/fileContent.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/Fragments2/.gradle/4.1/fileContent/fileContent.lock -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments2/.gradle/4.1/fileHashes/fileHashes.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/Fragments2/.gradle/4.1/fileHashes/fileHashes.bin -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments2/.gradle/4.1/fileHashes/fileHashes.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/Fragments2/.gradle/4.1/fileHashes/fileHashes.lock -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments2/.gradle/4.1/fileHashes/resourceHashesCache.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/Fragments2/.gradle/4.1/fileHashes/resourceHashesCache.bin -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments2/.gradle/4.1/javaCompile/classAnalysis.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/Fragments2/.gradle/4.1/javaCompile/classAnalysis.bin -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments2/.gradle/4.1/javaCompile/jarAnalysis.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/Fragments2/.gradle/4.1/javaCompile/jarAnalysis.bin -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments2/.gradle/4.1/javaCompile/javaCompile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/Fragments2/.gradle/4.1/javaCompile/javaCompile.lock -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments2/.gradle/4.1/javaCompile/taskHistory.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/Fragments2/.gradle/4.1/javaCompile/taskHistory.bin -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments2/.gradle/4.1/javaCompile/taskJars.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/Fragments2/.gradle/4.1/javaCompile/taskJars.bin -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments2/.gradle/4.1/taskHistory/fileSnapshots.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/Fragments2/.gradle/4.1/taskHistory/fileSnapshots.bin -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments2/.gradle/4.1/taskHistory/taskHistory.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/Fragments2/.gradle/4.1/taskHistory/taskHistory.bin -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments2/.gradle/4.1/taskHistory/taskHistory.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/Fragments2/.gradle/4.1/taskHistory/taskHistory.lock -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments2/.gradle/4.4-20171031235950+0000/fileChanges/last-build.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments2/.gradle/4.4-20171031235950+0000/fileContent/fileContent.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/Fragments2/.gradle/4.4-20171031235950+0000/fileContent/fileContent.lock -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments2/.gradle/4.4-20171031235950+0000/fileHashes/fileHashes.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/Fragments2/.gradle/4.4-20171031235950+0000/fileHashes/fileHashes.bin -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments2/.gradle/4.4-20171031235950+0000/fileHashes/fileHashes.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/Fragments2/.gradle/4.4-20171031235950+0000/fileHashes/fileHashes.lock -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments2/.gradle/4.4-20171031235950+0000/fileHashes/resourceHashesCache.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/Fragments2/.gradle/4.4-20171031235950+0000/fileHashes/resourceHashesCache.bin -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments2/.gradle/4.4-20171031235950+0000/javaCompile/classAnalysis.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/Fragments2/.gradle/4.4-20171031235950+0000/javaCompile/classAnalysis.bin -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments2/.gradle/4.4-20171031235950+0000/javaCompile/jarAnalysis.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/Fragments2/.gradle/4.4-20171031235950+0000/javaCompile/jarAnalysis.bin -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments2/.gradle/4.4-20171031235950+0000/javaCompile/javaCompile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/Fragments2/.gradle/4.4-20171031235950+0000/javaCompile/javaCompile.lock -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments2/.gradle/4.4-20171031235950+0000/javaCompile/taskHistory.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/Fragments2/.gradle/4.4-20171031235950+0000/javaCompile/taskHistory.bin -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments2/.gradle/4.4-20171031235950+0000/javaCompile/taskJars.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/Fragments2/.gradle/4.4-20171031235950+0000/javaCompile/taskJars.bin -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments2/.gradle/4.4-20171031235950+0000/taskHistory/taskHistory.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/Fragments2/.gradle/4.4-20171031235950+0000/taskHistory/taskHistory.bin -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments2/.gradle/4.4-20171031235950+0000/taskHistory/taskHistory.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/Fragments2/.gradle/4.4-20171031235950+0000/taskHistory/taskHistory.lock -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments2/.gradle/buildOutputCleanup/buildOutputCleanup.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/Fragments2/.gradle/buildOutputCleanup/buildOutputCleanup.lock -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments2/.gradle/buildOutputCleanup/cache.properties: -------------------------------------------------------------------------------- 1 | #Mon Dec 18 18:45:07 PHT 2017 2 | gradle.version=4.4-20171031235950+0000 3 | -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments2/.gradle/buildOutputCleanup/outputFiles.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/Fragments2/.gradle/buildOutputCleanup/outputFiles.bin -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments2/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/Fragments2/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments2/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments2/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments2/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments2/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments2/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/Fragments2/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments2/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/Fragments2/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments2/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/Fragments2/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments2/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/Fragments2/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments2/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/Fragments2/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments2/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/Fragments2/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments2/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/Fragments2/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments2/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/Fragments2/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments2/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/Fragments2/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments2/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/Fragments2/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments2/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/Fragments2/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments2/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/Fragments2/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments2/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/Fragments2/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments2/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/Fragments2/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments2/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch7/Fragments2/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments2/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /AS3Source codes/ch7/Fragments2/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Fragments2 3 | 4 | -------------------------------------------------------------------------------- /AS3Source codes/ch8/Async/.gradle/4.1/fileChanges/last-build.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AS3Source codes/ch8/Async/.gradle/4.1/fileContent/fileContent.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch8/Async/.gradle/4.1/fileContent/fileContent.lock -------------------------------------------------------------------------------- /AS3Source codes/ch8/Async/.gradle/4.1/fileHashes/fileHashes.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch8/Async/.gradle/4.1/fileHashes/fileHashes.bin -------------------------------------------------------------------------------- /AS3Source codes/ch8/Async/.gradle/4.1/fileHashes/fileHashes.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch8/Async/.gradle/4.1/fileHashes/fileHashes.lock -------------------------------------------------------------------------------- /AS3Source codes/ch8/Async/.gradle/4.1/fileHashes/resourceHashesCache.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch8/Async/.gradle/4.1/fileHashes/resourceHashesCache.bin -------------------------------------------------------------------------------- /AS3Source codes/ch8/Async/.gradle/4.1/javaCompile/classAnalysis.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch8/Async/.gradle/4.1/javaCompile/classAnalysis.bin -------------------------------------------------------------------------------- /AS3Source codes/ch8/Async/.gradle/4.1/javaCompile/jarAnalysis.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch8/Async/.gradle/4.1/javaCompile/jarAnalysis.bin -------------------------------------------------------------------------------- /AS3Source codes/ch8/Async/.gradle/4.1/javaCompile/javaCompile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch8/Async/.gradle/4.1/javaCompile/javaCompile.lock -------------------------------------------------------------------------------- /AS3Source codes/ch8/Async/.gradle/4.1/javaCompile/taskHistory.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch8/Async/.gradle/4.1/javaCompile/taskHistory.bin -------------------------------------------------------------------------------- /AS3Source codes/ch8/Async/.gradle/4.1/javaCompile/taskJars.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch8/Async/.gradle/4.1/javaCompile/taskJars.bin -------------------------------------------------------------------------------- /AS3Source codes/ch8/Async/.gradle/4.1/taskHistory/fileSnapshots.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch8/Async/.gradle/4.1/taskHistory/fileSnapshots.bin -------------------------------------------------------------------------------- /AS3Source codes/ch8/Async/.gradle/4.1/taskHistory/taskHistory.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch8/Async/.gradle/4.1/taskHistory/taskHistory.bin -------------------------------------------------------------------------------- /AS3Source codes/ch8/Async/.gradle/4.1/taskHistory/taskHistory.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch8/Async/.gradle/4.1/taskHistory/taskHistory.lock -------------------------------------------------------------------------------- /AS3Source codes/ch8/Async/.gradle/buildOutputCleanup/built.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch8/Async/.gradle/buildOutputCleanup/built.bin -------------------------------------------------------------------------------- /AS3Source codes/ch8/Async/.gradle/buildOutputCleanup/cache.properties: -------------------------------------------------------------------------------- 1 | #Mon Oct 16 13:23:56 PHT 2017 2 | gradle.version=4.1 3 | -------------------------------------------------------------------------------- /AS3Source codes/ch8/Async/.gradle/buildOutputCleanup/cache.properties.lock: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /AS3Source codes/ch8/Async/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /AS3Source codes/ch8/Async/.idea/libraries/constraint_layout_solver_1_0_2.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /AS3Source codes/ch8/Async/.idea/libraries/jsr305_2_0_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /AS3Source codes/ch8/Async/.idea/libraries/kxml2_2_3_0.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /AS3Source codes/ch8/Async/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /AS3Source codes/ch8/Async/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /AS3Source codes/ch8/Async/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /AS3Source codes/ch8/Async/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch8/Async/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /AS3Source codes/ch8/Async/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch8/Async/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /AS3Source codes/ch8/Async/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch8/Async/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AS3Source codes/ch8/Async/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch8/Async/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /AS3Source codes/ch8/Async/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch8/Async/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /AS3Source codes/ch8/Async/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch8/Async/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AS3Source codes/ch8/Async/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch8/Async/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AS3Source codes/ch8/Async/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch8/Async/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /AS3Source codes/ch8/Async/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch8/Async/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AS3Source codes/ch8/Async/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch8/Async/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AS3Source codes/ch8/Async/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch8/Async/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /AS3Source codes/ch8/Async/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch8/Async/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AS3Source codes/ch8/Async/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch8/Async/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /AS3Source codes/ch8/Async/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch8/Async/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /AS3Source codes/ch8/Async/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/AS3Source codes/ch8/Async/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /AS3Source codes/ch8/Async/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /AS3Source codes/ch8/Async/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Async 3 | 4 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/learn-android-studio-3/40857acdde01c96ad6c6b0ab5fcbbab8965619cd/LICENSE.txt --------------------------------------------------------------------------------