├── Ch01 └── GeoQuiz │ ├── .gitignore │ ├── .idea │ ├── .name │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── encodings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── bignerdranch │ │ │ └── android │ │ │ └── geoquiz │ │ │ └── ApplicationTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── bignerdranch │ │ │ │ └── android │ │ │ │ └── geoquiz │ │ │ │ └── QuizActivity.java │ │ └── res │ │ │ ├── layout │ │ │ └── activity_quiz.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── bignerdranch │ │ └── android │ │ └── geoquiz │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Ch02 └── GeoQuiz │ ├── .gitignore │ ├── .idea │ ├── .name │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── encodings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── bignerdranch │ │ │ └── android │ │ │ └── geoquiz │ │ │ └── ApplicationTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── bignerdranch │ │ │ │ └── android │ │ │ │ └── geoquiz │ │ │ │ ├── Question.java │ │ │ │ └── QuizActivity.java │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ ├── arrow_left.png │ │ │ └── arrow_right.png │ │ │ ├── drawable-mdpi │ │ │ ├── arrow_left.png │ │ │ └── arrow_right.png │ │ │ ├── drawable-xhdpi │ │ │ ├── arrow_left.png │ │ │ └── arrow_right.png │ │ │ ├── drawable-xxhdpi │ │ │ ├── arrow_left.png │ │ │ └── arrow_right.png │ │ │ ├── layout │ │ │ └── activity_quiz.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── bignerdranch │ │ └── android │ │ └── geoquiz │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Ch03 └── GeoQuiz │ ├── .gitignore │ ├── .idea │ ├── .name │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── encodings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── bignerdranch │ │ │ └── android │ │ │ └── geoquiz │ │ │ └── ApplicationTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── bignerdranch │ │ │ │ └── android │ │ │ │ └── geoquiz │ │ │ │ ├── Question.java │ │ │ │ └── QuizActivity.java │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ ├── arrow_left.png │ │ │ └── arrow_right.png │ │ │ ├── drawable-mdpi │ │ │ ├── arrow_left.png │ │ │ └── arrow_right.png │ │ │ ├── drawable-xhdpi │ │ │ ├── arrow_left.png │ │ │ └── arrow_right.png │ │ │ ├── drawable-xxhdpi │ │ │ ├── arrow_left.png │ │ │ └── arrow_right.png │ │ │ ├── layout-land │ │ │ └── activity_quiz.xml │ │ │ ├── layout │ │ │ └── activity_quiz.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── bignerdranch │ │ └── android │ │ └── geoquiz │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Ch05 └── GeoQuiz │ ├── .gitignore │ ├── .idea │ ├── .name │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── encodings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── bignerdranch │ │ │ └── android │ │ │ └── geoquiz │ │ │ └── ApplicationTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── bignerdranch │ │ │ │ └── android │ │ │ │ └── geoquiz │ │ │ │ ├── CheatActivity.java │ │ │ │ ├── Question.java │ │ │ │ └── QuizActivity.java │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ ├── arrow_left.png │ │ │ └── arrow_right.png │ │ │ ├── drawable-mdpi │ │ │ ├── arrow_left.png │ │ │ └── arrow_right.png │ │ │ ├── drawable-xhdpi │ │ │ ├── arrow_left.png │ │ │ └── arrow_right.png │ │ │ ├── drawable-xxhdpi │ │ │ ├── arrow_left.png │ │ │ └── arrow_right.png │ │ │ ├── layout-land │ │ │ └── activity_quiz.xml │ │ │ ├── layout │ │ │ ├── activity_cheat.xml │ │ │ └── activity_quiz.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── bignerdranch │ │ └── android │ │ └── geoquiz │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Ch06 └── GeoQuiz │ ├── .gitignore │ ├── .idea │ ├── .name │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── encodings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── bignerdranch │ │ │ └── android │ │ │ └── geoquiz │ │ │ └── ApplicationTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── bignerdranch │ │ │ │ └── android │ │ │ │ └── geoquiz │ │ │ │ ├── CheatActivity.java │ │ │ │ ├── Question.java │ │ │ │ └── QuizActivity.java │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ ├── arrow_left.png │ │ │ └── arrow_right.png │ │ │ ├── drawable-mdpi │ │ │ ├── arrow_left.png │ │ │ └── arrow_right.png │ │ │ ├── drawable-xhdpi │ │ │ ├── arrow_left.png │ │ │ └── arrow_right.png │ │ │ ├── drawable-xxhdpi │ │ │ ├── arrow_left.png │ │ │ └── arrow_right.png │ │ │ ├── layout-land │ │ │ └── activity_quiz.xml │ │ │ ├── layout │ │ │ ├── activity_cheat.xml │ │ │ └── activity_quiz.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── bignerdranch │ │ └── android │ │ └── geoquiz │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Ch07 └── CriminalIntent │ ├── .gitignore │ ├── .idea │ ├── .name │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── encodings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── bignerdranch │ │ │ └── android │ │ │ └── criminalintent │ │ │ └── ApplicationTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── bignerdranch │ │ │ │ └── android │ │ │ │ └── criminalintent │ │ │ │ ├── Crime.java │ │ │ │ ├── CrimeActivity.java │ │ │ │ └── CrimeFragment.java │ │ └── res │ │ │ ├── layout │ │ │ ├── activity_crime.xml │ │ │ └── fragment_crime.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── bignerdranch │ │ └── android │ │ └── criminalintent │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Ch08 └── CriminalIntent │ ├── .gitignore │ ├── .idea │ ├── .name │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── encodings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── bignerdranch │ │ │ └── android │ │ │ └── criminalintent │ │ │ └── ApplicationTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── bignerdranch │ │ │ │ └── android │ │ │ │ └── criminalintent │ │ │ │ ├── Crime.java │ │ │ │ ├── CrimeActivity.java │ │ │ │ └── CrimeFragment.java │ │ └── res │ │ │ ├── layout-land │ │ │ └── fragment_crime.xml │ │ │ ├── layout │ │ │ ├── activity_crime.xml │ │ │ └── fragment_crime.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── bignerdranch │ │ └── android │ │ └── criminalintent │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Ch09 └── CriminalIntent │ ├── .gitignore │ ├── .idea │ ├── .name │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── encodings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── bignerdranch │ │ │ └── android │ │ │ └── criminalintent │ │ │ └── ApplicationTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── bignerdranch │ │ │ │ └── android │ │ │ │ └── criminalintent │ │ │ │ ├── Crime.java │ │ │ │ ├── CrimeActivity.java │ │ │ │ ├── CrimeFragment.java │ │ │ │ ├── CrimeLab.java │ │ │ │ ├── CrimeListActivity.java │ │ │ │ ├── CrimeListFragment.java │ │ │ │ └── SingleFragmentActivity.java │ │ └── res │ │ │ ├── layout-land │ │ │ └── fragment_crime.xml │ │ │ ├── layout │ │ │ ├── activity_fragment.xml │ │ │ ├── fragment_crime.xml │ │ │ ├── fragment_crime_list.xml │ │ │ └── list_item_crime.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── bignerdranch │ │ └── android │ │ └── criminalintent │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Ch10 └── CriminalIntent │ ├── .gitignore │ ├── .idea │ ├── .name │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── encodings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── bignerdranch │ │ │ └── android │ │ │ └── criminalintent │ │ │ └── ApplicationTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── bignerdranch │ │ │ │ └── android │ │ │ │ └── criminalintent │ │ │ │ ├── Crime.java │ │ │ │ ├── CrimeActivity.java │ │ │ │ ├── CrimeFragment.java │ │ │ │ ├── CrimeLab.java │ │ │ │ ├── CrimeListActivity.java │ │ │ │ ├── CrimeListFragment.java │ │ │ │ └── SingleFragmentActivity.java │ │ └── res │ │ │ ├── layout-land │ │ │ └── fragment_crime.xml │ │ │ ├── layout │ │ │ ├── activity_fragment.xml │ │ │ ├── fragment_crime.xml │ │ │ ├── fragment_crime_list.xml │ │ │ └── list_item_crime.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── bignerdranch │ │ └── android │ │ └── criminalintent │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Ch11 └── CriminalIntent │ ├── .gitignore │ ├── .idea │ ├── .name │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── encodings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── bignerdranch │ │ │ └── android │ │ │ └── criminalintent │ │ │ └── ApplicationTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── bignerdranch │ │ │ │ └── android │ │ │ │ └── criminalintent │ │ │ │ ├── Crime.java │ │ │ │ ├── CrimeFragment.java │ │ │ │ ├── CrimeLab.java │ │ │ │ ├── CrimeListActivity.java │ │ │ │ ├── CrimeListFragment.java │ │ │ │ ├── CrimePagerActivity.java │ │ │ │ └── SingleFragmentActivity.java │ │ └── res │ │ │ ├── layout-land │ │ │ └── fragment_crime.xml │ │ │ ├── layout │ │ │ ├── activity_crime_pager.xml │ │ │ ├── activity_fragment.xml │ │ │ ├── fragment_crime.xml │ │ │ ├── fragment_crime_list.xml │ │ │ └── list_item_crime.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── bignerdranch │ │ └── android │ │ └── criminalintent │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Ch12 └── CriminalIntent │ ├── .gitignore │ ├── .idea │ ├── .name │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── encodings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── bignerdranch │ │ │ └── android │ │ │ └── criminalintent │ │ │ └── ApplicationTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── bignerdranch │ │ │ │ └── android │ │ │ │ └── criminalintent │ │ │ │ ├── Crime.java │ │ │ │ ├── CrimeFragment.java │ │ │ │ ├── CrimeLab.java │ │ │ │ ├── CrimeListActivity.java │ │ │ │ ├── CrimeListFragment.java │ │ │ │ ├── CrimePagerActivity.java │ │ │ │ ├── DatePickerFragment.java │ │ │ │ └── SingleFragmentActivity.java │ │ └── res │ │ │ ├── layout-land │ │ │ └── fragment_crime.xml │ │ │ ├── layout │ │ │ ├── activity_crime_pager.xml │ │ │ ├── activity_fragment.xml │ │ │ ├── dialog_date.xml │ │ │ ├── fragment_crime.xml │ │ │ ├── fragment_crime_list.xml │ │ │ └── list_item_crime.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── bignerdranch │ │ └── android │ │ └── criminalintent │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Ch13 └── CriminalIntent │ ├── .gitignore │ ├── .idea │ ├── .name │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── encodings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── bignerdranch │ │ │ └── android │ │ │ └── criminalintent │ │ │ └── ApplicationTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── bignerdranch │ │ │ │ └── android │ │ │ │ └── criminalintent │ │ │ │ ├── Crime.java │ │ │ │ ├── CrimeFragment.java │ │ │ │ ├── CrimeLab.java │ │ │ │ ├── CrimeListActivity.java │ │ │ │ ├── CrimeListFragment.java │ │ │ │ ├── CrimePagerActivity.java │ │ │ │ ├── DatePickerFragment.java │ │ │ │ └── SingleFragmentActivity.java │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ └── ic_menu_add.png │ │ │ ├── drawable-mdpi │ │ │ └── ic_menu_add.png │ │ │ ├── drawable-xhdpi │ │ │ └── ic_menu_add.png │ │ │ ├── drawable-xxhdpi │ │ │ └── ic_menu_add.png │ │ │ ├── layout-land │ │ │ └── fragment_crime.xml │ │ │ ├── layout │ │ │ ├── activity_crime_pager.xml │ │ │ ├── activity_fragment.xml │ │ │ ├── dialog_date.xml │ │ │ ├── fragment_crime.xml │ │ │ ├── fragment_crime_list.xml │ │ │ └── list_item_crime.xml │ │ │ ├── menu │ │ │ └── fragment_crime_list.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── bignerdranch │ │ └── android │ │ └── criminalintent │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Ch14 └── CriminalIntent │ ├── .gitignore │ ├── .idea │ ├── .name │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── encodings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── bignerdranch │ │ │ └── android │ │ │ └── criminalintent │ │ │ └── ApplicationTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── bignerdranch │ │ │ │ └── android │ │ │ │ └── criminalintent │ │ │ │ ├── Crime.java │ │ │ │ ├── CrimeFragment.java │ │ │ │ ├── CrimeLab.java │ │ │ │ ├── CrimeListActivity.java │ │ │ │ ├── CrimeListFragment.java │ │ │ │ ├── CrimePagerActivity.java │ │ │ │ ├── DatePickerFragment.java │ │ │ │ ├── SingleFragmentActivity.java │ │ │ │ └── database │ │ │ │ ├── CrimeBaseHelper.java │ │ │ │ ├── CrimeCursorWrapper.java │ │ │ │ └── CrimeDbSchema.java │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ └── ic_menu_add.png │ │ │ ├── drawable-mdpi │ │ │ └── ic_menu_add.png │ │ │ ├── drawable-xhdpi │ │ │ └── ic_menu_add.png │ │ │ ├── drawable-xxhdpi │ │ │ └── ic_menu_add.png │ │ │ ├── layout-land │ │ │ └── fragment_crime.xml │ │ │ ├── layout │ │ │ ├── activity_crime_pager.xml │ │ │ ├── activity_fragment.xml │ │ │ ├── dialog_date.xml │ │ │ ├── fragment_crime.xml │ │ │ ├── fragment_crime_list.xml │ │ │ └── list_item_crime.xml │ │ │ ├── menu │ │ │ └── fragment_crime_list.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── bignerdranch │ │ └── android │ │ └── criminalintent │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Ch15 └── CriminalIntent │ ├── .gitignore │ ├── .idea │ ├── .name │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── encodings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── bignerdranch │ │ │ └── android │ │ │ └── criminalintent │ │ │ └── ApplicationTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── bignerdranch │ │ │ │ └── android │ │ │ │ └── criminalintent │ │ │ │ ├── Crime.java │ │ │ │ ├── CrimeFragment.java │ │ │ │ ├── CrimeLab.java │ │ │ │ ├── CrimeListActivity.java │ │ │ │ ├── CrimeListFragment.java │ │ │ │ ├── CrimePagerActivity.java │ │ │ │ ├── DatePickerFragment.java │ │ │ │ ├── SingleFragmentActivity.java │ │ │ │ └── database │ │ │ │ ├── CrimeBaseHelper.java │ │ │ │ ├── CrimeCursorWrapper.java │ │ │ │ └── CrimeDbSchema.java │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ └── ic_menu_add.png │ │ │ ├── drawable-mdpi │ │ │ └── ic_menu_add.png │ │ │ ├── drawable-xhdpi │ │ │ └── ic_menu_add.png │ │ │ ├── drawable-xxhdpi │ │ │ └── ic_menu_add.png │ │ │ ├── layout-land │ │ │ └── fragment_crime.xml │ │ │ ├── layout │ │ │ ├── activity_crime_pager.xml │ │ │ ├── activity_fragment.xml │ │ │ ├── dialog_date.xml │ │ │ ├── fragment_crime.xml │ │ │ ├── fragment_crime_list.xml │ │ │ └── list_item_crime.xml │ │ │ ├── menu │ │ │ └── fragment_crime_list.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── bignerdranch │ │ └── android │ │ └── criminalintent │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Ch16 └── CriminalIntent │ ├── .gitignore │ ├── .idea │ ├── .name │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── encodings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── bignerdranch │ │ │ └── android │ │ │ └── criminalintent │ │ │ └── ApplicationTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── bignerdranch │ │ │ │ └── android │ │ │ │ └── criminalintent │ │ │ │ ├── Crime.java │ │ │ │ ├── CrimeFragment.java │ │ │ │ ├── CrimeLab.java │ │ │ │ ├── CrimeListActivity.java │ │ │ │ ├── CrimeListFragment.java │ │ │ │ ├── CrimePagerActivity.java │ │ │ │ ├── DatePickerFragment.java │ │ │ │ ├── PictureUtils.java │ │ │ │ ├── SingleFragmentActivity.java │ │ │ │ └── database │ │ │ │ ├── CrimeBaseHelper.java │ │ │ │ ├── CrimeCursorWrapper.java │ │ │ │ └── CrimeDbSchema.java │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ └── ic_menu_add.png │ │ │ ├── drawable-mdpi │ │ │ └── ic_menu_add.png │ │ │ ├── drawable-xhdpi │ │ │ └── ic_menu_add.png │ │ │ ├── drawable-xxhdpi │ │ │ └── ic_menu_add.png │ │ │ ├── layout-land │ │ │ └── fragment_crime.xml │ │ │ ├── layout │ │ │ ├── activity_crime_pager.xml │ │ │ ├── activity_fragment.xml │ │ │ ├── dialog_date.xml │ │ │ ├── fragment_crime.xml │ │ │ ├── fragment_crime_list.xml │ │ │ ├── list_item_crime.xml │ │ │ └── view_camera_and_title.xml │ │ │ ├── menu │ │ │ └── fragment_crime_list.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── bignerdranch │ │ └── android │ │ └── criminalintent │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Ch17 └── CriminalIntent │ ├── .gitignore │ ├── .idea │ ├── .name │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── encodings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── bignerdranch │ │ │ └── android │ │ │ └── criminalintent │ │ │ └── ApplicationTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── bignerdranch │ │ │ │ └── android │ │ │ │ └── criminalintent │ │ │ │ ├── Crime.java │ │ │ │ ├── CrimeFragment.java │ │ │ │ ├── CrimeLab.java │ │ │ │ ├── CrimeListActivity.java │ │ │ │ ├── CrimeListFragment.java │ │ │ │ ├── CrimePagerActivity.java │ │ │ │ ├── DatePickerFragment.java │ │ │ │ ├── PictureUtils.java │ │ │ │ ├── SingleFragmentActivity.java │ │ │ │ └── database │ │ │ │ ├── CrimeBaseHelper.java │ │ │ │ ├── CrimeCursorWrapper.java │ │ │ │ └── CrimeDbSchema.java │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ └── ic_menu_add.png │ │ │ ├── drawable-mdpi │ │ │ └── ic_menu_add.png │ │ │ ├── drawable-xhdpi │ │ │ └── ic_menu_add.png │ │ │ ├── drawable-xxhdpi │ │ │ └── ic_menu_add.png │ │ │ ├── layout-land │ │ │ └── fragment_crime.xml │ │ │ ├── layout │ │ │ ├── activity_crime_pager.xml │ │ │ ├── activity_fragment.xml │ │ │ ├── activity_twopane.xml │ │ │ ├── dialog_date.xml │ │ │ ├── fragment_crime.xml │ │ │ ├── fragment_crime_list.xml │ │ │ ├── list_item_crime.xml │ │ │ └── view_camera_and_title.xml │ │ │ ├── menu │ │ │ └── fragment_crime_list.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-sw600dp │ │ │ └── refs.xml │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── refs.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── bignerdranch │ │ └── android │ │ └── criminalintent │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Ch18 └── BeatBox │ ├── .gitignore │ ├── .idea │ ├── .name │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── encodings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── bignerdranch │ │ │ └── android │ │ │ └── beatbox │ │ │ └── ApplicationTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ │ └── sample_sounds │ │ │ │ ├── 65_cjipie.wav │ │ │ │ ├── 66_indios.wav │ │ │ │ ├── 67_indios2.wav │ │ │ │ ├── 68_indios3.wav │ │ │ │ ├── 69_ohm-loko.wav │ │ │ │ ├── 70_eh.wav │ │ │ │ ├── 71_hruuhb.wav │ │ │ │ ├── 72_houb.wav │ │ │ │ ├── 73_houu.wav │ │ │ │ ├── 74_jah.wav │ │ │ │ ├── 75_jhuee.wav │ │ │ │ ├── 76_joooaah.wav │ │ │ │ ├── 77_juob.wav │ │ │ │ ├── 78_jueb.wav │ │ │ │ ├── 79_long-scream.wav │ │ │ │ ├── 80_oaaaahmmm.wav │ │ │ │ ├── 81_uehea.wav │ │ │ │ ├── 82_uhraa.wav │ │ │ │ ├── 83_uoh.wav │ │ │ │ ├── 84_uueh.wav │ │ │ │ ├── 85_jeeh.wav │ │ │ │ └── 86_oa-h.wav │ │ ├── java │ │ │ └── com │ │ │ │ └── bignerdranch │ │ │ │ └── android │ │ │ │ └── beatbox │ │ │ │ ├── BeatBox.java │ │ │ │ ├── BeatBoxActivity.java │ │ │ │ ├── BeatBoxFragment.java │ │ │ │ ├── SingleFragmentActivity.java │ │ │ │ └── Sound.java │ │ └── res │ │ │ ├── layout │ │ │ ├── activity_fragment.xml │ │ │ ├── fragment_beat_box.xml │ │ │ └── list_item_sound.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── bignerdranch │ │ └── android │ │ └── beatbox │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Ch19 └── BeatBox │ ├── .gitignore │ ├── .idea │ ├── .name │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── encodings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── bignerdranch │ │ │ └── android │ │ │ └── beatbox │ │ │ └── ApplicationTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ │ └── sample_sounds │ │ │ │ ├── 65_cjipie.wav │ │ │ │ ├── 66_indios.wav │ │ │ │ ├── 67_indios2.wav │ │ │ │ ├── 68_indios3.wav │ │ │ │ ├── 69_ohm-loko.wav │ │ │ │ ├── 70_eh.wav │ │ │ │ ├── 71_hruuhb.wav │ │ │ │ ├── 72_houb.wav │ │ │ │ ├── 73_houu.wav │ │ │ │ ├── 74_jah.wav │ │ │ │ ├── 75_jhuee.wav │ │ │ │ ├── 76_joooaah.wav │ │ │ │ ├── 77_juob.wav │ │ │ │ ├── 78_jueb.wav │ │ │ │ ├── 79_long-scream.wav │ │ │ │ ├── 80_oaaaahmmm.wav │ │ │ │ ├── 81_uehea.wav │ │ │ │ ├── 82_uhraa.wav │ │ │ │ ├── 83_uoh.wav │ │ │ │ ├── 84_uueh.wav │ │ │ │ ├── 85_jeeh.wav │ │ │ │ └── 86_oa-h.wav │ │ ├── java │ │ │ └── com │ │ │ │ └── bignerdranch │ │ │ │ └── android │ │ │ │ └── beatbox │ │ │ │ ├── BeatBox.java │ │ │ │ ├── BeatBoxActivity.java │ │ │ │ ├── BeatBoxFragment.java │ │ │ │ ├── SingleFragmentActivity.java │ │ │ │ └── Sound.java │ │ └── res │ │ │ ├── layout │ │ │ ├── activity_fragment.xml │ │ │ ├── fragment_beat_box.xml │ │ │ └── list_item_sound.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── bignerdranch │ │ └── android │ │ └── beatbox │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Ch20 └── BeatBox │ ├── .gitignore │ ├── .idea │ ├── .name │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── encodings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── bignerdranch │ │ │ └── android │ │ │ └── beatbox │ │ │ └── ApplicationTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ │ └── sample_sounds │ │ │ │ ├── 65_cjipie.wav │ │ │ │ ├── 66_indios.wav │ │ │ │ ├── 67_indios2.wav │ │ │ │ ├── 68_indios3.wav │ │ │ │ ├── 69_ohm-loko.wav │ │ │ │ ├── 70_eh.wav │ │ │ │ ├── 71_hruuhb.wav │ │ │ │ ├── 72_houb.wav │ │ │ │ ├── 73_houu.wav │ │ │ │ ├── 74_jah.wav │ │ │ │ ├── 75_jhuee.wav │ │ │ │ ├── 76_joooaah.wav │ │ │ │ ├── 77_juob.wav │ │ │ │ ├── 78_jueb.wav │ │ │ │ ├── 79_long-scream.wav │ │ │ │ ├── 80_oaaaahmmm.wav │ │ │ │ ├── 81_uehea.wav │ │ │ │ ├── 82_uhraa.wav │ │ │ │ ├── 83_uoh.wav │ │ │ │ ├── 84_uueh.wav │ │ │ │ ├── 85_jeeh.wav │ │ │ │ └── 86_oa-h.wav │ │ ├── java │ │ │ └── com │ │ │ │ └── bignerdranch │ │ │ │ └── android │ │ │ │ └── beatbox │ │ │ │ ├── BeatBox.java │ │ │ │ ├── BeatBoxActivity.java │ │ │ │ ├── BeatBoxFragment.java │ │ │ │ ├── SingleFragmentActivity.java │ │ │ │ └── Sound.java │ │ └── res │ │ │ ├── layout │ │ │ ├── activity_fragment.xml │ │ │ ├── fragment_beat_box.xml │ │ │ └── list_item_sound.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── bignerdranch │ │ └── android │ │ └── beatbox │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Ch21 └── BeatBox │ ├── .gitignore │ ├── .idea │ ├── .name │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── encodings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── bignerdranch │ │ │ └── android │ │ │ └── beatbox │ │ │ └── ApplicationTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ │ └── sample_sounds │ │ │ │ ├── 65_cjipie.wav │ │ │ │ ├── 66_indios.wav │ │ │ │ ├── 67_indios2.wav │ │ │ │ ├── 68_indios3.wav │ │ │ │ ├── 69_ohm-loko.wav │ │ │ │ ├── 70_eh.wav │ │ │ │ ├── 71_hruuhb.wav │ │ │ │ ├── 72_houb.wav │ │ │ │ ├── 73_houu.wav │ │ │ │ ├── 74_jah.wav │ │ │ │ ├── 75_jhuee.wav │ │ │ │ ├── 76_joooaah.wav │ │ │ │ ├── 77_juob.wav │ │ │ │ ├── 78_jueb.wav │ │ │ │ ├── 79_long-scream.wav │ │ │ │ ├── 80_oaaaahmmm.wav │ │ │ │ ├── 81_uehea.wav │ │ │ │ ├── 82_uhraa.wav │ │ │ │ ├── 83_uoh.wav │ │ │ │ ├── 84_uueh.wav │ │ │ │ ├── 85_jeeh.wav │ │ │ │ └── 86_oa-h.wav │ │ ├── java │ │ │ └── com │ │ │ │ └── bignerdranch │ │ │ │ └── android │ │ │ │ └── beatbox │ │ │ │ ├── BeatBox.java │ │ │ │ ├── BeatBoxActivity.java │ │ │ │ ├── BeatBoxFragment.java │ │ │ │ ├── SingleFragmentActivity.java │ │ │ │ └── Sound.java │ │ └── res │ │ │ ├── drawable-xxhdpi │ │ │ ├── ic_button_beat_box_default.png │ │ │ └── ic_button_beat_box_pressed.png │ │ │ ├── drawable │ │ │ ├── button_beat_box.xml │ │ │ ├── button_beat_box_normal.xml │ │ │ └── button_beat_box_pressed.xml │ │ │ ├── layout │ │ │ ├── activity_fragment.xml │ │ │ ├── fragment_beat_box.xml │ │ │ └── list_item_sound.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── bignerdranch │ │ └── android │ │ └── beatbox │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Ch22 └── NerdLauncher │ ├── .gitignore │ ├── .idea │ ├── .name │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── encodings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml │ ├── NerdLauncher.iml │ ├── app │ ├── .gitignore │ ├── app.iml │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── bignerdranch │ │ │ └── android │ │ │ └── nerdlauncher │ │ │ └── ApplicationTest.java │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── bignerdranch │ │ │ └── android │ │ │ └── nerdlauncher │ │ │ ├── NerdLauncherActivity.java │ │ │ ├── NerdLauncherFragment.java │ │ │ └── SingleFragmentActivity.java │ │ └── res │ │ ├── layout │ │ ├── activity_fragment.xml │ │ └── fragment_nerd_launcher.xml │ │ ├── menu │ │ └── menu_nerd_launcher.xml │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ ├── values-w820dp │ │ └── dimens.xml │ │ └── values │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Ch23 └── PhotoGallery │ ├── .gitignore │ ├── .idea │ ├── .name │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── encodings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── bignerdranch │ │ │ └── android │ │ │ └── photogallery │ │ │ └── ApplicationTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── bignerdranch │ │ │ │ └── android │ │ │ │ └── photogallery │ │ │ │ ├── FlickrFetchr.java │ │ │ │ ├── GalleryItem.java │ │ │ │ ├── PhotoGalleryActivity.java │ │ │ │ ├── PhotoGalleryFragment.java │ │ │ │ └── SingleFragmentActivity.java │ │ └── res │ │ │ ├── layout │ │ │ ├── activity_fragment.xml │ │ │ └── fragment_photo_gallery.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── bignerdranch │ │ └── android │ │ └── photogallery │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Ch24 └── PhotoGallery │ ├── .gitignore │ ├── .idea │ ├── .name │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── encodings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── bignerdranch │ │ │ └── android │ │ │ └── photogallery │ │ │ └── ApplicationTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── bignerdranch │ │ │ │ └── android │ │ │ │ └── photogallery │ │ │ │ ├── FlickrFetchr.java │ │ │ │ ├── GalleryItem.java │ │ │ │ ├── PhotoGalleryActivity.java │ │ │ │ ├── PhotoGalleryFragment.java │ │ │ │ ├── SingleFragmentActivity.java │ │ │ │ └── ThumbnailDownloader.java │ │ └── res │ │ │ ├── drawable │ │ │ └── bill_up_close.png │ │ │ ├── layout │ │ │ ├── activity_fragment.xml │ │ │ ├── fragment_photo_gallery.xml │ │ │ └── gallery_item.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── bignerdranch │ │ └── android │ │ └── photogallery │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Ch25 └── PhotoGallery │ ├── .gitignore │ ├── .idea │ ├── .name │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── encodings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── bignerdranch │ │ │ └── android │ │ │ └── photogallery │ │ │ └── ApplicationTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── bignerdranch │ │ │ │ └── android │ │ │ │ └── photogallery │ │ │ │ ├── FlickrFetchr.java │ │ │ │ ├── GalleryItem.java │ │ │ │ ├── PhotoGalleryActivity.java │ │ │ │ ├── PhotoGalleryFragment.java │ │ │ │ ├── QueryPreferences.java │ │ │ │ ├── SingleFragmentActivity.java │ │ │ │ └── ThumbnailDownloader.java │ │ └── res │ │ │ ├── drawable │ │ │ └── bill_up_close.png │ │ │ ├── layout │ │ │ ├── activity_fragment.xml │ │ │ ├── fragment_photo_gallery.xml │ │ │ └── gallery_item.xml │ │ │ ├── menu │ │ │ └── fragment_photo_gallery.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── bignerdranch │ │ └── android │ │ └── photogallery │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Ch26 └── PhotoGallery │ ├── .gitignore │ ├── .idea │ ├── .name │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── encodings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── bignerdranch │ │ │ └── android │ │ │ └── photogallery │ │ │ └── ApplicationTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── bignerdranch │ │ │ │ └── android │ │ │ │ └── photogallery │ │ │ │ ├── FlickrFetchr.java │ │ │ │ ├── GalleryItem.java │ │ │ │ ├── PhotoGalleryActivity.java │ │ │ │ ├── PhotoGalleryFragment.java │ │ │ │ ├── PollService.java │ │ │ │ ├── QueryPreferences.java │ │ │ │ ├── SingleFragmentActivity.java │ │ │ │ └── ThumbnailDownloader.java │ │ └── res │ │ │ ├── drawable │ │ │ └── bill_up_close.png │ │ │ ├── layout │ │ │ ├── activity_fragment.xml │ │ │ ├── fragment_photo_gallery.xml │ │ │ └── gallery_item.xml │ │ │ ├── menu │ │ │ └── fragment_photo_gallery.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── bignerdranch │ │ └── android │ │ └── photogallery │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Ch27 └── PhotoGallery │ ├── .gitignore │ ├── .idea │ ├── .name │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── encodings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── bignerdranch │ │ │ └── android │ │ │ └── photogallery │ │ │ └── ApplicationTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── bignerdranch │ │ │ │ └── android │ │ │ │ └── photogallery │ │ │ │ ├── FlickrFetchr.java │ │ │ │ ├── GalleryItem.java │ │ │ │ ├── NotificationReceiver.java │ │ │ │ ├── PhotoGalleryActivity.java │ │ │ │ ├── PhotoGalleryFragment.java │ │ │ │ ├── PollService.java │ │ │ │ ├── QueryPreferences.java │ │ │ │ ├── SingleFragmentActivity.java │ │ │ │ ├── StartupReceiver.java │ │ │ │ ├── ThumbnailDownloader.java │ │ │ │ └── VisibleFragment.java │ │ └── res │ │ │ ├── drawable │ │ │ └── bill_up_close.png │ │ │ ├── layout │ │ │ ├── activity_fragment.xml │ │ │ ├── fragment_photo_gallery.xml │ │ │ └── gallery_item.xml │ │ │ ├── menu │ │ │ └── fragment_photo_gallery.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── bignerdranch │ │ └── android │ │ └── photogallery │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Ch28 └── PhotoGallery │ ├── .gitignore │ ├── .idea │ ├── .name │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── encodings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── bignerdranch │ │ │ └── android │ │ │ └── photogallery │ │ │ └── ApplicationTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── bignerdranch │ │ │ │ └── android │ │ │ │ └── photogallery │ │ │ │ ├── FlickrFetchr.java │ │ │ │ ├── GalleryItem.java │ │ │ │ ├── NotificationReceiver.java │ │ │ │ ├── PhotoGalleryActivity.java │ │ │ │ ├── PhotoGalleryFragment.java │ │ │ │ ├── PhotoPageActivity.java │ │ │ │ ├── PhotoPageFragment.java │ │ │ │ ├── PollService.java │ │ │ │ ├── QueryPreferences.java │ │ │ │ ├── SingleFragmentActivity.java │ │ │ │ ├── StartupReceiver.java │ │ │ │ ├── ThumbnailDownloader.java │ │ │ │ └── VisibleFragment.java │ │ └── res │ │ │ ├── drawable │ │ │ └── bill_up_close.png │ │ │ ├── layout │ │ │ ├── activity_fragment.xml │ │ │ ├── fragment_photo_gallery.xml │ │ │ ├── fragment_photo_page.xml │ │ │ └── gallery_item.xml │ │ │ ├── menu │ │ │ └── fragment_photo_gallery.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── bignerdranch │ │ └── android │ │ └── photogallery │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Ch29 └── DragAndDraw │ ├── .gitignore │ ├── .idea │ ├── .name │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── encodings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── bignerdranch │ │ │ └── android │ │ │ └── draganddraw │ │ │ └── ApplicationTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── bignerdranch │ │ │ │ └── android │ │ │ │ └── draganddraw │ │ │ │ ├── Box.java │ │ │ │ ├── BoxDrawingView.java │ │ │ │ ├── DragAndDrawActivity.java │ │ │ │ ├── DragAndDrawFragment.java │ │ │ │ └── SingleFragmentActivity.java │ │ └── res │ │ │ ├── layout │ │ │ ├── activity_fragment.xml │ │ │ └── fragment_drag_and_draw.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── bignerdranch │ │ └── android │ │ └── draganddraw │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Ch30 └── Sunset │ ├── .gitignore │ ├── .idea │ ├── .name │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── encodings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── bignerdranch │ │ │ └── android │ │ │ └── sunset │ │ │ └── ApplicationTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── bignerdranch │ │ │ │ └── android │ │ │ │ └── sunset │ │ │ │ ├── SingleFragmentActivity.java │ │ │ │ ├── SunsetActivity.java │ │ │ │ └── SunsetFragment.java │ │ └── res │ │ │ ├── drawable │ │ │ └── sun.xml │ │ │ ├── layout │ │ │ ├── activity_fragment.xml │ │ │ ├── activity_sunset.xml │ │ │ └── fragment_sunset.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── bignerdranch │ │ └── android │ │ └── sunset │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Ch31 └── Locatr │ ├── .gitignore │ ├── .idea │ ├── .name │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── encodings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── bignerdranch │ │ │ └── android │ │ │ └── locatr │ │ │ └── ApplicationTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── bignerdranch │ │ │ │ └── android │ │ │ │ └── locatr │ │ │ │ ├── FlickrFetchr.java │ │ │ │ ├── GalleryItem.java │ │ │ │ ├── LocatrActivity.java │ │ │ │ ├── LocatrFragment.java │ │ │ │ └── SingleFragmentActivity.java │ │ └── res │ │ │ ├── layout │ │ │ ├── activity_fragment.xml │ │ │ └── fragment_locatr.xml │ │ │ ├── menu │ │ │ └── menu_locatr.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── bignerdranch │ │ └── android │ │ └── locatr │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Ch32 └── Locatr │ ├── .gitignore │ ├── .idea │ ├── .name │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── encodings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── bignerdranch │ │ │ └── android │ │ │ └── locatr │ │ │ └── ApplicationTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── bignerdranch │ │ │ │ └── android │ │ │ │ └── locatr │ │ │ │ ├── FlickrFetchr.java │ │ │ │ ├── GalleryItem.java │ │ │ │ ├── LocatrActivity.java │ │ │ │ ├── LocatrFragment.java │ │ │ │ └── SingleFragmentActivity.java │ │ └── res │ │ │ ├── layout │ │ │ ├── activity_fragment.xml │ │ │ └── fragment_locatr.xml │ │ │ ├── menu │ │ │ └── menu_locatr.xml │ │ │ ├── mipmap-hdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-mdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── mipmap-xxxhdpi │ │ │ └── ic_launcher.png │ │ │ ├── values-w820dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── bignerdranch │ │ └── android │ │ └── locatr │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Ch33 ├── BeatBox │ ├── .gitignore │ ├── .idea │ │ ├── .name │ │ ├── compiler.xml │ │ ├── copyright │ │ │ └── profiles_settings.xml │ │ ├── encodings.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ └── runConfigurations.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── bignerdranch │ │ │ │ └── android │ │ │ │ └── beatbox │ │ │ │ └── ApplicationTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── assets │ │ │ │ └── sample_sounds │ │ │ │ │ ├── 65_cjipie.wav │ │ │ │ │ ├── 66_indios.wav │ │ │ │ │ ├── 67_indios2.wav │ │ │ │ │ ├── 68_indios3.wav │ │ │ │ │ ├── 69_ohm-loko.wav │ │ │ │ │ ├── 70_eh.wav │ │ │ │ │ ├── 71_hruuhb.wav │ │ │ │ │ ├── 72_houb.wav │ │ │ │ │ ├── 73_houu.wav │ │ │ │ │ ├── 74_jah.wav │ │ │ │ │ ├── 75_jhuee.wav │ │ │ │ │ ├── 76_joooaah.wav │ │ │ │ │ ├── 77_juob.wav │ │ │ │ │ ├── 78_jueb.wav │ │ │ │ │ ├── 79_long-scream.wav │ │ │ │ │ ├── 80_oaaaahmmm.wav │ │ │ │ │ ├── 81_uehea.wav │ │ │ │ │ ├── 82_uhraa.wav │ │ │ │ │ ├── 83_uoh.wav │ │ │ │ │ ├── 84_uueh.wav │ │ │ │ │ ├── 85_jeeh.wav │ │ │ │ │ └── 86_oa-h.wav │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── bignerdranch │ │ │ │ │ └── android │ │ │ │ │ └── beatbox │ │ │ │ │ ├── BeatBox.java │ │ │ │ │ ├── BeatBoxActivity.java │ │ │ │ │ ├── BeatBoxFragment.java │ │ │ │ │ ├── SingleFragmentActivity.java │ │ │ │ │ └── Sound.java │ │ │ └── res │ │ │ │ ├── drawable-xxhdpi │ │ │ │ ├── ic_button_beat_box_default.png │ │ │ │ └── ic_button_beat_box_pressed.png │ │ │ │ ├── drawable │ │ │ │ ├── button_beat_box.xml │ │ │ │ ├── button_beat_box_normal.xml │ │ │ │ └── button_beat_box_pressed.xml │ │ │ │ ├── layout │ │ │ │ ├── activity_fragment.xml │ │ │ │ ├── fragment_beat_box.xml │ │ │ │ └── list_item_sound.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ └── ic_launcher.png │ │ │ │ ├── values-w820dp │ │ │ │ └── dimens.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── dimens.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── bignerdranch │ │ │ └── android │ │ │ └── beatbox │ │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle └── MateriAl │ ├── .gitignore │ ├── .idea │ ├── .name │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── encodings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ └── runConfigurations.xml │ ├── MateriAl.iml │ ├── app │ ├── .gitignore │ ├── app.iml │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── bignerdranch │ │ │ └── android │ │ │ └── material │ │ │ └── ApplicationTest.java │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── bignerdranch │ │ │ └── android │ │ │ └── material │ │ │ └── MainActivity.java │ │ └── res │ │ ├── layout │ │ ├── activity_main.xml │ │ └── list_item_card.xml │ │ ├── menu │ │ └── menu_main.xml │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ ├── values-w820dp │ │ └── dimens.xml │ │ └── values │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle └── README.md /Ch01/GeoQuiz/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch01/GeoQuiz/.gitignore -------------------------------------------------------------------------------- /Ch01/GeoQuiz/.idea/.name: -------------------------------------------------------------------------------- 1 | GeoQuiz -------------------------------------------------------------------------------- /Ch01/GeoQuiz/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch01/GeoQuiz/.idea/compiler.xml -------------------------------------------------------------------------------- /Ch01/GeoQuiz/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch01/GeoQuiz/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /Ch01/GeoQuiz/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch01/GeoQuiz/.idea/encodings.xml -------------------------------------------------------------------------------- /Ch01/GeoQuiz/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch01/GeoQuiz/.idea/gradle.xml -------------------------------------------------------------------------------- /Ch01/GeoQuiz/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch01/GeoQuiz/.idea/misc.xml -------------------------------------------------------------------------------- /Ch01/GeoQuiz/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch01/GeoQuiz/.idea/modules.xml -------------------------------------------------------------------------------- /Ch01/GeoQuiz/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch01/GeoQuiz/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /Ch01/GeoQuiz/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Ch01/GeoQuiz/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch01/GeoQuiz/app/build.gradle -------------------------------------------------------------------------------- /Ch01/GeoQuiz/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch01/GeoQuiz/app/proguard-rules.pro -------------------------------------------------------------------------------- /Ch01/GeoQuiz/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch01/GeoQuiz/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Ch01/GeoQuiz/app/src/main/res/layout/activity_quiz.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch01/GeoQuiz/app/src/main/res/layout/activity_quiz.xml -------------------------------------------------------------------------------- /Ch01/GeoQuiz/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch01/GeoQuiz/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Ch01/GeoQuiz/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch01/GeoQuiz/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Ch01/GeoQuiz/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch01/GeoQuiz/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Ch01/GeoQuiz/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch01/GeoQuiz/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /Ch01/GeoQuiz/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch01/GeoQuiz/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Ch01/GeoQuiz/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch01/GeoQuiz/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /Ch01/GeoQuiz/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch01/GeoQuiz/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Ch01/GeoQuiz/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch01/GeoQuiz/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Ch01/GeoQuiz/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch01/GeoQuiz/build.gradle -------------------------------------------------------------------------------- /Ch01/GeoQuiz/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch01/GeoQuiz/gradle.properties -------------------------------------------------------------------------------- /Ch01/GeoQuiz/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch01/GeoQuiz/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Ch01/GeoQuiz/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch01/GeoQuiz/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Ch01/GeoQuiz/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch01/GeoQuiz/gradlew -------------------------------------------------------------------------------- /Ch01/GeoQuiz/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch01/GeoQuiz/gradlew.bat -------------------------------------------------------------------------------- /Ch01/GeoQuiz/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Ch02/GeoQuiz/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch02/GeoQuiz/.gitignore -------------------------------------------------------------------------------- /Ch02/GeoQuiz/.idea/.name: -------------------------------------------------------------------------------- 1 | GeoQuiz -------------------------------------------------------------------------------- /Ch02/GeoQuiz/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch02/GeoQuiz/.idea/compiler.xml -------------------------------------------------------------------------------- /Ch02/GeoQuiz/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch02/GeoQuiz/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /Ch02/GeoQuiz/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch02/GeoQuiz/.idea/encodings.xml -------------------------------------------------------------------------------- /Ch02/GeoQuiz/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch02/GeoQuiz/.idea/gradle.xml -------------------------------------------------------------------------------- /Ch02/GeoQuiz/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch02/GeoQuiz/.idea/misc.xml -------------------------------------------------------------------------------- /Ch02/GeoQuiz/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch02/GeoQuiz/.idea/modules.xml -------------------------------------------------------------------------------- /Ch02/GeoQuiz/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch02/GeoQuiz/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /Ch02/GeoQuiz/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Ch02/GeoQuiz/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch02/GeoQuiz/app/build.gradle -------------------------------------------------------------------------------- /Ch02/GeoQuiz/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch02/GeoQuiz/app/proguard-rules.pro -------------------------------------------------------------------------------- /Ch02/GeoQuiz/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch02/GeoQuiz/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Ch02/GeoQuiz/app/src/main/res/drawable-hdpi/arrow_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch02/GeoQuiz/app/src/main/res/drawable-hdpi/arrow_left.png -------------------------------------------------------------------------------- /Ch02/GeoQuiz/app/src/main/res/drawable-mdpi/arrow_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch02/GeoQuiz/app/src/main/res/drawable-mdpi/arrow_left.png -------------------------------------------------------------------------------- /Ch02/GeoQuiz/app/src/main/res/layout/activity_quiz.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch02/GeoQuiz/app/src/main/res/layout/activity_quiz.xml -------------------------------------------------------------------------------- /Ch02/GeoQuiz/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch02/GeoQuiz/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Ch02/GeoQuiz/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch02/GeoQuiz/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Ch02/GeoQuiz/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch02/GeoQuiz/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Ch02/GeoQuiz/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch02/GeoQuiz/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /Ch02/GeoQuiz/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch02/GeoQuiz/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Ch02/GeoQuiz/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch02/GeoQuiz/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /Ch02/GeoQuiz/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch02/GeoQuiz/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Ch02/GeoQuiz/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch02/GeoQuiz/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Ch02/GeoQuiz/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch02/GeoQuiz/build.gradle -------------------------------------------------------------------------------- /Ch02/GeoQuiz/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch02/GeoQuiz/gradle.properties -------------------------------------------------------------------------------- /Ch02/GeoQuiz/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch02/GeoQuiz/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Ch02/GeoQuiz/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch02/GeoQuiz/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Ch02/GeoQuiz/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch02/GeoQuiz/gradlew -------------------------------------------------------------------------------- /Ch02/GeoQuiz/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch02/GeoQuiz/gradlew.bat -------------------------------------------------------------------------------- /Ch02/GeoQuiz/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Ch03/GeoQuiz/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch03/GeoQuiz/.gitignore -------------------------------------------------------------------------------- /Ch03/GeoQuiz/.idea/.name: -------------------------------------------------------------------------------- 1 | GeoQuiz -------------------------------------------------------------------------------- /Ch03/GeoQuiz/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch03/GeoQuiz/.idea/compiler.xml -------------------------------------------------------------------------------- /Ch03/GeoQuiz/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch03/GeoQuiz/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /Ch03/GeoQuiz/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch03/GeoQuiz/.idea/encodings.xml -------------------------------------------------------------------------------- /Ch03/GeoQuiz/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch03/GeoQuiz/.idea/gradle.xml -------------------------------------------------------------------------------- /Ch03/GeoQuiz/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch03/GeoQuiz/.idea/misc.xml -------------------------------------------------------------------------------- /Ch03/GeoQuiz/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch03/GeoQuiz/.idea/modules.xml -------------------------------------------------------------------------------- /Ch03/GeoQuiz/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch03/GeoQuiz/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /Ch03/GeoQuiz/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Ch03/GeoQuiz/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch03/GeoQuiz/app/build.gradle -------------------------------------------------------------------------------- /Ch03/GeoQuiz/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch03/GeoQuiz/app/proguard-rules.pro -------------------------------------------------------------------------------- /Ch03/GeoQuiz/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch03/GeoQuiz/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Ch03/GeoQuiz/app/src/main/res/drawable-hdpi/arrow_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch03/GeoQuiz/app/src/main/res/drawable-hdpi/arrow_left.png -------------------------------------------------------------------------------- /Ch03/GeoQuiz/app/src/main/res/drawable-mdpi/arrow_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch03/GeoQuiz/app/src/main/res/drawable-mdpi/arrow_left.png -------------------------------------------------------------------------------- /Ch03/GeoQuiz/app/src/main/res/layout/activity_quiz.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch03/GeoQuiz/app/src/main/res/layout/activity_quiz.xml -------------------------------------------------------------------------------- /Ch03/GeoQuiz/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch03/GeoQuiz/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Ch03/GeoQuiz/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch03/GeoQuiz/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Ch03/GeoQuiz/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch03/GeoQuiz/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Ch03/GeoQuiz/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch03/GeoQuiz/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /Ch03/GeoQuiz/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch03/GeoQuiz/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Ch03/GeoQuiz/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch03/GeoQuiz/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /Ch03/GeoQuiz/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch03/GeoQuiz/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Ch03/GeoQuiz/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch03/GeoQuiz/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Ch03/GeoQuiz/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch03/GeoQuiz/build.gradle -------------------------------------------------------------------------------- /Ch03/GeoQuiz/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch03/GeoQuiz/gradle.properties -------------------------------------------------------------------------------- /Ch03/GeoQuiz/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch03/GeoQuiz/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Ch03/GeoQuiz/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch03/GeoQuiz/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Ch03/GeoQuiz/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch03/GeoQuiz/gradlew -------------------------------------------------------------------------------- /Ch03/GeoQuiz/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch03/GeoQuiz/gradlew.bat -------------------------------------------------------------------------------- /Ch03/GeoQuiz/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Ch05/GeoQuiz/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch05/GeoQuiz/.gitignore -------------------------------------------------------------------------------- /Ch05/GeoQuiz/.idea/.name: -------------------------------------------------------------------------------- 1 | GeoQuiz -------------------------------------------------------------------------------- /Ch05/GeoQuiz/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch05/GeoQuiz/.idea/compiler.xml -------------------------------------------------------------------------------- /Ch05/GeoQuiz/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch05/GeoQuiz/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /Ch05/GeoQuiz/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch05/GeoQuiz/.idea/encodings.xml -------------------------------------------------------------------------------- /Ch05/GeoQuiz/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch05/GeoQuiz/.idea/gradle.xml -------------------------------------------------------------------------------- /Ch05/GeoQuiz/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch05/GeoQuiz/.idea/misc.xml -------------------------------------------------------------------------------- /Ch05/GeoQuiz/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch05/GeoQuiz/.idea/modules.xml -------------------------------------------------------------------------------- /Ch05/GeoQuiz/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch05/GeoQuiz/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /Ch05/GeoQuiz/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Ch05/GeoQuiz/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch05/GeoQuiz/app/build.gradle -------------------------------------------------------------------------------- /Ch05/GeoQuiz/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch05/GeoQuiz/app/proguard-rules.pro -------------------------------------------------------------------------------- /Ch05/GeoQuiz/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch05/GeoQuiz/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Ch05/GeoQuiz/app/src/main/res/drawable-hdpi/arrow_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch05/GeoQuiz/app/src/main/res/drawable-hdpi/arrow_left.png -------------------------------------------------------------------------------- /Ch05/GeoQuiz/app/src/main/res/drawable-mdpi/arrow_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch05/GeoQuiz/app/src/main/res/drawable-mdpi/arrow_left.png -------------------------------------------------------------------------------- /Ch05/GeoQuiz/app/src/main/res/layout/activity_cheat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch05/GeoQuiz/app/src/main/res/layout/activity_cheat.xml -------------------------------------------------------------------------------- /Ch05/GeoQuiz/app/src/main/res/layout/activity_quiz.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch05/GeoQuiz/app/src/main/res/layout/activity_quiz.xml -------------------------------------------------------------------------------- /Ch05/GeoQuiz/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch05/GeoQuiz/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Ch05/GeoQuiz/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch05/GeoQuiz/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Ch05/GeoQuiz/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch05/GeoQuiz/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Ch05/GeoQuiz/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch05/GeoQuiz/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /Ch05/GeoQuiz/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch05/GeoQuiz/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Ch05/GeoQuiz/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch05/GeoQuiz/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /Ch05/GeoQuiz/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch05/GeoQuiz/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Ch05/GeoQuiz/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch05/GeoQuiz/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Ch05/GeoQuiz/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch05/GeoQuiz/build.gradle -------------------------------------------------------------------------------- /Ch05/GeoQuiz/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch05/GeoQuiz/gradle.properties -------------------------------------------------------------------------------- /Ch05/GeoQuiz/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch05/GeoQuiz/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Ch05/GeoQuiz/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch05/GeoQuiz/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Ch05/GeoQuiz/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch05/GeoQuiz/gradlew -------------------------------------------------------------------------------- /Ch05/GeoQuiz/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch05/GeoQuiz/gradlew.bat -------------------------------------------------------------------------------- /Ch05/GeoQuiz/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Ch06/GeoQuiz/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch06/GeoQuiz/.gitignore -------------------------------------------------------------------------------- /Ch06/GeoQuiz/.idea/.name: -------------------------------------------------------------------------------- 1 | GeoQuiz -------------------------------------------------------------------------------- /Ch06/GeoQuiz/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch06/GeoQuiz/.idea/compiler.xml -------------------------------------------------------------------------------- /Ch06/GeoQuiz/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch06/GeoQuiz/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /Ch06/GeoQuiz/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch06/GeoQuiz/.idea/encodings.xml -------------------------------------------------------------------------------- /Ch06/GeoQuiz/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch06/GeoQuiz/.idea/gradle.xml -------------------------------------------------------------------------------- /Ch06/GeoQuiz/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch06/GeoQuiz/.idea/misc.xml -------------------------------------------------------------------------------- /Ch06/GeoQuiz/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch06/GeoQuiz/.idea/modules.xml -------------------------------------------------------------------------------- /Ch06/GeoQuiz/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch06/GeoQuiz/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /Ch06/GeoQuiz/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Ch06/GeoQuiz/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch06/GeoQuiz/app/build.gradle -------------------------------------------------------------------------------- /Ch06/GeoQuiz/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch06/GeoQuiz/app/proguard-rules.pro -------------------------------------------------------------------------------- /Ch06/GeoQuiz/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch06/GeoQuiz/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Ch06/GeoQuiz/app/src/main/res/drawable-hdpi/arrow_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch06/GeoQuiz/app/src/main/res/drawable-hdpi/arrow_left.png -------------------------------------------------------------------------------- /Ch06/GeoQuiz/app/src/main/res/drawable-mdpi/arrow_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch06/GeoQuiz/app/src/main/res/drawable-mdpi/arrow_left.png -------------------------------------------------------------------------------- /Ch06/GeoQuiz/app/src/main/res/layout/activity_cheat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch06/GeoQuiz/app/src/main/res/layout/activity_cheat.xml -------------------------------------------------------------------------------- /Ch06/GeoQuiz/app/src/main/res/layout/activity_quiz.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch06/GeoQuiz/app/src/main/res/layout/activity_quiz.xml -------------------------------------------------------------------------------- /Ch06/GeoQuiz/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch06/GeoQuiz/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Ch06/GeoQuiz/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch06/GeoQuiz/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Ch06/GeoQuiz/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch06/GeoQuiz/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Ch06/GeoQuiz/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch06/GeoQuiz/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /Ch06/GeoQuiz/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch06/GeoQuiz/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Ch06/GeoQuiz/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch06/GeoQuiz/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /Ch06/GeoQuiz/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch06/GeoQuiz/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Ch06/GeoQuiz/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch06/GeoQuiz/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Ch06/GeoQuiz/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch06/GeoQuiz/build.gradle -------------------------------------------------------------------------------- /Ch06/GeoQuiz/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch06/GeoQuiz/gradle.properties -------------------------------------------------------------------------------- /Ch06/GeoQuiz/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch06/GeoQuiz/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Ch06/GeoQuiz/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch06/GeoQuiz/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Ch06/GeoQuiz/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch06/GeoQuiz/gradlew -------------------------------------------------------------------------------- /Ch06/GeoQuiz/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch06/GeoQuiz/gradlew.bat -------------------------------------------------------------------------------- /Ch06/GeoQuiz/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Ch07/CriminalIntent/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch07/CriminalIntent/.gitignore -------------------------------------------------------------------------------- /Ch07/CriminalIntent/.idea/.name: -------------------------------------------------------------------------------- 1 | CriminalIntent -------------------------------------------------------------------------------- /Ch07/CriminalIntent/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch07/CriminalIntent/.idea/compiler.xml -------------------------------------------------------------------------------- /Ch07/CriminalIntent/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch07/CriminalIntent/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /Ch07/CriminalIntent/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch07/CriminalIntent/.idea/encodings.xml -------------------------------------------------------------------------------- /Ch07/CriminalIntent/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch07/CriminalIntent/.idea/gradle.xml -------------------------------------------------------------------------------- /Ch07/CriminalIntent/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch07/CriminalIntent/.idea/misc.xml -------------------------------------------------------------------------------- /Ch07/CriminalIntent/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch07/CriminalIntent/.idea/modules.xml -------------------------------------------------------------------------------- /Ch07/CriminalIntent/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch07/CriminalIntent/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /Ch07/CriminalIntent/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Ch07/CriminalIntent/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch07/CriminalIntent/app/build.gradle -------------------------------------------------------------------------------- /Ch07/CriminalIntent/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch07/CriminalIntent/app/proguard-rules.pro -------------------------------------------------------------------------------- /Ch07/CriminalIntent/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch07/CriminalIntent/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Ch07/CriminalIntent/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch07/CriminalIntent/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Ch07/CriminalIntent/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch07/CriminalIntent/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /Ch07/CriminalIntent/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch07/CriminalIntent/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Ch07/CriminalIntent/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch07/CriminalIntent/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Ch07/CriminalIntent/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch07/CriminalIntent/build.gradle -------------------------------------------------------------------------------- /Ch07/CriminalIntent/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch07/CriminalIntent/gradle.properties -------------------------------------------------------------------------------- /Ch07/CriminalIntent/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch07/CriminalIntent/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Ch07/CriminalIntent/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch07/CriminalIntent/gradlew -------------------------------------------------------------------------------- /Ch07/CriminalIntent/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch07/CriminalIntent/gradlew.bat -------------------------------------------------------------------------------- /Ch07/CriminalIntent/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Ch08/CriminalIntent/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch08/CriminalIntent/.gitignore -------------------------------------------------------------------------------- /Ch08/CriminalIntent/.idea/.name: -------------------------------------------------------------------------------- 1 | CriminalIntent -------------------------------------------------------------------------------- /Ch08/CriminalIntent/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch08/CriminalIntent/.idea/compiler.xml -------------------------------------------------------------------------------- /Ch08/CriminalIntent/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch08/CriminalIntent/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /Ch08/CriminalIntent/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch08/CriminalIntent/.idea/encodings.xml -------------------------------------------------------------------------------- /Ch08/CriminalIntent/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch08/CriminalIntent/.idea/gradle.xml -------------------------------------------------------------------------------- /Ch08/CriminalIntent/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch08/CriminalIntent/.idea/misc.xml -------------------------------------------------------------------------------- /Ch08/CriminalIntent/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch08/CriminalIntent/.idea/modules.xml -------------------------------------------------------------------------------- /Ch08/CriminalIntent/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch08/CriminalIntent/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /Ch08/CriminalIntent/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Ch08/CriminalIntent/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch08/CriminalIntent/app/build.gradle -------------------------------------------------------------------------------- /Ch08/CriminalIntent/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch08/CriminalIntent/app/proguard-rules.pro -------------------------------------------------------------------------------- /Ch08/CriminalIntent/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch08/CriminalIntent/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Ch08/CriminalIntent/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch08/CriminalIntent/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Ch08/CriminalIntent/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch08/CriminalIntent/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /Ch08/CriminalIntent/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch08/CriminalIntent/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Ch08/CriminalIntent/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch08/CriminalIntent/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Ch08/CriminalIntent/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch08/CriminalIntent/build.gradle -------------------------------------------------------------------------------- /Ch08/CriminalIntent/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch08/CriminalIntent/gradle.properties -------------------------------------------------------------------------------- /Ch08/CriminalIntent/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch08/CriminalIntent/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Ch08/CriminalIntent/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch08/CriminalIntent/gradlew -------------------------------------------------------------------------------- /Ch08/CriminalIntent/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch08/CriminalIntent/gradlew.bat -------------------------------------------------------------------------------- /Ch08/CriminalIntent/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Ch09/CriminalIntent/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch09/CriminalIntent/.gitignore -------------------------------------------------------------------------------- /Ch09/CriminalIntent/.idea/.name: -------------------------------------------------------------------------------- 1 | CriminalIntent -------------------------------------------------------------------------------- /Ch09/CriminalIntent/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch09/CriminalIntent/.idea/compiler.xml -------------------------------------------------------------------------------- /Ch09/CriminalIntent/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch09/CriminalIntent/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /Ch09/CriminalIntent/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch09/CriminalIntent/.idea/encodings.xml -------------------------------------------------------------------------------- /Ch09/CriminalIntent/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch09/CriminalIntent/.idea/gradle.xml -------------------------------------------------------------------------------- /Ch09/CriminalIntent/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch09/CriminalIntent/.idea/misc.xml -------------------------------------------------------------------------------- /Ch09/CriminalIntent/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch09/CriminalIntent/.idea/modules.xml -------------------------------------------------------------------------------- /Ch09/CriminalIntent/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch09/CriminalIntent/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /Ch09/CriminalIntent/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Ch09/CriminalIntent/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch09/CriminalIntent/app/build.gradle -------------------------------------------------------------------------------- /Ch09/CriminalIntent/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch09/CriminalIntent/app/proguard-rules.pro -------------------------------------------------------------------------------- /Ch09/CriminalIntent/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch09/CriminalIntent/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Ch09/CriminalIntent/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch09/CriminalIntent/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Ch09/CriminalIntent/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch09/CriminalIntent/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /Ch09/CriminalIntent/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch09/CriminalIntent/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Ch09/CriminalIntent/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch09/CriminalIntent/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Ch09/CriminalIntent/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch09/CriminalIntent/build.gradle -------------------------------------------------------------------------------- /Ch09/CriminalIntent/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch09/CriminalIntent/gradle.properties -------------------------------------------------------------------------------- /Ch09/CriminalIntent/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch09/CriminalIntent/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Ch09/CriminalIntent/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch09/CriminalIntent/gradlew -------------------------------------------------------------------------------- /Ch09/CriminalIntent/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch09/CriminalIntent/gradlew.bat -------------------------------------------------------------------------------- /Ch09/CriminalIntent/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Ch10/CriminalIntent/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch10/CriminalIntent/.gitignore -------------------------------------------------------------------------------- /Ch10/CriminalIntent/.idea/.name: -------------------------------------------------------------------------------- 1 | CriminalIntent -------------------------------------------------------------------------------- /Ch10/CriminalIntent/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch10/CriminalIntent/.idea/compiler.xml -------------------------------------------------------------------------------- /Ch10/CriminalIntent/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch10/CriminalIntent/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /Ch10/CriminalIntent/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch10/CriminalIntent/.idea/encodings.xml -------------------------------------------------------------------------------- /Ch10/CriminalIntent/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch10/CriminalIntent/.idea/gradle.xml -------------------------------------------------------------------------------- /Ch10/CriminalIntent/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch10/CriminalIntent/.idea/misc.xml -------------------------------------------------------------------------------- /Ch10/CriminalIntent/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch10/CriminalIntent/.idea/modules.xml -------------------------------------------------------------------------------- /Ch10/CriminalIntent/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch10/CriminalIntent/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /Ch10/CriminalIntent/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Ch10/CriminalIntent/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch10/CriminalIntent/app/build.gradle -------------------------------------------------------------------------------- /Ch10/CriminalIntent/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch10/CriminalIntent/app/proguard-rules.pro -------------------------------------------------------------------------------- /Ch10/CriminalIntent/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch10/CriminalIntent/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Ch10/CriminalIntent/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch10/CriminalIntent/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Ch10/CriminalIntent/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch10/CriminalIntent/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /Ch10/CriminalIntent/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch10/CriminalIntent/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Ch10/CriminalIntent/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch10/CriminalIntent/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Ch10/CriminalIntent/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch10/CriminalIntent/build.gradle -------------------------------------------------------------------------------- /Ch10/CriminalIntent/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch10/CriminalIntent/gradle.properties -------------------------------------------------------------------------------- /Ch10/CriminalIntent/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch10/CriminalIntent/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Ch10/CriminalIntent/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch10/CriminalIntent/gradlew -------------------------------------------------------------------------------- /Ch10/CriminalIntent/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch10/CriminalIntent/gradlew.bat -------------------------------------------------------------------------------- /Ch10/CriminalIntent/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Ch11/CriminalIntent/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch11/CriminalIntent/.gitignore -------------------------------------------------------------------------------- /Ch11/CriminalIntent/.idea/.name: -------------------------------------------------------------------------------- 1 | CriminalIntent -------------------------------------------------------------------------------- /Ch11/CriminalIntent/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch11/CriminalIntent/.idea/compiler.xml -------------------------------------------------------------------------------- /Ch11/CriminalIntent/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch11/CriminalIntent/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /Ch11/CriminalIntent/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch11/CriminalIntent/.idea/encodings.xml -------------------------------------------------------------------------------- /Ch11/CriminalIntent/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch11/CriminalIntent/.idea/gradle.xml -------------------------------------------------------------------------------- /Ch11/CriminalIntent/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch11/CriminalIntent/.idea/misc.xml -------------------------------------------------------------------------------- /Ch11/CriminalIntent/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch11/CriminalIntent/.idea/modules.xml -------------------------------------------------------------------------------- /Ch11/CriminalIntent/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch11/CriminalIntent/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /Ch11/CriminalIntent/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Ch11/CriminalIntent/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch11/CriminalIntent/app/build.gradle -------------------------------------------------------------------------------- /Ch11/CriminalIntent/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch11/CriminalIntent/app/proguard-rules.pro -------------------------------------------------------------------------------- /Ch11/CriminalIntent/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch11/CriminalIntent/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Ch11/CriminalIntent/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch11/CriminalIntent/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Ch11/CriminalIntent/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch11/CriminalIntent/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /Ch11/CriminalIntent/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch11/CriminalIntent/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Ch11/CriminalIntent/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch11/CriminalIntent/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Ch11/CriminalIntent/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch11/CriminalIntent/build.gradle -------------------------------------------------------------------------------- /Ch11/CriminalIntent/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch11/CriminalIntent/gradle.properties -------------------------------------------------------------------------------- /Ch11/CriminalIntent/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch11/CriminalIntent/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Ch11/CriminalIntent/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch11/CriminalIntent/gradlew -------------------------------------------------------------------------------- /Ch11/CriminalIntent/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch11/CriminalIntent/gradlew.bat -------------------------------------------------------------------------------- /Ch11/CriminalIntent/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Ch12/CriminalIntent/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch12/CriminalIntent/.gitignore -------------------------------------------------------------------------------- /Ch12/CriminalIntent/.idea/.name: -------------------------------------------------------------------------------- 1 | CriminalIntent -------------------------------------------------------------------------------- /Ch12/CriminalIntent/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch12/CriminalIntent/.idea/compiler.xml -------------------------------------------------------------------------------- /Ch12/CriminalIntent/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch12/CriminalIntent/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /Ch12/CriminalIntent/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch12/CriminalIntent/.idea/encodings.xml -------------------------------------------------------------------------------- /Ch12/CriminalIntent/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch12/CriminalIntent/.idea/gradle.xml -------------------------------------------------------------------------------- /Ch12/CriminalIntent/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch12/CriminalIntent/.idea/misc.xml -------------------------------------------------------------------------------- /Ch12/CriminalIntent/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch12/CriminalIntent/.idea/modules.xml -------------------------------------------------------------------------------- /Ch12/CriminalIntent/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch12/CriminalIntent/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /Ch12/CriminalIntent/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Ch12/CriminalIntent/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch12/CriminalIntent/app/build.gradle -------------------------------------------------------------------------------- /Ch12/CriminalIntent/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch12/CriminalIntent/app/proguard-rules.pro -------------------------------------------------------------------------------- /Ch12/CriminalIntent/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch12/CriminalIntent/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Ch12/CriminalIntent/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch12/CriminalIntent/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Ch12/CriminalIntent/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch12/CriminalIntent/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /Ch12/CriminalIntent/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch12/CriminalIntent/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Ch12/CriminalIntent/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch12/CriminalIntent/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Ch12/CriminalIntent/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch12/CriminalIntent/build.gradle -------------------------------------------------------------------------------- /Ch12/CriminalIntent/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch12/CriminalIntent/gradle.properties -------------------------------------------------------------------------------- /Ch12/CriminalIntent/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch12/CriminalIntent/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Ch12/CriminalIntent/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch12/CriminalIntent/gradlew -------------------------------------------------------------------------------- /Ch12/CriminalIntent/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch12/CriminalIntent/gradlew.bat -------------------------------------------------------------------------------- /Ch12/CriminalIntent/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Ch13/CriminalIntent/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch13/CriminalIntent/.gitignore -------------------------------------------------------------------------------- /Ch13/CriminalIntent/.idea/.name: -------------------------------------------------------------------------------- 1 | CriminalIntent -------------------------------------------------------------------------------- /Ch13/CriminalIntent/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch13/CriminalIntent/.idea/compiler.xml -------------------------------------------------------------------------------- /Ch13/CriminalIntent/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch13/CriminalIntent/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /Ch13/CriminalIntent/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch13/CriminalIntent/.idea/encodings.xml -------------------------------------------------------------------------------- /Ch13/CriminalIntent/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch13/CriminalIntent/.idea/gradle.xml -------------------------------------------------------------------------------- /Ch13/CriminalIntent/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch13/CriminalIntent/.idea/misc.xml -------------------------------------------------------------------------------- /Ch13/CriminalIntent/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch13/CriminalIntent/.idea/modules.xml -------------------------------------------------------------------------------- /Ch13/CriminalIntent/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch13/CriminalIntent/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /Ch13/CriminalIntent/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Ch13/CriminalIntent/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch13/CriminalIntent/app/build.gradle -------------------------------------------------------------------------------- /Ch13/CriminalIntent/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch13/CriminalIntent/app/proguard-rules.pro -------------------------------------------------------------------------------- /Ch13/CriminalIntent/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch13/CriminalIntent/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Ch13/CriminalIntent/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch13/CriminalIntent/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Ch13/CriminalIntent/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch13/CriminalIntent/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /Ch13/CriminalIntent/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch13/CriminalIntent/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Ch13/CriminalIntent/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch13/CriminalIntent/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Ch13/CriminalIntent/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch13/CriminalIntent/build.gradle -------------------------------------------------------------------------------- /Ch13/CriminalIntent/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch13/CriminalIntent/gradle.properties -------------------------------------------------------------------------------- /Ch13/CriminalIntent/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch13/CriminalIntent/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Ch13/CriminalIntent/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch13/CriminalIntent/gradlew -------------------------------------------------------------------------------- /Ch13/CriminalIntent/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch13/CriminalIntent/gradlew.bat -------------------------------------------------------------------------------- /Ch13/CriminalIntent/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Ch14/CriminalIntent/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch14/CriminalIntent/.gitignore -------------------------------------------------------------------------------- /Ch14/CriminalIntent/.idea/.name: -------------------------------------------------------------------------------- 1 | CriminalIntent -------------------------------------------------------------------------------- /Ch14/CriminalIntent/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch14/CriminalIntent/.idea/compiler.xml -------------------------------------------------------------------------------- /Ch14/CriminalIntent/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch14/CriminalIntent/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /Ch14/CriminalIntent/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch14/CriminalIntent/.idea/encodings.xml -------------------------------------------------------------------------------- /Ch14/CriminalIntent/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch14/CriminalIntent/.idea/gradle.xml -------------------------------------------------------------------------------- /Ch14/CriminalIntent/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch14/CriminalIntent/.idea/misc.xml -------------------------------------------------------------------------------- /Ch14/CriminalIntent/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch14/CriminalIntent/.idea/modules.xml -------------------------------------------------------------------------------- /Ch14/CriminalIntent/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch14/CriminalIntent/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /Ch14/CriminalIntent/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Ch14/CriminalIntent/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch14/CriminalIntent/app/build.gradle -------------------------------------------------------------------------------- /Ch14/CriminalIntent/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch14/CriminalIntent/app/proguard-rules.pro -------------------------------------------------------------------------------- /Ch14/CriminalIntent/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch14/CriminalIntent/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Ch14/CriminalIntent/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch14/CriminalIntent/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Ch14/CriminalIntent/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch14/CriminalIntent/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /Ch14/CriminalIntent/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch14/CriminalIntent/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Ch14/CriminalIntent/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch14/CriminalIntent/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Ch14/CriminalIntent/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch14/CriminalIntent/build.gradle -------------------------------------------------------------------------------- /Ch14/CriminalIntent/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch14/CriminalIntent/gradle.properties -------------------------------------------------------------------------------- /Ch14/CriminalIntent/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch14/CriminalIntent/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Ch14/CriminalIntent/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch14/CriminalIntent/gradlew -------------------------------------------------------------------------------- /Ch14/CriminalIntent/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch14/CriminalIntent/gradlew.bat -------------------------------------------------------------------------------- /Ch14/CriminalIntent/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Ch15/CriminalIntent/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch15/CriminalIntent/.gitignore -------------------------------------------------------------------------------- /Ch15/CriminalIntent/.idea/.name: -------------------------------------------------------------------------------- 1 | CriminalIntent -------------------------------------------------------------------------------- /Ch15/CriminalIntent/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch15/CriminalIntent/.idea/compiler.xml -------------------------------------------------------------------------------- /Ch15/CriminalIntent/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch15/CriminalIntent/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /Ch15/CriminalIntent/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch15/CriminalIntent/.idea/encodings.xml -------------------------------------------------------------------------------- /Ch15/CriminalIntent/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch15/CriminalIntent/.idea/gradle.xml -------------------------------------------------------------------------------- /Ch15/CriminalIntent/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch15/CriminalIntent/.idea/misc.xml -------------------------------------------------------------------------------- /Ch15/CriminalIntent/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch15/CriminalIntent/.idea/modules.xml -------------------------------------------------------------------------------- /Ch15/CriminalIntent/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch15/CriminalIntent/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /Ch15/CriminalIntent/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Ch15/CriminalIntent/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch15/CriminalIntent/app/build.gradle -------------------------------------------------------------------------------- /Ch15/CriminalIntent/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch15/CriminalIntent/app/proguard-rules.pro -------------------------------------------------------------------------------- /Ch15/CriminalIntent/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch15/CriminalIntent/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Ch15/CriminalIntent/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch15/CriminalIntent/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Ch15/CriminalIntent/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch15/CriminalIntent/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /Ch15/CriminalIntent/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch15/CriminalIntent/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Ch15/CriminalIntent/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch15/CriminalIntent/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Ch15/CriminalIntent/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch15/CriminalIntent/build.gradle -------------------------------------------------------------------------------- /Ch15/CriminalIntent/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch15/CriminalIntent/gradle.properties -------------------------------------------------------------------------------- /Ch15/CriminalIntent/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch15/CriminalIntent/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Ch15/CriminalIntent/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch15/CriminalIntent/gradlew -------------------------------------------------------------------------------- /Ch15/CriminalIntent/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch15/CriminalIntent/gradlew.bat -------------------------------------------------------------------------------- /Ch15/CriminalIntent/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Ch16/CriminalIntent/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch16/CriminalIntent/.gitignore -------------------------------------------------------------------------------- /Ch16/CriminalIntent/.idea/.name: -------------------------------------------------------------------------------- 1 | CriminalIntent -------------------------------------------------------------------------------- /Ch16/CriminalIntent/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch16/CriminalIntent/.idea/compiler.xml -------------------------------------------------------------------------------- /Ch16/CriminalIntent/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch16/CriminalIntent/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /Ch16/CriminalIntent/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch16/CriminalIntent/.idea/encodings.xml -------------------------------------------------------------------------------- /Ch16/CriminalIntent/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch16/CriminalIntent/.idea/gradle.xml -------------------------------------------------------------------------------- /Ch16/CriminalIntent/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch16/CriminalIntent/.idea/misc.xml -------------------------------------------------------------------------------- /Ch16/CriminalIntent/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch16/CriminalIntent/.idea/modules.xml -------------------------------------------------------------------------------- /Ch16/CriminalIntent/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch16/CriminalIntent/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /Ch16/CriminalIntent/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Ch16/CriminalIntent/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch16/CriminalIntent/app/build.gradle -------------------------------------------------------------------------------- /Ch16/CriminalIntent/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch16/CriminalIntent/app/proguard-rules.pro -------------------------------------------------------------------------------- /Ch16/CriminalIntent/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch16/CriminalIntent/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Ch16/CriminalIntent/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch16/CriminalIntent/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Ch16/CriminalIntent/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch16/CriminalIntent/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /Ch16/CriminalIntent/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch16/CriminalIntent/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Ch16/CriminalIntent/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch16/CriminalIntent/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Ch16/CriminalIntent/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch16/CriminalIntent/build.gradle -------------------------------------------------------------------------------- /Ch16/CriminalIntent/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch16/CriminalIntent/gradle.properties -------------------------------------------------------------------------------- /Ch16/CriminalIntent/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch16/CriminalIntent/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Ch16/CriminalIntent/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch16/CriminalIntent/gradlew -------------------------------------------------------------------------------- /Ch16/CriminalIntent/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch16/CriminalIntent/gradlew.bat -------------------------------------------------------------------------------- /Ch16/CriminalIntent/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Ch17/CriminalIntent/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch17/CriminalIntent/.gitignore -------------------------------------------------------------------------------- /Ch17/CriminalIntent/.idea/.name: -------------------------------------------------------------------------------- 1 | CriminalIntent -------------------------------------------------------------------------------- /Ch17/CriminalIntent/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch17/CriminalIntent/.idea/compiler.xml -------------------------------------------------------------------------------- /Ch17/CriminalIntent/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch17/CriminalIntent/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /Ch17/CriminalIntent/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch17/CriminalIntent/.idea/encodings.xml -------------------------------------------------------------------------------- /Ch17/CriminalIntent/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch17/CriminalIntent/.idea/gradle.xml -------------------------------------------------------------------------------- /Ch17/CriminalIntent/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch17/CriminalIntent/.idea/misc.xml -------------------------------------------------------------------------------- /Ch17/CriminalIntent/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch17/CriminalIntent/.idea/modules.xml -------------------------------------------------------------------------------- /Ch17/CriminalIntent/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch17/CriminalIntent/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /Ch17/CriminalIntent/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Ch17/CriminalIntent/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch17/CriminalIntent/app/build.gradle -------------------------------------------------------------------------------- /Ch17/CriminalIntent/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch17/CriminalIntent/app/proguard-rules.pro -------------------------------------------------------------------------------- /Ch17/CriminalIntent/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch17/CriminalIntent/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Ch17/CriminalIntent/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch17/CriminalIntent/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Ch17/CriminalIntent/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch17/CriminalIntent/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /Ch17/CriminalIntent/app/src/main/res/values/refs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch17/CriminalIntent/app/src/main/res/values/refs.xml -------------------------------------------------------------------------------- /Ch17/CriminalIntent/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch17/CriminalIntent/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Ch17/CriminalIntent/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch17/CriminalIntent/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Ch17/CriminalIntent/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch17/CriminalIntent/build.gradle -------------------------------------------------------------------------------- /Ch17/CriminalIntent/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch17/CriminalIntent/gradle.properties -------------------------------------------------------------------------------- /Ch17/CriminalIntent/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch17/CriminalIntent/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Ch17/CriminalIntent/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch17/CriminalIntent/gradlew -------------------------------------------------------------------------------- /Ch17/CriminalIntent/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch17/CriminalIntent/gradlew.bat -------------------------------------------------------------------------------- /Ch17/CriminalIntent/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Ch18/BeatBox/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch18/BeatBox/.gitignore -------------------------------------------------------------------------------- /Ch18/BeatBox/.idea/.name: -------------------------------------------------------------------------------- 1 | BeatBox -------------------------------------------------------------------------------- /Ch18/BeatBox/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch18/BeatBox/.idea/compiler.xml -------------------------------------------------------------------------------- /Ch18/BeatBox/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch18/BeatBox/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /Ch18/BeatBox/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch18/BeatBox/.idea/encodings.xml -------------------------------------------------------------------------------- /Ch18/BeatBox/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch18/BeatBox/.idea/gradle.xml -------------------------------------------------------------------------------- /Ch18/BeatBox/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch18/BeatBox/.idea/misc.xml -------------------------------------------------------------------------------- /Ch18/BeatBox/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch18/BeatBox/.idea/modules.xml -------------------------------------------------------------------------------- /Ch18/BeatBox/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch18/BeatBox/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /Ch18/BeatBox/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Ch18/BeatBox/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch18/BeatBox/app/build.gradle -------------------------------------------------------------------------------- /Ch18/BeatBox/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch18/BeatBox/app/proguard-rules.pro -------------------------------------------------------------------------------- /Ch18/BeatBox/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch18/BeatBox/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Ch18/BeatBox/app/src/main/assets/sample_sounds/70_eh.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch18/BeatBox/app/src/main/assets/sample_sounds/70_eh.wav -------------------------------------------------------------------------------- /Ch18/BeatBox/app/src/main/assets/sample_sounds/72_houb.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch18/BeatBox/app/src/main/assets/sample_sounds/72_houb.wav -------------------------------------------------------------------------------- /Ch18/BeatBox/app/src/main/assets/sample_sounds/73_houu.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch18/BeatBox/app/src/main/assets/sample_sounds/73_houu.wav -------------------------------------------------------------------------------- /Ch18/BeatBox/app/src/main/assets/sample_sounds/74_jah.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch18/BeatBox/app/src/main/assets/sample_sounds/74_jah.wav -------------------------------------------------------------------------------- /Ch18/BeatBox/app/src/main/assets/sample_sounds/77_juob.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch18/BeatBox/app/src/main/assets/sample_sounds/77_juob.wav -------------------------------------------------------------------------------- /Ch18/BeatBox/app/src/main/assets/sample_sounds/78_jueb.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch18/BeatBox/app/src/main/assets/sample_sounds/78_jueb.wav -------------------------------------------------------------------------------- /Ch18/BeatBox/app/src/main/assets/sample_sounds/83_uoh.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch18/BeatBox/app/src/main/assets/sample_sounds/83_uoh.wav -------------------------------------------------------------------------------- /Ch18/BeatBox/app/src/main/assets/sample_sounds/84_uueh.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch18/BeatBox/app/src/main/assets/sample_sounds/84_uueh.wav -------------------------------------------------------------------------------- /Ch18/BeatBox/app/src/main/assets/sample_sounds/85_jeeh.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch18/BeatBox/app/src/main/assets/sample_sounds/85_jeeh.wav -------------------------------------------------------------------------------- /Ch18/BeatBox/app/src/main/assets/sample_sounds/86_oa-h.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch18/BeatBox/app/src/main/assets/sample_sounds/86_oa-h.wav -------------------------------------------------------------------------------- /Ch18/BeatBox/app/src/main/res/layout/activity_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch18/BeatBox/app/src/main/res/layout/activity_fragment.xml -------------------------------------------------------------------------------- /Ch18/BeatBox/app/src/main/res/layout/fragment_beat_box.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch18/BeatBox/app/src/main/res/layout/fragment_beat_box.xml -------------------------------------------------------------------------------- /Ch18/BeatBox/app/src/main/res/layout/list_item_sound.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch18/BeatBox/app/src/main/res/layout/list_item_sound.xml -------------------------------------------------------------------------------- /Ch18/BeatBox/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch18/BeatBox/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /Ch18/BeatBox/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch18/BeatBox/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Ch18/BeatBox/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch18/BeatBox/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /Ch18/BeatBox/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch18/BeatBox/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Ch18/BeatBox/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch18/BeatBox/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Ch18/BeatBox/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch18/BeatBox/build.gradle -------------------------------------------------------------------------------- /Ch18/BeatBox/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch18/BeatBox/gradle.properties -------------------------------------------------------------------------------- /Ch18/BeatBox/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch18/BeatBox/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Ch18/BeatBox/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch18/BeatBox/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Ch18/BeatBox/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch18/BeatBox/gradlew -------------------------------------------------------------------------------- /Ch18/BeatBox/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch18/BeatBox/gradlew.bat -------------------------------------------------------------------------------- /Ch18/BeatBox/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Ch19/BeatBox/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch19/BeatBox/.gitignore -------------------------------------------------------------------------------- /Ch19/BeatBox/.idea/.name: -------------------------------------------------------------------------------- 1 | BeatBox -------------------------------------------------------------------------------- /Ch19/BeatBox/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch19/BeatBox/.idea/compiler.xml -------------------------------------------------------------------------------- /Ch19/BeatBox/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch19/BeatBox/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /Ch19/BeatBox/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch19/BeatBox/.idea/encodings.xml -------------------------------------------------------------------------------- /Ch19/BeatBox/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch19/BeatBox/.idea/gradle.xml -------------------------------------------------------------------------------- /Ch19/BeatBox/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch19/BeatBox/.idea/misc.xml -------------------------------------------------------------------------------- /Ch19/BeatBox/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch19/BeatBox/.idea/modules.xml -------------------------------------------------------------------------------- /Ch19/BeatBox/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch19/BeatBox/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /Ch19/BeatBox/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Ch19/BeatBox/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch19/BeatBox/app/build.gradle -------------------------------------------------------------------------------- /Ch19/BeatBox/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch19/BeatBox/app/proguard-rules.pro -------------------------------------------------------------------------------- /Ch19/BeatBox/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch19/BeatBox/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Ch19/BeatBox/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch19/BeatBox/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /Ch19/BeatBox/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch19/BeatBox/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Ch19/BeatBox/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch19/BeatBox/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /Ch19/BeatBox/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch19/BeatBox/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Ch19/BeatBox/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch19/BeatBox/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Ch19/BeatBox/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch19/BeatBox/build.gradle -------------------------------------------------------------------------------- /Ch19/BeatBox/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch19/BeatBox/gradle.properties -------------------------------------------------------------------------------- /Ch19/BeatBox/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch19/BeatBox/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Ch19/BeatBox/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch19/BeatBox/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Ch19/BeatBox/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch19/BeatBox/gradlew -------------------------------------------------------------------------------- /Ch19/BeatBox/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch19/BeatBox/gradlew.bat -------------------------------------------------------------------------------- /Ch19/BeatBox/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Ch20/BeatBox/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch20/BeatBox/.gitignore -------------------------------------------------------------------------------- /Ch20/BeatBox/.idea/.name: -------------------------------------------------------------------------------- 1 | BeatBox -------------------------------------------------------------------------------- /Ch20/BeatBox/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch20/BeatBox/.idea/compiler.xml -------------------------------------------------------------------------------- /Ch20/BeatBox/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch20/BeatBox/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /Ch20/BeatBox/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch20/BeatBox/.idea/encodings.xml -------------------------------------------------------------------------------- /Ch20/BeatBox/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch20/BeatBox/.idea/gradle.xml -------------------------------------------------------------------------------- /Ch20/BeatBox/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch20/BeatBox/.idea/misc.xml -------------------------------------------------------------------------------- /Ch20/BeatBox/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch20/BeatBox/.idea/modules.xml -------------------------------------------------------------------------------- /Ch20/BeatBox/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch20/BeatBox/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /Ch20/BeatBox/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Ch20/BeatBox/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch20/BeatBox/app/build.gradle -------------------------------------------------------------------------------- /Ch20/BeatBox/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch20/BeatBox/app/proguard-rules.pro -------------------------------------------------------------------------------- /Ch20/BeatBox/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch20/BeatBox/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Ch20/BeatBox/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch20/BeatBox/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /Ch20/BeatBox/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch20/BeatBox/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Ch20/BeatBox/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch20/BeatBox/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /Ch20/BeatBox/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch20/BeatBox/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Ch20/BeatBox/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch20/BeatBox/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Ch20/BeatBox/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch20/BeatBox/build.gradle -------------------------------------------------------------------------------- /Ch20/BeatBox/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch20/BeatBox/gradle.properties -------------------------------------------------------------------------------- /Ch20/BeatBox/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch20/BeatBox/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Ch20/BeatBox/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch20/BeatBox/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Ch20/BeatBox/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch20/BeatBox/gradlew -------------------------------------------------------------------------------- /Ch20/BeatBox/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch20/BeatBox/gradlew.bat -------------------------------------------------------------------------------- /Ch20/BeatBox/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Ch21/BeatBox/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch21/BeatBox/.gitignore -------------------------------------------------------------------------------- /Ch21/BeatBox/.idea/.name: -------------------------------------------------------------------------------- 1 | BeatBox -------------------------------------------------------------------------------- /Ch21/BeatBox/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch21/BeatBox/.idea/compiler.xml -------------------------------------------------------------------------------- /Ch21/BeatBox/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch21/BeatBox/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /Ch21/BeatBox/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch21/BeatBox/.idea/encodings.xml -------------------------------------------------------------------------------- /Ch21/BeatBox/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch21/BeatBox/.idea/gradle.xml -------------------------------------------------------------------------------- /Ch21/BeatBox/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch21/BeatBox/.idea/misc.xml -------------------------------------------------------------------------------- /Ch21/BeatBox/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch21/BeatBox/.idea/modules.xml -------------------------------------------------------------------------------- /Ch21/BeatBox/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch21/BeatBox/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /Ch21/BeatBox/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Ch21/BeatBox/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch21/BeatBox/app/build.gradle -------------------------------------------------------------------------------- /Ch21/BeatBox/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch21/BeatBox/app/proguard-rules.pro -------------------------------------------------------------------------------- /Ch21/BeatBox/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch21/BeatBox/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Ch21/BeatBox/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch21/BeatBox/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /Ch21/BeatBox/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch21/BeatBox/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Ch21/BeatBox/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch21/BeatBox/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /Ch21/BeatBox/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch21/BeatBox/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Ch21/BeatBox/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch21/BeatBox/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Ch21/BeatBox/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch21/BeatBox/build.gradle -------------------------------------------------------------------------------- /Ch21/BeatBox/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch21/BeatBox/gradle.properties -------------------------------------------------------------------------------- /Ch21/BeatBox/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch21/BeatBox/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Ch21/BeatBox/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch21/BeatBox/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Ch21/BeatBox/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch21/BeatBox/gradlew -------------------------------------------------------------------------------- /Ch21/BeatBox/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch21/BeatBox/gradlew.bat -------------------------------------------------------------------------------- /Ch21/BeatBox/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Ch22/NerdLauncher/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch22/NerdLauncher/.gitignore -------------------------------------------------------------------------------- /Ch22/NerdLauncher/.idea/.name: -------------------------------------------------------------------------------- 1 | NerdLauncher -------------------------------------------------------------------------------- /Ch22/NerdLauncher/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch22/NerdLauncher/.idea/compiler.xml -------------------------------------------------------------------------------- /Ch22/NerdLauncher/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch22/NerdLauncher/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /Ch22/NerdLauncher/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch22/NerdLauncher/.idea/encodings.xml -------------------------------------------------------------------------------- /Ch22/NerdLauncher/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch22/NerdLauncher/.idea/gradle.xml -------------------------------------------------------------------------------- /Ch22/NerdLauncher/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch22/NerdLauncher/.idea/misc.xml -------------------------------------------------------------------------------- /Ch22/NerdLauncher/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch22/NerdLauncher/.idea/modules.xml -------------------------------------------------------------------------------- /Ch22/NerdLauncher/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch22/NerdLauncher/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /Ch22/NerdLauncher/NerdLauncher.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch22/NerdLauncher/NerdLauncher.iml -------------------------------------------------------------------------------- /Ch22/NerdLauncher/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Ch22/NerdLauncher/app/app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch22/NerdLauncher/app/app.iml -------------------------------------------------------------------------------- /Ch22/NerdLauncher/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch22/NerdLauncher/app/build.gradle -------------------------------------------------------------------------------- /Ch22/NerdLauncher/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch22/NerdLauncher/app/proguard-rules.pro -------------------------------------------------------------------------------- /Ch22/NerdLauncher/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch22/NerdLauncher/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Ch22/NerdLauncher/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch22/NerdLauncher/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /Ch22/NerdLauncher/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch22/NerdLauncher/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Ch22/NerdLauncher/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch22/NerdLauncher/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Ch22/NerdLauncher/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch22/NerdLauncher/build.gradle -------------------------------------------------------------------------------- /Ch22/NerdLauncher/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch22/NerdLauncher/gradle.properties -------------------------------------------------------------------------------- /Ch22/NerdLauncher/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch22/NerdLauncher/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Ch22/NerdLauncher/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch22/NerdLauncher/gradlew -------------------------------------------------------------------------------- /Ch22/NerdLauncher/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch22/NerdLauncher/gradlew.bat -------------------------------------------------------------------------------- /Ch22/NerdLauncher/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Ch23/PhotoGallery/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch23/PhotoGallery/.gitignore -------------------------------------------------------------------------------- /Ch23/PhotoGallery/.idea/.name: -------------------------------------------------------------------------------- 1 | PhotoGallery -------------------------------------------------------------------------------- /Ch23/PhotoGallery/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch23/PhotoGallery/.idea/compiler.xml -------------------------------------------------------------------------------- /Ch23/PhotoGallery/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch23/PhotoGallery/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /Ch23/PhotoGallery/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch23/PhotoGallery/.idea/encodings.xml -------------------------------------------------------------------------------- /Ch23/PhotoGallery/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch23/PhotoGallery/.idea/gradle.xml -------------------------------------------------------------------------------- /Ch23/PhotoGallery/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch23/PhotoGallery/.idea/misc.xml -------------------------------------------------------------------------------- /Ch23/PhotoGallery/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch23/PhotoGallery/.idea/modules.xml -------------------------------------------------------------------------------- /Ch23/PhotoGallery/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch23/PhotoGallery/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /Ch23/PhotoGallery/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Ch23/PhotoGallery/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch23/PhotoGallery/app/build.gradle -------------------------------------------------------------------------------- /Ch23/PhotoGallery/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch23/PhotoGallery/app/proguard-rules.pro -------------------------------------------------------------------------------- /Ch23/PhotoGallery/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch23/PhotoGallery/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Ch23/PhotoGallery/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch23/PhotoGallery/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Ch23/PhotoGallery/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch23/PhotoGallery/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /Ch23/PhotoGallery/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch23/PhotoGallery/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Ch23/PhotoGallery/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch23/PhotoGallery/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Ch23/PhotoGallery/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch23/PhotoGallery/build.gradle -------------------------------------------------------------------------------- /Ch23/PhotoGallery/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch23/PhotoGallery/gradle.properties -------------------------------------------------------------------------------- /Ch23/PhotoGallery/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch23/PhotoGallery/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Ch23/PhotoGallery/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch23/PhotoGallery/gradlew -------------------------------------------------------------------------------- /Ch23/PhotoGallery/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch23/PhotoGallery/gradlew.bat -------------------------------------------------------------------------------- /Ch23/PhotoGallery/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Ch24/PhotoGallery/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch24/PhotoGallery/.gitignore -------------------------------------------------------------------------------- /Ch24/PhotoGallery/.idea/.name: -------------------------------------------------------------------------------- 1 | PhotoGallery -------------------------------------------------------------------------------- /Ch24/PhotoGallery/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch24/PhotoGallery/.idea/compiler.xml -------------------------------------------------------------------------------- /Ch24/PhotoGallery/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch24/PhotoGallery/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /Ch24/PhotoGallery/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch24/PhotoGallery/.idea/encodings.xml -------------------------------------------------------------------------------- /Ch24/PhotoGallery/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch24/PhotoGallery/.idea/gradle.xml -------------------------------------------------------------------------------- /Ch24/PhotoGallery/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch24/PhotoGallery/.idea/misc.xml -------------------------------------------------------------------------------- /Ch24/PhotoGallery/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch24/PhotoGallery/.idea/modules.xml -------------------------------------------------------------------------------- /Ch24/PhotoGallery/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch24/PhotoGallery/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /Ch24/PhotoGallery/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Ch24/PhotoGallery/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch24/PhotoGallery/app/build.gradle -------------------------------------------------------------------------------- /Ch24/PhotoGallery/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch24/PhotoGallery/app/proguard-rules.pro -------------------------------------------------------------------------------- /Ch24/PhotoGallery/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch24/PhotoGallery/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Ch24/PhotoGallery/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch24/PhotoGallery/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Ch24/PhotoGallery/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch24/PhotoGallery/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /Ch24/PhotoGallery/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch24/PhotoGallery/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Ch24/PhotoGallery/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch24/PhotoGallery/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Ch24/PhotoGallery/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch24/PhotoGallery/build.gradle -------------------------------------------------------------------------------- /Ch24/PhotoGallery/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch24/PhotoGallery/gradle.properties -------------------------------------------------------------------------------- /Ch24/PhotoGallery/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch24/PhotoGallery/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Ch24/PhotoGallery/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch24/PhotoGallery/gradlew -------------------------------------------------------------------------------- /Ch24/PhotoGallery/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch24/PhotoGallery/gradlew.bat -------------------------------------------------------------------------------- /Ch24/PhotoGallery/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Ch25/PhotoGallery/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch25/PhotoGallery/.gitignore -------------------------------------------------------------------------------- /Ch25/PhotoGallery/.idea/.name: -------------------------------------------------------------------------------- 1 | PhotoGallery -------------------------------------------------------------------------------- /Ch25/PhotoGallery/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch25/PhotoGallery/.idea/compiler.xml -------------------------------------------------------------------------------- /Ch25/PhotoGallery/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch25/PhotoGallery/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /Ch25/PhotoGallery/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch25/PhotoGallery/.idea/encodings.xml -------------------------------------------------------------------------------- /Ch25/PhotoGallery/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch25/PhotoGallery/.idea/gradle.xml -------------------------------------------------------------------------------- /Ch25/PhotoGallery/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch25/PhotoGallery/.idea/misc.xml -------------------------------------------------------------------------------- /Ch25/PhotoGallery/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch25/PhotoGallery/.idea/modules.xml -------------------------------------------------------------------------------- /Ch25/PhotoGallery/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch25/PhotoGallery/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /Ch25/PhotoGallery/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Ch25/PhotoGallery/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch25/PhotoGallery/app/build.gradle -------------------------------------------------------------------------------- /Ch25/PhotoGallery/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch25/PhotoGallery/app/proguard-rules.pro -------------------------------------------------------------------------------- /Ch25/PhotoGallery/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch25/PhotoGallery/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Ch25/PhotoGallery/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch25/PhotoGallery/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Ch25/PhotoGallery/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch25/PhotoGallery/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /Ch25/PhotoGallery/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch25/PhotoGallery/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Ch25/PhotoGallery/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch25/PhotoGallery/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Ch25/PhotoGallery/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch25/PhotoGallery/build.gradle -------------------------------------------------------------------------------- /Ch25/PhotoGallery/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch25/PhotoGallery/gradle.properties -------------------------------------------------------------------------------- /Ch25/PhotoGallery/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch25/PhotoGallery/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Ch25/PhotoGallery/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch25/PhotoGallery/gradlew -------------------------------------------------------------------------------- /Ch25/PhotoGallery/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch25/PhotoGallery/gradlew.bat -------------------------------------------------------------------------------- /Ch25/PhotoGallery/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Ch26/PhotoGallery/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch26/PhotoGallery/.gitignore -------------------------------------------------------------------------------- /Ch26/PhotoGallery/.idea/.name: -------------------------------------------------------------------------------- 1 | PhotoGallery -------------------------------------------------------------------------------- /Ch26/PhotoGallery/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch26/PhotoGallery/.idea/compiler.xml -------------------------------------------------------------------------------- /Ch26/PhotoGallery/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch26/PhotoGallery/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /Ch26/PhotoGallery/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch26/PhotoGallery/.idea/encodings.xml -------------------------------------------------------------------------------- /Ch26/PhotoGallery/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch26/PhotoGallery/.idea/gradle.xml -------------------------------------------------------------------------------- /Ch26/PhotoGallery/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch26/PhotoGallery/.idea/misc.xml -------------------------------------------------------------------------------- /Ch26/PhotoGallery/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch26/PhotoGallery/.idea/modules.xml -------------------------------------------------------------------------------- /Ch26/PhotoGallery/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch26/PhotoGallery/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /Ch26/PhotoGallery/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Ch26/PhotoGallery/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch26/PhotoGallery/app/build.gradle -------------------------------------------------------------------------------- /Ch26/PhotoGallery/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch26/PhotoGallery/app/proguard-rules.pro -------------------------------------------------------------------------------- /Ch26/PhotoGallery/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch26/PhotoGallery/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Ch26/PhotoGallery/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch26/PhotoGallery/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Ch26/PhotoGallery/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch26/PhotoGallery/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /Ch26/PhotoGallery/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch26/PhotoGallery/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Ch26/PhotoGallery/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch26/PhotoGallery/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Ch26/PhotoGallery/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch26/PhotoGallery/build.gradle -------------------------------------------------------------------------------- /Ch26/PhotoGallery/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch26/PhotoGallery/gradle.properties -------------------------------------------------------------------------------- /Ch26/PhotoGallery/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch26/PhotoGallery/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Ch26/PhotoGallery/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch26/PhotoGallery/gradlew -------------------------------------------------------------------------------- /Ch26/PhotoGallery/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch26/PhotoGallery/gradlew.bat -------------------------------------------------------------------------------- /Ch26/PhotoGallery/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Ch27/PhotoGallery/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch27/PhotoGallery/.gitignore -------------------------------------------------------------------------------- /Ch27/PhotoGallery/.idea/.name: -------------------------------------------------------------------------------- 1 | PhotoGallery -------------------------------------------------------------------------------- /Ch27/PhotoGallery/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch27/PhotoGallery/.idea/compiler.xml -------------------------------------------------------------------------------- /Ch27/PhotoGallery/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch27/PhotoGallery/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /Ch27/PhotoGallery/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch27/PhotoGallery/.idea/encodings.xml -------------------------------------------------------------------------------- /Ch27/PhotoGallery/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch27/PhotoGallery/.idea/gradle.xml -------------------------------------------------------------------------------- /Ch27/PhotoGallery/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch27/PhotoGallery/.idea/misc.xml -------------------------------------------------------------------------------- /Ch27/PhotoGallery/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch27/PhotoGallery/.idea/modules.xml -------------------------------------------------------------------------------- /Ch27/PhotoGallery/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch27/PhotoGallery/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /Ch27/PhotoGallery/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Ch27/PhotoGallery/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch27/PhotoGallery/app/build.gradle -------------------------------------------------------------------------------- /Ch27/PhotoGallery/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch27/PhotoGallery/app/proguard-rules.pro -------------------------------------------------------------------------------- /Ch27/PhotoGallery/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch27/PhotoGallery/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Ch27/PhotoGallery/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch27/PhotoGallery/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Ch27/PhotoGallery/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch27/PhotoGallery/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /Ch27/PhotoGallery/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch27/PhotoGallery/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Ch27/PhotoGallery/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch27/PhotoGallery/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Ch27/PhotoGallery/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch27/PhotoGallery/build.gradle -------------------------------------------------------------------------------- /Ch27/PhotoGallery/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch27/PhotoGallery/gradle.properties -------------------------------------------------------------------------------- /Ch27/PhotoGallery/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch27/PhotoGallery/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Ch27/PhotoGallery/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch27/PhotoGallery/gradlew -------------------------------------------------------------------------------- /Ch27/PhotoGallery/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch27/PhotoGallery/gradlew.bat -------------------------------------------------------------------------------- /Ch27/PhotoGallery/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Ch28/PhotoGallery/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch28/PhotoGallery/.gitignore -------------------------------------------------------------------------------- /Ch28/PhotoGallery/.idea/.name: -------------------------------------------------------------------------------- 1 | PhotoGallery -------------------------------------------------------------------------------- /Ch28/PhotoGallery/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch28/PhotoGallery/.idea/compiler.xml -------------------------------------------------------------------------------- /Ch28/PhotoGallery/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch28/PhotoGallery/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /Ch28/PhotoGallery/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch28/PhotoGallery/.idea/encodings.xml -------------------------------------------------------------------------------- /Ch28/PhotoGallery/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch28/PhotoGallery/.idea/gradle.xml -------------------------------------------------------------------------------- /Ch28/PhotoGallery/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch28/PhotoGallery/.idea/misc.xml -------------------------------------------------------------------------------- /Ch28/PhotoGallery/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch28/PhotoGallery/.idea/modules.xml -------------------------------------------------------------------------------- /Ch28/PhotoGallery/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch28/PhotoGallery/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /Ch28/PhotoGallery/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Ch28/PhotoGallery/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch28/PhotoGallery/app/build.gradle -------------------------------------------------------------------------------- /Ch28/PhotoGallery/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch28/PhotoGallery/app/proguard-rules.pro -------------------------------------------------------------------------------- /Ch28/PhotoGallery/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch28/PhotoGallery/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Ch28/PhotoGallery/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch28/PhotoGallery/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Ch28/PhotoGallery/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch28/PhotoGallery/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /Ch28/PhotoGallery/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch28/PhotoGallery/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Ch28/PhotoGallery/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch28/PhotoGallery/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Ch28/PhotoGallery/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch28/PhotoGallery/build.gradle -------------------------------------------------------------------------------- /Ch28/PhotoGallery/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch28/PhotoGallery/gradle.properties -------------------------------------------------------------------------------- /Ch28/PhotoGallery/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch28/PhotoGallery/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Ch28/PhotoGallery/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch28/PhotoGallery/gradlew -------------------------------------------------------------------------------- /Ch28/PhotoGallery/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch28/PhotoGallery/gradlew.bat -------------------------------------------------------------------------------- /Ch28/PhotoGallery/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Ch29/DragAndDraw/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch29/DragAndDraw/.gitignore -------------------------------------------------------------------------------- /Ch29/DragAndDraw/.idea/.name: -------------------------------------------------------------------------------- 1 | DragAndDraw -------------------------------------------------------------------------------- /Ch29/DragAndDraw/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch29/DragAndDraw/.idea/compiler.xml -------------------------------------------------------------------------------- /Ch29/DragAndDraw/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch29/DragAndDraw/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /Ch29/DragAndDraw/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch29/DragAndDraw/.idea/encodings.xml -------------------------------------------------------------------------------- /Ch29/DragAndDraw/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch29/DragAndDraw/.idea/gradle.xml -------------------------------------------------------------------------------- /Ch29/DragAndDraw/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch29/DragAndDraw/.idea/misc.xml -------------------------------------------------------------------------------- /Ch29/DragAndDraw/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch29/DragAndDraw/.idea/modules.xml -------------------------------------------------------------------------------- /Ch29/DragAndDraw/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch29/DragAndDraw/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /Ch29/DragAndDraw/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Ch29/DragAndDraw/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch29/DragAndDraw/app/build.gradle -------------------------------------------------------------------------------- /Ch29/DragAndDraw/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch29/DragAndDraw/app/proguard-rules.pro -------------------------------------------------------------------------------- /Ch29/DragAndDraw/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch29/DragAndDraw/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Ch29/DragAndDraw/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch29/DragAndDraw/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Ch29/DragAndDraw/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch29/DragAndDraw/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /Ch29/DragAndDraw/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch29/DragAndDraw/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Ch29/DragAndDraw/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch29/DragAndDraw/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Ch29/DragAndDraw/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch29/DragAndDraw/build.gradle -------------------------------------------------------------------------------- /Ch29/DragAndDraw/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch29/DragAndDraw/gradle.properties -------------------------------------------------------------------------------- /Ch29/DragAndDraw/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch29/DragAndDraw/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Ch29/DragAndDraw/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch29/DragAndDraw/gradlew -------------------------------------------------------------------------------- /Ch29/DragAndDraw/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch29/DragAndDraw/gradlew.bat -------------------------------------------------------------------------------- /Ch29/DragAndDraw/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Ch30/Sunset/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch30/Sunset/.gitignore -------------------------------------------------------------------------------- /Ch30/Sunset/.idea/.name: -------------------------------------------------------------------------------- 1 | Sunset -------------------------------------------------------------------------------- /Ch30/Sunset/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch30/Sunset/.idea/compiler.xml -------------------------------------------------------------------------------- /Ch30/Sunset/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch30/Sunset/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /Ch30/Sunset/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch30/Sunset/.idea/encodings.xml -------------------------------------------------------------------------------- /Ch30/Sunset/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch30/Sunset/.idea/gradle.xml -------------------------------------------------------------------------------- /Ch30/Sunset/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch30/Sunset/.idea/misc.xml -------------------------------------------------------------------------------- /Ch30/Sunset/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch30/Sunset/.idea/modules.xml -------------------------------------------------------------------------------- /Ch30/Sunset/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch30/Sunset/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /Ch30/Sunset/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Ch30/Sunset/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch30/Sunset/app/build.gradle -------------------------------------------------------------------------------- /Ch30/Sunset/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch30/Sunset/app/proguard-rules.pro -------------------------------------------------------------------------------- /Ch30/Sunset/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch30/Sunset/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Ch30/Sunset/app/src/main/res/drawable/sun.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch30/Sunset/app/src/main/res/drawable/sun.xml -------------------------------------------------------------------------------- /Ch30/Sunset/app/src/main/res/layout/activity_sunset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch30/Sunset/app/src/main/res/layout/activity_sunset.xml -------------------------------------------------------------------------------- /Ch30/Sunset/app/src/main/res/layout/fragment_sunset.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch30/Sunset/app/src/main/res/layout/fragment_sunset.xml -------------------------------------------------------------------------------- /Ch30/Sunset/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch30/Sunset/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /Ch30/Sunset/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch30/Sunset/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Ch30/Sunset/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch30/Sunset/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /Ch30/Sunset/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch30/Sunset/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Ch30/Sunset/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch30/Sunset/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Ch30/Sunset/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch30/Sunset/build.gradle -------------------------------------------------------------------------------- /Ch30/Sunset/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch30/Sunset/gradle.properties -------------------------------------------------------------------------------- /Ch30/Sunset/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch30/Sunset/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Ch30/Sunset/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch30/Sunset/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Ch30/Sunset/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch30/Sunset/gradlew -------------------------------------------------------------------------------- /Ch30/Sunset/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch30/Sunset/gradlew.bat -------------------------------------------------------------------------------- /Ch30/Sunset/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Ch31/Locatr/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch31/Locatr/.gitignore -------------------------------------------------------------------------------- /Ch31/Locatr/.idea/.name: -------------------------------------------------------------------------------- 1 | Locatr -------------------------------------------------------------------------------- /Ch31/Locatr/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch31/Locatr/.idea/compiler.xml -------------------------------------------------------------------------------- /Ch31/Locatr/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch31/Locatr/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /Ch31/Locatr/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch31/Locatr/.idea/encodings.xml -------------------------------------------------------------------------------- /Ch31/Locatr/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch31/Locatr/.idea/gradle.xml -------------------------------------------------------------------------------- /Ch31/Locatr/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch31/Locatr/.idea/misc.xml -------------------------------------------------------------------------------- /Ch31/Locatr/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch31/Locatr/.idea/modules.xml -------------------------------------------------------------------------------- /Ch31/Locatr/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch31/Locatr/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /Ch31/Locatr/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Ch31/Locatr/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch31/Locatr/app/build.gradle -------------------------------------------------------------------------------- /Ch31/Locatr/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch31/Locatr/app/proguard-rules.pro -------------------------------------------------------------------------------- /Ch31/Locatr/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch31/Locatr/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Ch31/Locatr/app/src/main/res/layout/fragment_locatr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch31/Locatr/app/src/main/res/layout/fragment_locatr.xml -------------------------------------------------------------------------------- /Ch31/Locatr/app/src/main/res/menu/menu_locatr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch31/Locatr/app/src/main/res/menu/menu_locatr.xml -------------------------------------------------------------------------------- /Ch31/Locatr/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch31/Locatr/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /Ch31/Locatr/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch31/Locatr/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Ch31/Locatr/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch31/Locatr/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /Ch31/Locatr/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch31/Locatr/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Ch31/Locatr/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch31/Locatr/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Ch31/Locatr/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch31/Locatr/build.gradle -------------------------------------------------------------------------------- /Ch31/Locatr/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch31/Locatr/gradle.properties -------------------------------------------------------------------------------- /Ch31/Locatr/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch31/Locatr/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Ch31/Locatr/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch31/Locatr/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Ch31/Locatr/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch31/Locatr/gradlew -------------------------------------------------------------------------------- /Ch31/Locatr/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch31/Locatr/gradlew.bat -------------------------------------------------------------------------------- /Ch31/Locatr/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Ch32/Locatr/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch32/Locatr/.gitignore -------------------------------------------------------------------------------- /Ch32/Locatr/.idea/.name: -------------------------------------------------------------------------------- 1 | Locatr -------------------------------------------------------------------------------- /Ch32/Locatr/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch32/Locatr/.idea/compiler.xml -------------------------------------------------------------------------------- /Ch32/Locatr/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch32/Locatr/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /Ch32/Locatr/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch32/Locatr/.idea/encodings.xml -------------------------------------------------------------------------------- /Ch32/Locatr/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch32/Locatr/.idea/gradle.xml -------------------------------------------------------------------------------- /Ch32/Locatr/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch32/Locatr/.idea/misc.xml -------------------------------------------------------------------------------- /Ch32/Locatr/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch32/Locatr/.idea/modules.xml -------------------------------------------------------------------------------- /Ch32/Locatr/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch32/Locatr/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /Ch32/Locatr/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Ch32/Locatr/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch32/Locatr/app/build.gradle -------------------------------------------------------------------------------- /Ch32/Locatr/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch32/Locatr/app/proguard-rules.pro -------------------------------------------------------------------------------- /Ch32/Locatr/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch32/Locatr/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Ch32/Locatr/app/src/main/res/layout/fragment_locatr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch32/Locatr/app/src/main/res/layout/fragment_locatr.xml -------------------------------------------------------------------------------- /Ch32/Locatr/app/src/main/res/menu/menu_locatr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch32/Locatr/app/src/main/res/menu/menu_locatr.xml -------------------------------------------------------------------------------- /Ch32/Locatr/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch32/Locatr/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /Ch32/Locatr/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch32/Locatr/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Ch32/Locatr/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch32/Locatr/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /Ch32/Locatr/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch32/Locatr/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Ch32/Locatr/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch32/Locatr/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Ch32/Locatr/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch32/Locatr/build.gradle -------------------------------------------------------------------------------- /Ch32/Locatr/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch32/Locatr/gradle.properties -------------------------------------------------------------------------------- /Ch32/Locatr/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch32/Locatr/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Ch32/Locatr/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch32/Locatr/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Ch32/Locatr/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch32/Locatr/gradlew -------------------------------------------------------------------------------- /Ch32/Locatr/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch32/Locatr/gradlew.bat -------------------------------------------------------------------------------- /Ch32/Locatr/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Ch33/BeatBox/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch33/BeatBox/.gitignore -------------------------------------------------------------------------------- /Ch33/BeatBox/.idea/.name: -------------------------------------------------------------------------------- 1 | BeatBox -------------------------------------------------------------------------------- /Ch33/BeatBox/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch33/BeatBox/.idea/compiler.xml -------------------------------------------------------------------------------- /Ch33/BeatBox/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch33/BeatBox/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /Ch33/BeatBox/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch33/BeatBox/.idea/encodings.xml -------------------------------------------------------------------------------- /Ch33/BeatBox/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch33/BeatBox/.idea/gradle.xml -------------------------------------------------------------------------------- /Ch33/BeatBox/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch33/BeatBox/.idea/misc.xml -------------------------------------------------------------------------------- /Ch33/BeatBox/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch33/BeatBox/.idea/modules.xml -------------------------------------------------------------------------------- /Ch33/BeatBox/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch33/BeatBox/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /Ch33/BeatBox/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Ch33/BeatBox/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch33/BeatBox/app/build.gradle -------------------------------------------------------------------------------- /Ch33/BeatBox/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch33/BeatBox/app/proguard-rules.pro -------------------------------------------------------------------------------- /Ch33/BeatBox/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch33/BeatBox/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Ch33/BeatBox/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch33/BeatBox/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /Ch33/BeatBox/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch33/BeatBox/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Ch33/BeatBox/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch33/BeatBox/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /Ch33/BeatBox/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch33/BeatBox/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Ch33/BeatBox/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch33/BeatBox/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Ch33/BeatBox/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch33/BeatBox/build.gradle -------------------------------------------------------------------------------- /Ch33/BeatBox/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch33/BeatBox/gradle.properties -------------------------------------------------------------------------------- /Ch33/BeatBox/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch33/BeatBox/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Ch33/BeatBox/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch33/BeatBox/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Ch33/BeatBox/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch33/BeatBox/gradlew -------------------------------------------------------------------------------- /Ch33/BeatBox/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch33/BeatBox/gradlew.bat -------------------------------------------------------------------------------- /Ch33/BeatBox/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Ch33/MateriAl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch33/MateriAl/.gitignore -------------------------------------------------------------------------------- /Ch33/MateriAl/.idea/.name: -------------------------------------------------------------------------------- 1 | MateriAl -------------------------------------------------------------------------------- /Ch33/MateriAl/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch33/MateriAl/.idea/compiler.xml -------------------------------------------------------------------------------- /Ch33/MateriAl/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch33/MateriAl/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /Ch33/MateriAl/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch33/MateriAl/.idea/encodings.xml -------------------------------------------------------------------------------- /Ch33/MateriAl/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch33/MateriAl/.idea/gradle.xml -------------------------------------------------------------------------------- /Ch33/MateriAl/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch33/MateriAl/.idea/misc.xml -------------------------------------------------------------------------------- /Ch33/MateriAl/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch33/MateriAl/.idea/modules.xml -------------------------------------------------------------------------------- /Ch33/MateriAl/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch33/MateriAl/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /Ch33/MateriAl/MateriAl.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch33/MateriAl/MateriAl.iml -------------------------------------------------------------------------------- /Ch33/MateriAl/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Ch33/MateriAl/app/app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch33/MateriAl/app/app.iml -------------------------------------------------------------------------------- /Ch33/MateriAl/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch33/MateriAl/app/build.gradle -------------------------------------------------------------------------------- /Ch33/MateriAl/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch33/MateriAl/app/proguard-rules.pro -------------------------------------------------------------------------------- /Ch33/MateriAl/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch33/MateriAl/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Ch33/MateriAl/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch33/MateriAl/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /Ch33/MateriAl/app/src/main/res/menu/menu_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch33/MateriAl/app/src/main/res/menu/menu_main.xml -------------------------------------------------------------------------------- /Ch33/MateriAl/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch33/MateriAl/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /Ch33/MateriAl/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch33/MateriAl/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /Ch33/MateriAl/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch33/MateriAl/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Ch33/MateriAl/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch33/MateriAl/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Ch33/MateriAl/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch33/MateriAl/build.gradle -------------------------------------------------------------------------------- /Ch33/MateriAl/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch33/MateriAl/gradle.properties -------------------------------------------------------------------------------- /Ch33/MateriAl/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch33/MateriAl/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Ch33/MateriAl/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch33/MateriAl/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Ch33/MateriAl/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch33/MateriAl/gradlew -------------------------------------------------------------------------------- /Ch33/MateriAl/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/Ch33/MateriAl/gradlew.bat -------------------------------------------------------------------------------- /Ch33/MateriAl/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jpub/AndroidBNR2/HEAD/README.md --------------------------------------------------------------------------------