├── Android ├── AlarmManager │ └── StartUp │ │ ├── .gitignore │ │ ├── .idea │ │ ├── caches │ │ │ └── build_file_checksums.ser │ │ ├── encodings.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── runConfigurations.xml │ │ └── vcs.xml │ │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── hussein │ │ │ │ └── startup │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── hussein │ │ │ │ │ └── startup │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ ├── Notifications.kt │ │ │ │ │ ├── PopTime.kt │ │ │ │ │ ├── SaveData.kt │ │ │ │ │ └── myBroadcastReceiver.kt │ │ │ └── res │ │ │ │ ├── layout │ │ │ │ ├── activity_main.xml │ │ │ │ └── pop_time.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── hussein │ │ │ └── startup │ │ │ └── ExampleUnitTest.java │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle ├── Assets │ ├── FindMyPhone │ │ ├── dmap.png │ │ ├── gpson.png │ │ ├── ic_3d_rotation_white_24dp.png │ │ ├── ic_account_circle_white_24dp.png │ │ ├── ic_action_stat_share.png │ │ ├── ic_add_white_24dp.png │ │ ├── ic_cached_white_24dp.png │ │ ├── ic_directions_car_white_24dp.png │ │ ├── ic_done_white_24dp.png │ │ ├── ic_local_hospital_white_24dp.png │ │ ├── ic_perm_identity_white_24dp.png │ │ ├── ic_record_voice_over_white_24dp.png │ │ ├── imagecover.png │ │ └── left.png │ ├── Food Images │ │ ├── DifferentImageSize │ │ │ └── res-drawable │ │ │ │ ├── drawable-hdpi │ │ │ │ ├── coffee_pot.png │ │ │ │ ├── espresso.png │ │ │ │ ├── french_fries.png │ │ │ │ ├── honey.png │ │ │ │ ├── strawberry_ice_cream.png │ │ │ │ └── sugar_cubes.png │ │ │ │ ├── drawable-ldpi │ │ │ │ ├── coffee_pot.png │ │ │ │ ├── espresso.png │ │ │ │ ├── french_fries.png │ │ │ │ ├── honey.png │ │ │ │ ├── strawberry_ice_cream.png │ │ │ │ └── sugar_cubes.png │ │ │ │ ├── drawable-mdpi │ │ │ │ ├── coffee_pot.png │ │ │ │ ├── espresso.png │ │ │ │ ├── french_fries.png │ │ │ │ ├── honey.png │ │ │ │ ├── strawberry_ice_cream.png │ │ │ │ └── sugar_cubes.png │ │ │ │ ├── drawable-xhdpi │ │ │ │ ├── coffee_pot.png │ │ │ │ ├── espresso.png │ │ │ │ ├── french_fries.png │ │ │ │ ├── honey.png │ │ │ │ ├── strawberry_ice_cream.png │ │ │ │ └── sugar_cubes.png │ │ │ │ ├── drawable-xxhdpi │ │ │ │ ├── coffee_pot.png │ │ │ │ ├── espresso.png │ │ │ │ ├── french_fries.png │ │ │ │ ├── honey.png │ │ │ │ ├── strawberry_ice_cream.png │ │ │ │ └── sugar_cubes.png │ │ │ │ └── drawable-xxxhdpi │ │ │ │ ├── coffee_pot.png │ │ │ │ ├── espresso.png │ │ │ │ ├── french_fries.png │ │ │ │ ├── honey.png │ │ │ │ ├── strawberry_ice_cream.png │ │ │ │ └── sugar_cubes.png │ │ ├── coffee_pot.png │ │ ├── espresso.png │ │ ├── french_fries.png │ │ ├── honey.png │ │ ├── imageForApp │ │ │ └── res-drawable │ │ │ │ ├── drawable-hdpi │ │ │ │ ├── coffee_pot.png │ │ │ │ ├── espresso.png │ │ │ │ ├── french_fries.png │ │ │ │ ├── honey.png │ │ │ │ ├── strawberry_ice_cream.png │ │ │ │ └── sugar_cubes.png │ │ │ │ ├── drawable-ldpi │ │ │ │ ├── coffee_pot.png │ │ │ │ ├── espresso.png │ │ │ │ ├── french_fries.png │ │ │ │ ├── honey.png │ │ │ │ ├── strawberry_ice_cream.png │ │ │ │ └── sugar_cubes.png │ │ │ │ ├── drawable-mdpi │ │ │ │ ├── coffee_pot.png │ │ │ │ ├── espresso.png │ │ │ │ ├── french_fries.png │ │ │ │ ├── honey.png │ │ │ │ ├── strawberry_ice_cream.png │ │ │ │ └── sugar_cubes.png │ │ │ │ ├── drawable-xhdpi │ │ │ │ ├── coffee_pot.png │ │ │ │ ├── espresso.png │ │ │ │ ├── french_fries.png │ │ │ │ ├── honey.png │ │ │ │ ├── strawberry_ice_cream.png │ │ │ │ └── sugar_cubes.png │ │ │ │ ├── drawable-xxhdpi │ │ │ │ ├── coffee_pot.png │ │ │ │ ├── espresso.png │ │ │ │ ├── french_fries.png │ │ │ │ ├── honey.png │ │ │ │ ├── strawberry_ice_cream.png │ │ │ │ └── sugar_cubes.png │ │ │ │ └── drawable-xxxhdpi │ │ │ │ ├── coffee_pot.png │ │ │ │ ├── espresso.png │ │ │ │ ├── french_fries.png │ │ │ │ ├── honey.png │ │ │ │ ├── strawberry_ice_cream.png │ │ │ │ └── sugar_cubes.png │ │ ├── strawberry_ice_cream.png │ │ └── sugar_cubes.png │ ├── TicTacToy │ │ └── tictac.png │ ├── Twitter │ │ ├── ic_attach_file_black_24dp.png │ │ ├── ic_favorite_border_black_24dp.png │ │ ├── ic_home_black_24dp.png │ │ ├── ic_send_black_24dp.png │ │ ├── persoicon.png │ │ └── tweets.png │ ├── Zoo Images │ │ ├── SupportDifferentSize │ │ │ └── res-drawable │ │ │ │ ├── drawable-hdpi │ │ │ │ ├── baboon.png │ │ │ │ ├── bulldog.png │ │ │ │ ├── panda.png │ │ │ │ ├── swallow_bird.png │ │ │ │ ├── white_tiger.png │ │ │ │ └── zebra.png │ │ │ │ ├── drawable-ldpi │ │ │ │ ├── baboon.png │ │ │ │ ├── bulldog.png │ │ │ │ ├── panda.png │ │ │ │ ├── swallow_bird.png │ │ │ │ ├── white_tiger.png │ │ │ │ └── zebra.png │ │ │ │ ├── drawable-mdpi │ │ │ │ ├── baboon.png │ │ │ │ ├── bulldog.png │ │ │ │ ├── panda.png │ │ │ │ ├── swallow_bird.png │ │ │ │ ├── white_tiger.png │ │ │ │ └── zebra.png │ │ │ │ ├── drawable-xhdpi │ │ │ │ ├── baboon.png │ │ │ │ ├── bulldog.png │ │ │ │ ├── panda.png │ │ │ │ ├── swallow_bird.png │ │ │ │ ├── white_tiger.png │ │ │ │ └── zebra.png │ │ │ │ ├── drawable-xxhdpi │ │ │ │ ├── baboon.png │ │ │ │ ├── bulldog.png │ │ │ │ ├── panda.png │ │ │ │ ├── swallow_bird.png │ │ │ │ ├── white_tiger.png │ │ │ │ └── zebra.png │ │ │ │ └── drawable-xxxhdpi │ │ │ │ ├── baboon.png │ │ │ │ ├── bulldog.png │ │ │ │ ├── panda.png │ │ │ │ ├── swallow_bird.png │ │ │ │ ├── white_tiger.png │ │ │ │ └── zebra.png │ │ ├── baboon.png │ │ ├── bulldog.png │ │ ├── panda.png │ │ ├── swallow_bird.png │ │ ├── white_tiger.png │ │ └── zebra.png │ ├── mapApp │ │ ├── bulbasaur.png │ │ ├── charmander.png │ │ ├── mario.png │ │ └── squirtle.png │ └── mediaPlayer │ │ ├── img_btn_pause_pressed.png │ │ └── img_btn_play_pressed.png ├── Calculator │ └── StartUp │ │ ├── .gitignore │ │ ├── .idea │ │ ├── caches │ │ │ └── build_file_checksums.ser │ │ ├── encodings.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── runConfigurations.xml │ │ └── vcs.xml │ │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── hussein │ │ │ │ └── startup │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── hussein │ │ │ │ │ └── startup │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── layout-hdpi │ │ │ │ └── activity_main.xml │ │ │ │ ├── layout-land │ │ │ │ └── activity_main.xml │ │ │ │ ├── layout-ldpi │ │ │ │ └── activity_main.xml │ │ │ │ ├── layout-mdpi │ │ │ │ └── activity_main.xml │ │ │ │ ├── layout-xhdpi │ │ │ │ └── activity_main.xml │ │ │ │ ├── layout-xxhdpi │ │ │ │ └── activity_main.xml │ │ │ │ ├── layout-xxxhdpi │ │ │ │ └── activity_main.xml │ │ │ │ ├── layout │ │ │ │ └── activity_main.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── hussein │ │ │ └── startup │ │ │ └── ExampleUnitTest.java │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle ├── FindMyAge │ └── StartUp │ │ ├── .gitignore │ │ ├── .idea │ │ ├── caches │ │ │ └── build_file_checksums.ser │ │ ├── encodings.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── runConfigurations.xml │ │ └── vcs.xml │ │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── hussein │ │ │ │ └── startup │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── hussein │ │ │ │ │ └── startup │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── layout │ │ │ │ └── activity_main.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── hussein │ │ │ └── startup │ │ │ └── ExampleUnitTest.java │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle ├── FindMyPhone │ └── StartUp │ │ ├── .gitignore │ │ ├── .idea │ │ ├── caches │ │ │ └── build_file_checksums.ser │ │ ├── encodings.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── runConfigurations.xml │ │ └── vcs.xml │ │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── google-services.json │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── hussein │ │ │ │ └── startup │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── debug │ │ │ └── res │ │ │ │ └── values │ │ │ │ └── google_maps_api.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── hussein │ │ │ │ │ └── startup │ │ │ │ │ ├── Login.kt │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ ├── MapsActivity.kt │ │ │ │ │ ├── MyService.kt │ │ │ │ │ ├── MyTrackers.kt │ │ │ │ │ ├── StartWithOS.kt │ │ │ │ │ ├── UserContact.kt │ │ │ │ │ └── UserData.kt │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ ├── background.xml │ │ │ │ ├── dmap.png │ │ │ │ ├── gpson.png │ │ │ │ ├── ic_3d_rotation_white_24dp.png │ │ │ │ ├── ic_account_circle_white_24dp.png │ │ │ │ ├── ic_action_stat_share.png │ │ │ │ ├── ic_add_white_24dp.png │ │ │ │ ├── ic_cached_white_24dp.png │ │ │ │ ├── ic_directions_car_white_24dp.png │ │ │ │ ├── ic_done_white_24dp.png │ │ │ │ ├── ic_local_hospital_white_24dp.png │ │ │ │ ├── ic_perm_identity_white_24dp.png │ │ │ │ ├── ic_record_voice_over_white_24dp.png │ │ │ │ ├── imagecover.png │ │ │ │ └── left.png │ │ │ │ ├── layout │ │ │ │ ├── activity_login.xml │ │ │ │ ├── activity_main.xml │ │ │ │ ├── activity_maps.xml │ │ │ │ ├── activity_my_trackers.xml │ │ │ │ ├── contact_ticket.xml │ │ │ │ └── no_user.xml │ │ │ │ ├── menu │ │ │ │ ├── main_menu.xml │ │ │ │ └── tracker_menu.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ ├── release │ │ │ └── res │ │ │ │ └── values │ │ │ │ └── google_maps_api.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── hussein │ │ │ └── startup │ │ │ └── ExampleUnitTest.java │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle ├── FoodApp │ └── StartUp │ │ ├── .gitignore │ │ ├── .idea │ │ ├── caches │ │ │ └── build_file_checksums.ser │ │ ├── encodings.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── runConfigurations.xml │ │ └── vcs.xml │ │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── hussein │ │ │ │ └── startup │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── hussein │ │ │ │ │ └── startup │ │ │ │ │ ├── Food.kt │ │ │ │ │ ├── FoodDetails.kt │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── drawable-hdpi │ │ │ │ ├── coffee_pot.png │ │ │ │ ├── espresso.png │ │ │ │ ├── french_fries.png │ │ │ │ ├── honey.png │ │ │ │ ├── strawberry_ice_cream.png │ │ │ │ └── sugar_cubes.png │ │ │ │ ├── drawable-ldpi │ │ │ │ ├── coffee_pot.png │ │ │ │ ├── espresso.png │ │ │ │ ├── french_fries.png │ │ │ │ ├── honey.png │ │ │ │ ├── strawberry_ice_cream.png │ │ │ │ └── sugar_cubes.png │ │ │ │ ├── drawable-mdpi │ │ │ │ ├── coffee_pot.png │ │ │ │ ├── espresso.png │ │ │ │ ├── french_fries.png │ │ │ │ ├── honey.png │ │ │ │ ├── strawberry_ice_cream.png │ │ │ │ └── sugar_cubes.png │ │ │ │ ├── drawable-xhdpi │ │ │ │ ├── coffee_pot.png │ │ │ │ ├── espresso.png │ │ │ │ ├── french_fries.png │ │ │ │ ├── honey.png │ │ │ │ ├── strawberry_ice_cream.png │ │ │ │ └── sugar_cubes.png │ │ │ │ ├── drawable-xxhdpi │ │ │ │ ├── coffee_pot.png │ │ │ │ ├── espresso.png │ │ │ │ ├── french_fries.png │ │ │ │ ├── honey.png │ │ │ │ ├── strawberry_ice_cream.png │ │ │ │ └── sugar_cubes.png │ │ │ │ ├── drawable-xxxhdpi │ │ │ │ ├── coffee_pot.png │ │ │ │ ├── espresso.png │ │ │ │ ├── french_fries.png │ │ │ │ ├── honey.png │ │ │ │ ├── strawberry_ice_cream.png │ │ │ │ └── sugar_cubes.png │ │ │ │ ├── drawable │ │ │ │ └── background.xml │ │ │ │ ├── layout │ │ │ │ ├── activity_food_details.xml │ │ │ │ ├── activity_main.xml │ │ │ │ └── food_ticket.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── hussein │ │ │ └── startup │ │ │ └── ExampleUnitTest.java │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle ├── GetSunSet │ └── StartUp │ │ ├── .gitignore │ │ ├── .idea │ │ ├── caches │ │ │ └── build_file_checksums.ser │ │ ├── encodings.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── runConfigurations.xml │ │ └── vcs.xml │ │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── hussein │ │ │ │ └── startup │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── hussein │ │ │ │ │ └── startup │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ ├── background.xml │ │ │ │ └── button_blue.xml │ │ │ │ ├── layout │ │ │ │ └── activity_main.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── hussein │ │ │ └── startup │ │ │ └── ExampleUnitTest.java │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle ├── MediaPlayer │ └── StartUp │ │ ├── .gitignore │ │ ├── .idea │ │ ├── caches │ │ │ └── build_file_checksums.ser │ │ ├── encodings.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── runConfigurations.xml │ │ └── vcs.xml │ │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── hussein │ │ │ │ └── startup │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── hussein │ │ │ │ │ └── startup │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ └── SongInfo.kt │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ ├── background_ticket.xml │ │ │ │ └── button_background.xml │ │ │ │ ├── layout │ │ │ │ ├── activity_main.xml │ │ │ │ └── song_ticket.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── hussein │ │ │ └── startup │ │ │ └── ExampleUnitTest.java │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle ├── NoteApp │ ├── MyNotes Room Jetpack │ │ ├── .gitignore │ │ ├── .idea │ │ │ ├── caches │ │ │ │ └── build_file_checksums.ser │ │ │ ├── encodings.xml │ │ │ ├── gradle.xml │ │ │ ├── misc.xml │ │ │ ├── modules.xml │ │ │ ├── runConfigurations.xml │ │ │ └── vcs.xml │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ ├── androidTest │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── hussein │ │ │ │ │ └── startup │ │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ │ └── com │ │ │ │ │ │ └── hussein │ │ │ │ │ │ └── startup │ │ │ │ │ │ ├── AddNotes.kt │ │ │ │ │ │ ├── DBManager.kt │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ └── res │ │ │ │ │ ├── drawable │ │ │ │ │ ├── appicons.png │ │ │ │ │ ├── background_layout.xml │ │ │ │ │ ├── bublue_color.xml │ │ │ │ │ ├── ic_delete_black_24dp.png │ │ │ │ │ ├── ic_mode_edit_black_24dp.png │ │ │ │ │ ├── ic_note_add_black_24dp.png │ │ │ │ │ └── ic_search_black_24dp.xml │ │ │ │ │ ├── layout │ │ │ │ │ ├── activity_add_notes.xml │ │ │ │ │ ├── activity_main.xml │ │ │ │ │ └── ticcket.xml │ │ │ │ │ ├── menu │ │ │ │ │ └── main_menu.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── values-fr │ │ │ │ │ └── strings.xml │ │ │ │ │ └── values │ │ │ │ │ ├── colors.xml │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── hussein │ │ │ │ └── startup │ │ │ │ └── ExampleUnitTest.java │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ └── MyNotes SQlite │ │ ├── .gitignore │ │ ├── .idea │ │ ├── caches │ │ │ └── build_file_checksums.ser │ │ ├── encodings.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── runConfigurations.xml │ │ └── vcs.xml │ │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── hussein │ │ │ │ └── startup │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── hussein │ │ │ │ │ └── startup │ │ │ │ │ ├── AddNotes.kt │ │ │ │ │ ├── DbManager.kt │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ └── Note.kt │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ ├── appicons.png │ │ │ │ ├── background_layout.xml │ │ │ │ ├── bublue_color.xml │ │ │ │ ├── ic_delete_black_24dp.png │ │ │ │ ├── ic_mode_edit_black_24dp.png │ │ │ │ ├── ic_note_add_black_24dp.png │ │ │ │ └── ic_search_black_24dp.xml │ │ │ │ ├── layout │ │ │ │ ├── activity_add_notes.xml │ │ │ │ ├── activity_main.xml │ │ │ │ └── ticcket.xml │ │ │ │ ├── menu │ │ │ │ └── main_menu.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── values-fr │ │ │ │ └── strings.xml │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── hussein │ │ │ └── startup │ │ │ └── ExampleUnitTest.java │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle ├── NotificationChannelsApp │ ├── .gitignore │ ├── .idea │ │ ├── caches │ │ │ └── build_file_checksums.ser │ │ ├── encodings.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── runConfigurations.xml │ │ └── vcs.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── alrubaye │ │ │ │ └── notifymeapp │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── alrubaye │ │ │ │ │ └── notifymeapp │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ └── NotificationHelper.kt │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ ├── bullbasaur.png │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ └── activity_main.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── alrubaye │ │ │ └── notifymeapp │ │ │ └── ExampleUnitTest.kt │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── PockemonAndroid │ ├── .gitignore │ ├── .idea │ │ ├── caches │ │ │ └── build_file_checksums.ser │ │ ├── encodings.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── runConfigurations.xml │ │ └── vcs.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── hussein │ │ │ │ └── pockemonandroid │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── debug │ │ │ └── res │ │ │ │ └── values │ │ │ │ └── google_maps_api.xml │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── hussein │ │ │ │ │ └── pockemonandroid │ │ │ │ │ ├── MapsActivity.kt │ │ │ │ │ └── Pockemon.kt │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ ├── bulbasaur.png │ │ │ │ ├── charmander.png │ │ │ │ ├── mario.png │ │ │ │ └── squirtle.png │ │ │ │ ├── layout │ │ │ │ └── activity_maps.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ ├── release │ │ │ └── res │ │ │ │ └── values │ │ │ │ └── google_maps_api.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── hussein │ │ │ └── pockemonandroid │ │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── StartUp │ ├── .gitignore │ ├── .idea │ │ ├── encodings.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ └── runConfigurations.xml │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── hussein │ │ │ │ └── startup │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── hussein │ │ │ │ │ └── startup │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── layout │ │ │ │ └── activity_main.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── hussein │ │ │ └── startup │ │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── TicTacToy Game │ ├── TicTacToeLocal │ │ ├── .gitignore │ │ ├── .idea │ │ │ ├── codeStyles │ │ │ │ ├── Project.xml │ │ │ │ └── codeStyleConfig.xml │ │ │ ├── encodings.xml │ │ │ ├── gradle.xml │ │ │ ├── misc.xml │ │ │ └── runConfigurations.xml │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ ├── androidTest │ │ │ │ └── java │ │ │ │ │ └── com │ │ │ │ │ └── alrubaye │ │ │ │ │ └── tictactoeapp │ │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ │ └── com │ │ │ │ │ │ └── alrubaye │ │ │ │ │ │ └── tictactoeapp │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ └── res │ │ │ │ │ ├── drawable-v24 │ │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ │ ├── drawable │ │ │ │ │ └── ic_launcher_background.xml │ │ │ │ │ ├── layout │ │ │ │ │ └── activity_main.xml │ │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ │ ├── ic_launcher.xml │ │ │ │ │ └── ic_launcher_round.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ ├── ic_launcher.png │ │ │ │ │ └── ic_launcher_round.png │ │ │ │ │ └── values │ │ │ │ │ ├── colors.xml │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── styles.xml │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── alrubaye │ │ │ │ └── tictactoeapp │ │ │ │ └── ExampleUnitTest.kt │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ └── TicTacToyOnline │ │ └── TicTacToyLocal │ │ ├── .idea │ │ ├── TicTacToyLocal.iml │ │ ├── encodings.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ └── workspace.xml │ │ └── StartUp │ │ ├── .gitignore │ │ ├── .idea │ │ ├── caches │ │ │ └── build_file_checksums.ser │ │ ├── encodings.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── runConfigurations.xml │ │ └── vcs.xml │ │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── google-services.json │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── hussein │ │ │ │ └── startup │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── hussein │ │ │ │ │ └── startup │ │ │ │ │ ├── Login.kt │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ └── Notifications.kt │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ └── tictac.png │ │ │ │ ├── layout │ │ │ │ ├── activity_login.xml │ │ │ │ └── activity_main.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── hussein │ │ │ └── startup │ │ │ └── ExampleUnitTest.java │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle ├── TwitterDemo │ └── StartUp │ │ ├── .gitignore │ │ ├── .idea │ │ ├── caches │ │ │ └── build_file_checksums.ser │ │ ├── encodings.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── runConfigurations.xml │ │ └── vcs.xml │ │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── google-services.json │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── hussein │ │ │ │ └── startup │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── hussein │ │ │ │ │ └── startup │ │ │ │ │ ├── Login.kt │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ ├── MyFirebaseMessagingService.kt │ │ │ │ │ ├── PostInfo.kt │ │ │ │ │ └── Ticket.kt │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ ├── background.xml │ │ │ │ ├── ic_attach_file_black_24dp.png │ │ │ │ ├── ic_favorite_border_black_24dp.png │ │ │ │ ├── ic_home_black_24dp.png │ │ │ │ ├── ic_send_black_24dp.png │ │ │ │ ├── persoicon.png │ │ │ │ └── tweets.png │ │ │ │ ├── layout │ │ │ │ ├── activity_login.xml │ │ │ │ ├── activity_main.xml │ │ │ │ ├── add_ticket.xml │ │ │ │ ├── ads_ticket.xml │ │ │ │ ├── loading_ticket.xml │ │ │ │ └── tweets_ticket.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── hussein │ │ │ └── startup │ │ │ └── ExampleUnitTest.java │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle ├── TwitterWebService │ ├── DBScript.sql │ ├── README.md │ ├── TwitterAndroidServer │ │ ├── DBInfo.inc │ │ ├── IsFollowing.php │ │ ├── Login.php │ │ ├── Register.php │ │ ├── TweetAdd.php │ │ ├── TweetList.php │ │ └── UserFollowing.php │ └── TwitterWebService │ │ ├── .gitignore │ │ ├── .idea │ │ ├── caches │ │ │ └── build_file_checksums.ser │ │ ├── encodings.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── runConfigurations.xml │ │ └── vcs.xml │ │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── google-services.json │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── alrubaye │ │ │ │ └── twitterwebservice │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── alrubaye │ │ │ │ │ └── twitterwebservice │ │ │ │ │ ├── Login.kt │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ ├── Operations.kt │ │ │ │ │ ├── Register.kt │ │ │ │ │ ├── SaveSettings.kt │ │ │ │ │ └── Ticket.kt │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ ├── background.xml │ │ │ │ ├── bu_color.xml │ │ │ │ ├── ic_attach_file_black_24dp.png │ │ │ │ ├── ic_favorite_border_black_24dp.png │ │ │ │ ├── ic_home_black_24dp.png │ │ │ │ ├── ic_home_white_48dp.png │ │ │ │ ├── ic_launcher_background.xml │ │ │ │ ├── ic_search_white_48dp.png │ │ │ │ ├── ic_send_black_24dp.png │ │ │ │ ├── persoicon.png │ │ │ │ └── tweets.png │ │ │ │ ├── layout │ │ │ │ ├── activity_login.xml │ │ │ │ ├── activity_main.xml │ │ │ │ ├── activity_register.xml │ │ │ │ ├── add_ticket.xml │ │ │ │ ├── loading_ticket.xml │ │ │ │ └── tweets_ticket.xml │ │ │ │ ├── menu │ │ │ │ └── main_menu.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ ├── ic_launcher_foreground.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── dimens.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── alrubaye │ │ │ └── twitterwebservice │ │ │ └── ExampleUnitTest.kt │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle ├── ZooApp │ └── StartUp │ │ ├── .gitignore │ │ ├── .idea │ │ ├── caches │ │ │ └── build_file_checksums.ser │ │ ├── encodings.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── runConfigurations.xml │ │ └── vcs.xml │ │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── hussein │ │ │ │ └── startup │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── hussein │ │ │ │ │ └── startup │ │ │ │ │ ├── Animal.kt │ │ │ │ │ ├── AnimalInfo.kt │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── drawable-hdpi │ │ │ │ ├── baboon.png │ │ │ │ ├── bulldog.png │ │ │ │ ├── panda.png │ │ │ │ ├── swallow_bird.png │ │ │ │ ├── white_tiger.png │ │ │ │ └── zebra.png │ │ │ │ ├── drawable-ldpi │ │ │ │ ├── baboon.png │ │ │ │ ├── bulldog.png │ │ │ │ ├── panda.png │ │ │ │ ├── swallow_bird.png │ │ │ │ ├── white_tiger.png │ │ │ │ └── zebra.png │ │ │ │ ├── drawable-mdpi │ │ │ │ ├── baboon.png │ │ │ │ ├── bulldog.png │ │ │ │ ├── panda.png │ │ │ │ ├── swallow_bird.png │ │ │ │ ├── white_tiger.png │ │ │ │ └── zebra.png │ │ │ │ ├── drawable-xhdpi │ │ │ │ ├── baboon.png │ │ │ │ ├── bulldog.png │ │ │ │ ├── panda.png │ │ │ │ ├── swallow_bird.png │ │ │ │ ├── white_tiger.png │ │ │ │ └── zebra.png │ │ │ │ ├── drawable-xxhdpi │ │ │ │ ├── baboon.png │ │ │ │ ├── bulldog.png │ │ │ │ ├── panda.png │ │ │ │ ├── swallow_bird.png │ │ │ │ ├── white_tiger.png │ │ │ │ └── zebra.png │ │ │ │ ├── drawable-xxxhdpi │ │ │ │ ├── baboon.png │ │ │ │ ├── bulldog.png │ │ │ │ ├── panda.png │ │ │ │ ├── swallow_bird.png │ │ │ │ ├── white_tiger.png │ │ │ │ └── zebra.png │ │ │ │ ├── drawable │ │ │ │ ├── background.xml │ │ │ │ └── background_killer.xml │ │ │ │ ├── layout │ │ │ │ ├── activity_animal_info.xml │ │ │ │ ├── activity_main.xml │ │ │ │ ├── animal_killer_ticket.xml │ │ │ │ └── animal_ticket.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── hussein │ │ │ └── startup │ │ │ └── ExampleUnitTest.java │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle └── sensors │ ├── light │ ├── .idea │ │ ├── encodings.xml │ │ ├── light.iml │ │ ├── modules.xml │ │ ├── vcs.xml │ │ └── workspace.xml │ └── StartUp │ │ ├── .gitignore │ │ ├── .idea │ │ ├── caches │ │ │ └── build_file_checksums.ser │ │ ├── encodings.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── runConfigurations.xml │ │ └── vcs.xml │ │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── hussein │ │ │ │ └── startup │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── hussein │ │ │ │ │ └── startup │ │ │ │ │ └── MainActivity.kt │ │ │ └── res │ │ │ │ ├── layout │ │ │ │ └── activity_main.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── hussein │ │ │ └── startup │ │ │ └── ExampleUnitTest.java │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ └── numbizz │ └── StartUp │ ├── .gitignore │ ├── .idea │ ├── caches │ │ └── build_file_checksums.ser │ ├── encodings.xml │ ├── gradle.xml │ ├── misc.xml │ ├── modules.xml │ ├── runConfigurations.xml │ └── vcs.xml │ ├── app │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── hussein │ │ │ └── startup │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── hussein │ │ │ │ └── startup │ │ │ │ └── MainActivity.kt │ │ └── res │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── hussein │ │ └── startup │ │ └── ExampleUnitTest.java │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── Kotlin ├── .idea │ ├── encodings.xml │ ├── misc.xml │ ├── modules.xml │ └── workspace.xml └── src │ ├── ArraysDemo.kt │ ├── BreakAndContinue.kt │ ├── CollectionUpdate.kt │ ├── DataTypes.kt │ ├── ExpressionCondition.kt │ ├── FindMyAge.kt │ ├── FirstApp.kt │ ├── FunctionOverload.kt │ ├── FunctionPolymorphism.kt │ ├── FunctionSimple.kt │ ├── HashMapDemo.kt │ ├── IFELSEIF.kt │ ├── IFElse.kt │ ├── ImprovePetsApp.kt │ ├── Inputs.kt │ ├── Lamda.kt │ ├── LinkedListDemo.kt │ ├── LogicCondition.kt │ ├── MathOperations.kt │ ├── ModifyVaribile.kt │ ├── NestedIF.kt │ ├── NestedLoop.kt │ ├── OrderOfOperations.kt │ ├── Scope.kt │ ├── SimpleFor.kt │ ├── SimpleIF.kt │ ├── StringsDemo.kt │ ├── SwapNumber.kt │ ├── WhenMenu.kt │ ├── WhileDoWhile.kt │ ├── com │ └── car │ │ └── maintin │ │ ├── Car.kt │ │ ├── CarOptions.kt │ │ ├── CreditCardCompany.kt │ │ ├── DataClass.kt │ │ ├── MaxApp.kt │ │ └── Truck.kt │ └── legacy │ ├── Generic.kt │ ├── NestedClass.kt │ ├── Overriding.kt │ ├── SimpleAbstruct.kt │ ├── Singleton.kt │ └── enumsDemo.kt ├── LICENSE.md └── README.md /Android/AlarmManager/StartUp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/AlarmManager/StartUp/.gitignore -------------------------------------------------------------------------------- /Android/AlarmManager/StartUp/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/AlarmManager/StartUp/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /Android/AlarmManager/StartUp/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/AlarmManager/StartUp/.idea/encodings.xml -------------------------------------------------------------------------------- /Android/AlarmManager/StartUp/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/AlarmManager/StartUp/.idea/gradle.xml -------------------------------------------------------------------------------- /Android/AlarmManager/StartUp/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/AlarmManager/StartUp/.idea/misc.xml -------------------------------------------------------------------------------- /Android/AlarmManager/StartUp/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/AlarmManager/StartUp/.idea/modules.xml -------------------------------------------------------------------------------- /Android/AlarmManager/StartUp/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/AlarmManager/StartUp/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /Android/AlarmManager/StartUp/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/AlarmManager/StartUp/.idea/vcs.xml -------------------------------------------------------------------------------- /Android/AlarmManager/StartUp/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Android/AlarmManager/StartUp/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/AlarmManager/StartUp/app/build.gradle -------------------------------------------------------------------------------- /Android/AlarmManager/StartUp/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/AlarmManager/StartUp/app/proguard-rules.pro -------------------------------------------------------------------------------- /Android/AlarmManager/StartUp/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/AlarmManager/StartUp/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Android/AlarmManager/StartUp/app/src/main/java/com/hussein/startup/PopTime.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/AlarmManager/StartUp/app/src/main/java/com/hussein/startup/PopTime.kt -------------------------------------------------------------------------------- /Android/AlarmManager/StartUp/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/AlarmManager/StartUp/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /Android/AlarmManager/StartUp/app/src/main/res/layout/pop_time.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/AlarmManager/StartUp/app/src/main/res/layout/pop_time.xml -------------------------------------------------------------------------------- /Android/AlarmManager/StartUp/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/AlarmManager/StartUp/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/AlarmManager/StartUp/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/AlarmManager/StartUp/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/AlarmManager/StartUp/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/AlarmManager/StartUp/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/AlarmManager/StartUp/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/AlarmManager/StartUp/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/AlarmManager/StartUp/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/AlarmManager/StartUp/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/AlarmManager/StartUp/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/AlarmManager/StartUp/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Android/AlarmManager/StartUp/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/AlarmManager/StartUp/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Android/AlarmManager/StartUp/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/AlarmManager/StartUp/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Android/AlarmManager/StartUp/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/AlarmManager/StartUp/build.gradle -------------------------------------------------------------------------------- /Android/AlarmManager/StartUp/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/AlarmManager/StartUp/gradle.properties -------------------------------------------------------------------------------- /Android/AlarmManager/StartUp/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/AlarmManager/StartUp/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Android/AlarmManager/StartUp/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/AlarmManager/StartUp/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Android/AlarmManager/StartUp/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/AlarmManager/StartUp/gradlew -------------------------------------------------------------------------------- /Android/AlarmManager/StartUp/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/AlarmManager/StartUp/gradlew.bat -------------------------------------------------------------------------------- /Android/AlarmManager/StartUp/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Android/Assets/FindMyPhone/dmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/Assets/FindMyPhone/dmap.png -------------------------------------------------------------------------------- /Android/Assets/FindMyPhone/gpson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/Assets/FindMyPhone/gpson.png -------------------------------------------------------------------------------- /Android/Assets/FindMyPhone/ic_3d_rotation_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/Assets/FindMyPhone/ic_3d_rotation_white_24dp.png -------------------------------------------------------------------------------- /Android/Assets/FindMyPhone/ic_account_circle_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/Assets/FindMyPhone/ic_account_circle_white_24dp.png -------------------------------------------------------------------------------- /Android/Assets/FindMyPhone/ic_action_stat_share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/Assets/FindMyPhone/ic_action_stat_share.png -------------------------------------------------------------------------------- /Android/Assets/FindMyPhone/ic_add_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/Assets/FindMyPhone/ic_add_white_24dp.png -------------------------------------------------------------------------------- /Android/Assets/FindMyPhone/ic_cached_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/Assets/FindMyPhone/ic_cached_white_24dp.png -------------------------------------------------------------------------------- /Android/Assets/FindMyPhone/ic_directions_car_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/Assets/FindMyPhone/ic_directions_car_white_24dp.png -------------------------------------------------------------------------------- /Android/Assets/FindMyPhone/ic_done_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/Assets/FindMyPhone/ic_done_white_24dp.png -------------------------------------------------------------------------------- /Android/Assets/FindMyPhone/ic_local_hospital_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/Assets/FindMyPhone/ic_local_hospital_white_24dp.png -------------------------------------------------------------------------------- /Android/Assets/FindMyPhone/ic_perm_identity_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/Assets/FindMyPhone/ic_perm_identity_white_24dp.png -------------------------------------------------------------------------------- /Android/Assets/FindMyPhone/ic_record_voice_over_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/Assets/FindMyPhone/ic_record_voice_over_white_24dp.png -------------------------------------------------------------------------------- /Android/Assets/FindMyPhone/imagecover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/Assets/FindMyPhone/imagecover.png -------------------------------------------------------------------------------- /Android/Assets/FindMyPhone/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/Assets/FindMyPhone/left.png -------------------------------------------------------------------------------- /Android/Assets/Food Images/coffee_pot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/Assets/Food Images/coffee_pot.png -------------------------------------------------------------------------------- /Android/Assets/Food Images/espresso.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/Assets/Food Images/espresso.png -------------------------------------------------------------------------------- /Android/Assets/Food Images/french_fries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/Assets/Food Images/french_fries.png -------------------------------------------------------------------------------- /Android/Assets/Food Images/honey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/Assets/Food Images/honey.png -------------------------------------------------------------------------------- /Android/Assets/Food Images/imageForApp/res-drawable/drawable-hdpi/honey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/Assets/Food Images/imageForApp/res-drawable/drawable-hdpi/honey.png -------------------------------------------------------------------------------- /Android/Assets/Food Images/imageForApp/res-drawable/drawable-ldpi/honey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/Assets/Food Images/imageForApp/res-drawable/drawable-ldpi/honey.png -------------------------------------------------------------------------------- /Android/Assets/Food Images/imageForApp/res-drawable/drawable-mdpi/honey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/Assets/Food Images/imageForApp/res-drawable/drawable-mdpi/honey.png -------------------------------------------------------------------------------- /Android/Assets/Food Images/imageForApp/res-drawable/drawable-xhdpi/honey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/Assets/Food Images/imageForApp/res-drawable/drawable-xhdpi/honey.png -------------------------------------------------------------------------------- /Android/Assets/Food Images/imageForApp/res-drawable/drawable-xxhdpi/honey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/Assets/Food Images/imageForApp/res-drawable/drawable-xxhdpi/honey.png -------------------------------------------------------------------------------- /Android/Assets/Food Images/strawberry_ice_cream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/Assets/Food Images/strawberry_ice_cream.png -------------------------------------------------------------------------------- /Android/Assets/Food Images/sugar_cubes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/Assets/Food Images/sugar_cubes.png -------------------------------------------------------------------------------- /Android/Assets/TicTacToy/tictac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/Assets/TicTacToy/tictac.png -------------------------------------------------------------------------------- /Android/Assets/Twitter/ic_attach_file_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/Assets/Twitter/ic_attach_file_black_24dp.png -------------------------------------------------------------------------------- /Android/Assets/Twitter/ic_favorite_border_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/Assets/Twitter/ic_favorite_border_black_24dp.png -------------------------------------------------------------------------------- /Android/Assets/Twitter/ic_home_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/Assets/Twitter/ic_home_black_24dp.png -------------------------------------------------------------------------------- /Android/Assets/Twitter/ic_send_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/Assets/Twitter/ic_send_black_24dp.png -------------------------------------------------------------------------------- /Android/Assets/Twitter/persoicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/Assets/Twitter/persoicon.png -------------------------------------------------------------------------------- /Android/Assets/Twitter/tweets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/Assets/Twitter/tweets.png -------------------------------------------------------------------------------- /Android/Assets/Zoo Images/baboon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/Assets/Zoo Images/baboon.png -------------------------------------------------------------------------------- /Android/Assets/Zoo Images/bulldog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/Assets/Zoo Images/bulldog.png -------------------------------------------------------------------------------- /Android/Assets/Zoo Images/panda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/Assets/Zoo Images/panda.png -------------------------------------------------------------------------------- /Android/Assets/Zoo Images/swallow_bird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/Assets/Zoo Images/swallow_bird.png -------------------------------------------------------------------------------- /Android/Assets/Zoo Images/white_tiger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/Assets/Zoo Images/white_tiger.png -------------------------------------------------------------------------------- /Android/Assets/Zoo Images/zebra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/Assets/Zoo Images/zebra.png -------------------------------------------------------------------------------- /Android/Assets/mapApp/bulbasaur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/Assets/mapApp/bulbasaur.png -------------------------------------------------------------------------------- /Android/Assets/mapApp/charmander.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/Assets/mapApp/charmander.png -------------------------------------------------------------------------------- /Android/Assets/mapApp/mario.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/Assets/mapApp/mario.png -------------------------------------------------------------------------------- /Android/Assets/mapApp/squirtle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/Assets/mapApp/squirtle.png -------------------------------------------------------------------------------- /Android/Assets/mediaPlayer/img_btn_pause_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/Assets/mediaPlayer/img_btn_pause_pressed.png -------------------------------------------------------------------------------- /Android/Assets/mediaPlayer/img_btn_play_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/Assets/mediaPlayer/img_btn_play_pressed.png -------------------------------------------------------------------------------- /Android/Calculator/StartUp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/Calculator/StartUp/.gitignore -------------------------------------------------------------------------------- /Android/Calculator/StartUp/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/Calculator/StartUp/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /Android/Calculator/StartUp/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/Calculator/StartUp/.idea/encodings.xml -------------------------------------------------------------------------------- /Android/Calculator/StartUp/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/Calculator/StartUp/.idea/gradle.xml -------------------------------------------------------------------------------- /Android/Calculator/StartUp/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/Calculator/StartUp/.idea/misc.xml -------------------------------------------------------------------------------- /Android/Calculator/StartUp/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/Calculator/StartUp/.idea/modules.xml -------------------------------------------------------------------------------- /Android/Calculator/StartUp/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/Calculator/StartUp/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /Android/Calculator/StartUp/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/Calculator/StartUp/.idea/vcs.xml -------------------------------------------------------------------------------- /Android/Calculator/StartUp/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Android/Calculator/StartUp/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/Calculator/StartUp/app/build.gradle -------------------------------------------------------------------------------- /Android/Calculator/StartUp/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/Calculator/StartUp/app/proguard-rules.pro -------------------------------------------------------------------------------- /Android/Calculator/StartUp/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/Calculator/StartUp/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Android/Calculator/StartUp/app/src/main/res/layout-hdpi/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/Calculator/StartUp/app/src/main/res/layout-hdpi/activity_main.xml -------------------------------------------------------------------------------- /Android/Calculator/StartUp/app/src/main/res/layout-land/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/Calculator/StartUp/app/src/main/res/layout-land/activity_main.xml -------------------------------------------------------------------------------- /Android/Calculator/StartUp/app/src/main/res/layout-ldpi/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/Calculator/StartUp/app/src/main/res/layout-ldpi/activity_main.xml -------------------------------------------------------------------------------- /Android/Calculator/StartUp/app/src/main/res/layout-mdpi/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/Calculator/StartUp/app/src/main/res/layout-mdpi/activity_main.xml -------------------------------------------------------------------------------- /Android/Calculator/StartUp/app/src/main/res/layout-xhdpi/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/Calculator/StartUp/app/src/main/res/layout-xhdpi/activity_main.xml -------------------------------------------------------------------------------- /Android/Calculator/StartUp/app/src/main/res/layout-xxhdpi/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/Calculator/StartUp/app/src/main/res/layout-xxhdpi/activity_main.xml -------------------------------------------------------------------------------- /Android/Calculator/StartUp/app/src/main/res/layout-xxxhdpi/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/Calculator/StartUp/app/src/main/res/layout-xxxhdpi/activity_main.xml -------------------------------------------------------------------------------- /Android/Calculator/StartUp/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/Calculator/StartUp/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /Android/Calculator/StartUp/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/Calculator/StartUp/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/Calculator/StartUp/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/Calculator/StartUp/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Android/Calculator/StartUp/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/Calculator/StartUp/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/Calculator/StartUp/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/Calculator/StartUp/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Android/Calculator/StartUp/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/Calculator/StartUp/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/Calculator/StartUp/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/Calculator/StartUp/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/Calculator/StartUp/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/Calculator/StartUp/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/Calculator/StartUp/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/Calculator/StartUp/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Android/Calculator/StartUp/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/Calculator/StartUp/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Android/Calculator/StartUp/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/Calculator/StartUp/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Android/Calculator/StartUp/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/Calculator/StartUp/build.gradle -------------------------------------------------------------------------------- /Android/Calculator/StartUp/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/Calculator/StartUp/gradle.properties -------------------------------------------------------------------------------- /Android/Calculator/StartUp/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/Calculator/StartUp/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Android/Calculator/StartUp/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/Calculator/StartUp/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Android/Calculator/StartUp/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/Calculator/StartUp/gradlew -------------------------------------------------------------------------------- /Android/Calculator/StartUp/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/Calculator/StartUp/gradlew.bat -------------------------------------------------------------------------------- /Android/Calculator/StartUp/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Android/FindMyAge/StartUp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FindMyAge/StartUp/.gitignore -------------------------------------------------------------------------------- /Android/FindMyAge/StartUp/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FindMyAge/StartUp/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /Android/FindMyAge/StartUp/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FindMyAge/StartUp/.idea/encodings.xml -------------------------------------------------------------------------------- /Android/FindMyAge/StartUp/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FindMyAge/StartUp/.idea/gradle.xml -------------------------------------------------------------------------------- /Android/FindMyAge/StartUp/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FindMyAge/StartUp/.idea/misc.xml -------------------------------------------------------------------------------- /Android/FindMyAge/StartUp/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FindMyAge/StartUp/.idea/modules.xml -------------------------------------------------------------------------------- /Android/FindMyAge/StartUp/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FindMyAge/StartUp/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /Android/FindMyAge/StartUp/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FindMyAge/StartUp/.idea/vcs.xml -------------------------------------------------------------------------------- /Android/FindMyAge/StartUp/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Android/FindMyAge/StartUp/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FindMyAge/StartUp/app/build.gradle -------------------------------------------------------------------------------- /Android/FindMyAge/StartUp/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FindMyAge/StartUp/app/proguard-rules.pro -------------------------------------------------------------------------------- /Android/FindMyAge/StartUp/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FindMyAge/StartUp/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Android/FindMyAge/StartUp/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FindMyAge/StartUp/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /Android/FindMyAge/StartUp/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FindMyAge/StartUp/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/FindMyAge/StartUp/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FindMyAge/StartUp/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Android/FindMyAge/StartUp/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FindMyAge/StartUp/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/FindMyAge/StartUp/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FindMyAge/StartUp/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Android/FindMyAge/StartUp/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FindMyAge/StartUp/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/FindMyAge/StartUp/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FindMyAge/StartUp/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Android/FindMyAge/StartUp/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FindMyAge/StartUp/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/FindMyAge/StartUp/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FindMyAge/StartUp/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/FindMyAge/StartUp/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FindMyAge/StartUp/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Android/FindMyAge/StartUp/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FindMyAge/StartUp/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Android/FindMyAge/StartUp/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FindMyAge/StartUp/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Android/FindMyAge/StartUp/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FindMyAge/StartUp/build.gradle -------------------------------------------------------------------------------- /Android/FindMyAge/StartUp/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FindMyAge/StartUp/gradle.properties -------------------------------------------------------------------------------- /Android/FindMyAge/StartUp/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FindMyAge/StartUp/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Android/FindMyAge/StartUp/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FindMyAge/StartUp/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Android/FindMyAge/StartUp/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FindMyAge/StartUp/gradlew -------------------------------------------------------------------------------- /Android/FindMyAge/StartUp/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FindMyAge/StartUp/gradlew.bat -------------------------------------------------------------------------------- /Android/FindMyAge/StartUp/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Android/FindMyPhone/StartUp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FindMyPhone/StartUp/.gitignore -------------------------------------------------------------------------------- /Android/FindMyPhone/StartUp/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FindMyPhone/StartUp/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /Android/FindMyPhone/StartUp/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FindMyPhone/StartUp/.idea/encodings.xml -------------------------------------------------------------------------------- /Android/FindMyPhone/StartUp/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FindMyPhone/StartUp/.idea/gradle.xml -------------------------------------------------------------------------------- /Android/FindMyPhone/StartUp/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FindMyPhone/StartUp/.idea/misc.xml -------------------------------------------------------------------------------- /Android/FindMyPhone/StartUp/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FindMyPhone/StartUp/.idea/modules.xml -------------------------------------------------------------------------------- /Android/FindMyPhone/StartUp/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FindMyPhone/StartUp/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /Android/FindMyPhone/StartUp/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FindMyPhone/StartUp/.idea/vcs.xml -------------------------------------------------------------------------------- /Android/FindMyPhone/StartUp/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Android/FindMyPhone/StartUp/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FindMyPhone/StartUp/app/build.gradle -------------------------------------------------------------------------------- /Android/FindMyPhone/StartUp/app/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FindMyPhone/StartUp/app/google-services.json -------------------------------------------------------------------------------- /Android/FindMyPhone/StartUp/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FindMyPhone/StartUp/app/proguard-rules.pro -------------------------------------------------------------------------------- /Android/FindMyPhone/StartUp/app/src/debug/res/values/google_maps_api.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FindMyPhone/StartUp/app/src/debug/res/values/google_maps_api.xml -------------------------------------------------------------------------------- /Android/FindMyPhone/StartUp/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FindMyPhone/StartUp/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Android/FindMyPhone/StartUp/app/src/main/java/com/hussein/startup/Login.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FindMyPhone/StartUp/app/src/main/java/com/hussein/startup/Login.kt -------------------------------------------------------------------------------- /Android/FindMyPhone/StartUp/app/src/main/java/com/hussein/startup/UserData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FindMyPhone/StartUp/app/src/main/java/com/hussein/startup/UserData.kt -------------------------------------------------------------------------------- /Android/FindMyPhone/StartUp/app/src/main/res/drawable/background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FindMyPhone/StartUp/app/src/main/res/drawable/background.xml -------------------------------------------------------------------------------- /Android/FindMyPhone/StartUp/app/src/main/res/drawable/dmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FindMyPhone/StartUp/app/src/main/res/drawable/dmap.png -------------------------------------------------------------------------------- /Android/FindMyPhone/StartUp/app/src/main/res/drawable/gpson.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FindMyPhone/StartUp/app/src/main/res/drawable/gpson.png -------------------------------------------------------------------------------- /Android/FindMyPhone/StartUp/app/src/main/res/drawable/ic_add_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FindMyPhone/StartUp/app/src/main/res/drawable/ic_add_white_24dp.png -------------------------------------------------------------------------------- /Android/FindMyPhone/StartUp/app/src/main/res/drawable/ic_done_white_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FindMyPhone/StartUp/app/src/main/res/drawable/ic_done_white_24dp.png -------------------------------------------------------------------------------- /Android/FindMyPhone/StartUp/app/src/main/res/drawable/imagecover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FindMyPhone/StartUp/app/src/main/res/drawable/imagecover.png -------------------------------------------------------------------------------- /Android/FindMyPhone/StartUp/app/src/main/res/drawable/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FindMyPhone/StartUp/app/src/main/res/drawable/left.png -------------------------------------------------------------------------------- /Android/FindMyPhone/StartUp/app/src/main/res/layout/activity_login.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FindMyPhone/StartUp/app/src/main/res/layout/activity_login.xml -------------------------------------------------------------------------------- /Android/FindMyPhone/StartUp/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FindMyPhone/StartUp/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /Android/FindMyPhone/StartUp/app/src/main/res/layout/activity_maps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FindMyPhone/StartUp/app/src/main/res/layout/activity_maps.xml -------------------------------------------------------------------------------- /Android/FindMyPhone/StartUp/app/src/main/res/layout/activity_my_trackers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FindMyPhone/StartUp/app/src/main/res/layout/activity_my_trackers.xml -------------------------------------------------------------------------------- /Android/FindMyPhone/StartUp/app/src/main/res/layout/contact_ticket.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FindMyPhone/StartUp/app/src/main/res/layout/contact_ticket.xml -------------------------------------------------------------------------------- /Android/FindMyPhone/StartUp/app/src/main/res/layout/no_user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FindMyPhone/StartUp/app/src/main/res/layout/no_user.xml -------------------------------------------------------------------------------- /Android/FindMyPhone/StartUp/app/src/main/res/menu/main_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FindMyPhone/StartUp/app/src/main/res/menu/main_menu.xml -------------------------------------------------------------------------------- /Android/FindMyPhone/StartUp/app/src/main/res/menu/tracker_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FindMyPhone/StartUp/app/src/main/res/menu/tracker_menu.xml -------------------------------------------------------------------------------- /Android/FindMyPhone/StartUp/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FindMyPhone/StartUp/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/FindMyPhone/StartUp/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FindMyPhone/StartUp/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/FindMyPhone/StartUp/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FindMyPhone/StartUp/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/FindMyPhone/StartUp/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FindMyPhone/StartUp/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/FindMyPhone/StartUp/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FindMyPhone/StartUp/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/FindMyPhone/StartUp/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FindMyPhone/StartUp/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Android/FindMyPhone/StartUp/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FindMyPhone/StartUp/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Android/FindMyPhone/StartUp/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FindMyPhone/StartUp/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Android/FindMyPhone/StartUp/app/src/release/res/values/google_maps_api.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FindMyPhone/StartUp/app/src/release/res/values/google_maps_api.xml -------------------------------------------------------------------------------- /Android/FindMyPhone/StartUp/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FindMyPhone/StartUp/build.gradle -------------------------------------------------------------------------------- /Android/FindMyPhone/StartUp/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FindMyPhone/StartUp/gradle.properties -------------------------------------------------------------------------------- /Android/FindMyPhone/StartUp/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FindMyPhone/StartUp/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Android/FindMyPhone/StartUp/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FindMyPhone/StartUp/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Android/FindMyPhone/StartUp/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FindMyPhone/StartUp/gradlew -------------------------------------------------------------------------------- /Android/FindMyPhone/StartUp/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FindMyPhone/StartUp/gradlew.bat -------------------------------------------------------------------------------- /Android/FindMyPhone/StartUp/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Android/FoodApp/StartUp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FoodApp/StartUp/.gitignore -------------------------------------------------------------------------------- /Android/FoodApp/StartUp/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FoodApp/StartUp/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /Android/FoodApp/StartUp/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FoodApp/StartUp/.idea/encodings.xml -------------------------------------------------------------------------------- /Android/FoodApp/StartUp/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FoodApp/StartUp/.idea/gradle.xml -------------------------------------------------------------------------------- /Android/FoodApp/StartUp/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FoodApp/StartUp/.idea/misc.xml -------------------------------------------------------------------------------- /Android/FoodApp/StartUp/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FoodApp/StartUp/.idea/modules.xml -------------------------------------------------------------------------------- /Android/FoodApp/StartUp/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FoodApp/StartUp/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /Android/FoodApp/StartUp/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FoodApp/StartUp/.idea/vcs.xml -------------------------------------------------------------------------------- /Android/FoodApp/StartUp/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Android/FoodApp/StartUp/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FoodApp/StartUp/app/build.gradle -------------------------------------------------------------------------------- /Android/FoodApp/StartUp/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FoodApp/StartUp/app/proguard-rules.pro -------------------------------------------------------------------------------- /Android/FoodApp/StartUp/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FoodApp/StartUp/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Android/FoodApp/StartUp/app/src/main/java/com/hussein/startup/Food.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FoodApp/StartUp/app/src/main/java/com/hussein/startup/Food.kt -------------------------------------------------------------------------------- /Android/FoodApp/StartUp/app/src/main/java/com/hussein/startup/FoodDetails.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FoodApp/StartUp/app/src/main/java/com/hussein/startup/FoodDetails.kt -------------------------------------------------------------------------------- /Android/FoodApp/StartUp/app/src/main/java/com/hussein/startup/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FoodApp/StartUp/app/src/main/java/com/hussein/startup/MainActivity.kt -------------------------------------------------------------------------------- /Android/FoodApp/StartUp/app/src/main/res/drawable-hdpi/coffee_pot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FoodApp/StartUp/app/src/main/res/drawable-hdpi/coffee_pot.png -------------------------------------------------------------------------------- /Android/FoodApp/StartUp/app/src/main/res/drawable-hdpi/espresso.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FoodApp/StartUp/app/src/main/res/drawable-hdpi/espresso.png -------------------------------------------------------------------------------- /Android/FoodApp/StartUp/app/src/main/res/drawable-hdpi/french_fries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FoodApp/StartUp/app/src/main/res/drawable-hdpi/french_fries.png -------------------------------------------------------------------------------- /Android/FoodApp/StartUp/app/src/main/res/drawable-hdpi/honey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FoodApp/StartUp/app/src/main/res/drawable-hdpi/honey.png -------------------------------------------------------------------------------- /Android/FoodApp/StartUp/app/src/main/res/drawable-hdpi/sugar_cubes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FoodApp/StartUp/app/src/main/res/drawable-hdpi/sugar_cubes.png -------------------------------------------------------------------------------- /Android/FoodApp/StartUp/app/src/main/res/drawable-ldpi/coffee_pot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FoodApp/StartUp/app/src/main/res/drawable-ldpi/coffee_pot.png -------------------------------------------------------------------------------- /Android/FoodApp/StartUp/app/src/main/res/drawable-ldpi/espresso.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FoodApp/StartUp/app/src/main/res/drawable-ldpi/espresso.png -------------------------------------------------------------------------------- /Android/FoodApp/StartUp/app/src/main/res/drawable-ldpi/french_fries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FoodApp/StartUp/app/src/main/res/drawable-ldpi/french_fries.png -------------------------------------------------------------------------------- /Android/FoodApp/StartUp/app/src/main/res/drawable-ldpi/honey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FoodApp/StartUp/app/src/main/res/drawable-ldpi/honey.png -------------------------------------------------------------------------------- /Android/FoodApp/StartUp/app/src/main/res/drawable-ldpi/sugar_cubes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FoodApp/StartUp/app/src/main/res/drawable-ldpi/sugar_cubes.png -------------------------------------------------------------------------------- /Android/FoodApp/StartUp/app/src/main/res/drawable-mdpi/coffee_pot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FoodApp/StartUp/app/src/main/res/drawable-mdpi/coffee_pot.png -------------------------------------------------------------------------------- /Android/FoodApp/StartUp/app/src/main/res/drawable-mdpi/espresso.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FoodApp/StartUp/app/src/main/res/drawable-mdpi/espresso.png -------------------------------------------------------------------------------- /Android/FoodApp/StartUp/app/src/main/res/drawable-mdpi/french_fries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FoodApp/StartUp/app/src/main/res/drawable-mdpi/french_fries.png -------------------------------------------------------------------------------- /Android/FoodApp/StartUp/app/src/main/res/drawable-mdpi/honey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FoodApp/StartUp/app/src/main/res/drawable-mdpi/honey.png -------------------------------------------------------------------------------- /Android/FoodApp/StartUp/app/src/main/res/drawable-mdpi/sugar_cubes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FoodApp/StartUp/app/src/main/res/drawable-mdpi/sugar_cubes.png -------------------------------------------------------------------------------- /Android/FoodApp/StartUp/app/src/main/res/drawable-xhdpi/coffee_pot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FoodApp/StartUp/app/src/main/res/drawable-xhdpi/coffee_pot.png -------------------------------------------------------------------------------- /Android/FoodApp/StartUp/app/src/main/res/drawable-xhdpi/espresso.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FoodApp/StartUp/app/src/main/res/drawable-xhdpi/espresso.png -------------------------------------------------------------------------------- /Android/FoodApp/StartUp/app/src/main/res/drawable-xhdpi/french_fries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FoodApp/StartUp/app/src/main/res/drawable-xhdpi/french_fries.png -------------------------------------------------------------------------------- /Android/FoodApp/StartUp/app/src/main/res/drawable-xhdpi/honey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FoodApp/StartUp/app/src/main/res/drawable-xhdpi/honey.png -------------------------------------------------------------------------------- /Android/FoodApp/StartUp/app/src/main/res/drawable-xhdpi/sugar_cubes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FoodApp/StartUp/app/src/main/res/drawable-xhdpi/sugar_cubes.png -------------------------------------------------------------------------------- /Android/FoodApp/StartUp/app/src/main/res/drawable-xxhdpi/coffee_pot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FoodApp/StartUp/app/src/main/res/drawable-xxhdpi/coffee_pot.png -------------------------------------------------------------------------------- /Android/FoodApp/StartUp/app/src/main/res/drawable-xxhdpi/espresso.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FoodApp/StartUp/app/src/main/res/drawable-xxhdpi/espresso.png -------------------------------------------------------------------------------- /Android/FoodApp/StartUp/app/src/main/res/drawable-xxhdpi/french_fries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FoodApp/StartUp/app/src/main/res/drawable-xxhdpi/french_fries.png -------------------------------------------------------------------------------- /Android/FoodApp/StartUp/app/src/main/res/drawable-xxhdpi/honey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FoodApp/StartUp/app/src/main/res/drawable-xxhdpi/honey.png -------------------------------------------------------------------------------- /Android/FoodApp/StartUp/app/src/main/res/drawable-xxhdpi/sugar_cubes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FoodApp/StartUp/app/src/main/res/drawable-xxhdpi/sugar_cubes.png -------------------------------------------------------------------------------- /Android/FoodApp/StartUp/app/src/main/res/drawable-xxxhdpi/coffee_pot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FoodApp/StartUp/app/src/main/res/drawable-xxxhdpi/coffee_pot.png -------------------------------------------------------------------------------- /Android/FoodApp/StartUp/app/src/main/res/drawable-xxxhdpi/espresso.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FoodApp/StartUp/app/src/main/res/drawable-xxxhdpi/espresso.png -------------------------------------------------------------------------------- /Android/FoodApp/StartUp/app/src/main/res/drawable-xxxhdpi/french_fries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FoodApp/StartUp/app/src/main/res/drawable-xxxhdpi/french_fries.png -------------------------------------------------------------------------------- /Android/FoodApp/StartUp/app/src/main/res/drawable-xxxhdpi/honey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FoodApp/StartUp/app/src/main/res/drawable-xxxhdpi/honey.png -------------------------------------------------------------------------------- /Android/FoodApp/StartUp/app/src/main/res/drawable-xxxhdpi/sugar_cubes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FoodApp/StartUp/app/src/main/res/drawable-xxxhdpi/sugar_cubes.png -------------------------------------------------------------------------------- /Android/FoodApp/StartUp/app/src/main/res/drawable/background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FoodApp/StartUp/app/src/main/res/drawable/background.xml -------------------------------------------------------------------------------- /Android/FoodApp/StartUp/app/src/main/res/layout/activity_food_details.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FoodApp/StartUp/app/src/main/res/layout/activity_food_details.xml -------------------------------------------------------------------------------- /Android/FoodApp/StartUp/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FoodApp/StartUp/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /Android/FoodApp/StartUp/app/src/main/res/layout/food_ticket.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FoodApp/StartUp/app/src/main/res/layout/food_ticket.xml -------------------------------------------------------------------------------- /Android/FoodApp/StartUp/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FoodApp/StartUp/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/FoodApp/StartUp/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FoodApp/StartUp/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Android/FoodApp/StartUp/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FoodApp/StartUp/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/FoodApp/StartUp/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FoodApp/StartUp/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Android/FoodApp/StartUp/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FoodApp/StartUp/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/FoodApp/StartUp/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FoodApp/StartUp/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Android/FoodApp/StartUp/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FoodApp/StartUp/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/FoodApp/StartUp/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FoodApp/StartUp/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Android/FoodApp/StartUp/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FoodApp/StartUp/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/FoodApp/StartUp/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FoodApp/StartUp/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Android/FoodApp/StartUp/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FoodApp/StartUp/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Android/FoodApp/StartUp/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FoodApp/StartUp/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Android/FoodApp/StartUp/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FoodApp/StartUp/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Android/FoodApp/StartUp/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FoodApp/StartUp/build.gradle -------------------------------------------------------------------------------- /Android/FoodApp/StartUp/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FoodApp/StartUp/gradle.properties -------------------------------------------------------------------------------- /Android/FoodApp/StartUp/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FoodApp/StartUp/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Android/FoodApp/StartUp/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FoodApp/StartUp/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Android/FoodApp/StartUp/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FoodApp/StartUp/gradlew -------------------------------------------------------------------------------- /Android/FoodApp/StartUp/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/FoodApp/StartUp/gradlew.bat -------------------------------------------------------------------------------- /Android/FoodApp/StartUp/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Android/GetSunSet/StartUp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/GetSunSet/StartUp/.gitignore -------------------------------------------------------------------------------- /Android/GetSunSet/StartUp/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/GetSunSet/StartUp/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /Android/GetSunSet/StartUp/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/GetSunSet/StartUp/.idea/encodings.xml -------------------------------------------------------------------------------- /Android/GetSunSet/StartUp/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/GetSunSet/StartUp/.idea/gradle.xml -------------------------------------------------------------------------------- /Android/GetSunSet/StartUp/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/GetSunSet/StartUp/.idea/misc.xml -------------------------------------------------------------------------------- /Android/GetSunSet/StartUp/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/GetSunSet/StartUp/.idea/modules.xml -------------------------------------------------------------------------------- /Android/GetSunSet/StartUp/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/GetSunSet/StartUp/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /Android/GetSunSet/StartUp/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/GetSunSet/StartUp/.idea/vcs.xml -------------------------------------------------------------------------------- /Android/GetSunSet/StartUp/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Android/GetSunSet/StartUp/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/GetSunSet/StartUp/app/build.gradle -------------------------------------------------------------------------------- /Android/GetSunSet/StartUp/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/GetSunSet/StartUp/app/proguard-rules.pro -------------------------------------------------------------------------------- /Android/GetSunSet/StartUp/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/GetSunSet/StartUp/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Android/GetSunSet/StartUp/app/src/main/res/drawable/background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/GetSunSet/StartUp/app/src/main/res/drawable/background.xml -------------------------------------------------------------------------------- /Android/GetSunSet/StartUp/app/src/main/res/drawable/button_blue.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/GetSunSet/StartUp/app/src/main/res/drawable/button_blue.xml -------------------------------------------------------------------------------- /Android/GetSunSet/StartUp/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/GetSunSet/StartUp/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /Android/GetSunSet/StartUp/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/GetSunSet/StartUp/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/GetSunSet/StartUp/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/GetSunSet/StartUp/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Android/GetSunSet/StartUp/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/GetSunSet/StartUp/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/GetSunSet/StartUp/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/GetSunSet/StartUp/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Android/GetSunSet/StartUp/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/GetSunSet/StartUp/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/GetSunSet/StartUp/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/GetSunSet/StartUp/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Android/GetSunSet/StartUp/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/GetSunSet/StartUp/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/GetSunSet/StartUp/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/GetSunSet/StartUp/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/GetSunSet/StartUp/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/GetSunSet/StartUp/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Android/GetSunSet/StartUp/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/GetSunSet/StartUp/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Android/GetSunSet/StartUp/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/GetSunSet/StartUp/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Android/GetSunSet/StartUp/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/GetSunSet/StartUp/build.gradle -------------------------------------------------------------------------------- /Android/GetSunSet/StartUp/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/GetSunSet/StartUp/gradle.properties -------------------------------------------------------------------------------- /Android/GetSunSet/StartUp/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/GetSunSet/StartUp/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Android/GetSunSet/StartUp/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/GetSunSet/StartUp/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Android/GetSunSet/StartUp/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/GetSunSet/StartUp/gradlew -------------------------------------------------------------------------------- /Android/GetSunSet/StartUp/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/GetSunSet/StartUp/gradlew.bat -------------------------------------------------------------------------------- /Android/GetSunSet/StartUp/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Android/MediaPlayer/StartUp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/MediaPlayer/StartUp/.gitignore -------------------------------------------------------------------------------- /Android/MediaPlayer/StartUp/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/MediaPlayer/StartUp/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /Android/MediaPlayer/StartUp/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/MediaPlayer/StartUp/.idea/encodings.xml -------------------------------------------------------------------------------- /Android/MediaPlayer/StartUp/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/MediaPlayer/StartUp/.idea/gradle.xml -------------------------------------------------------------------------------- /Android/MediaPlayer/StartUp/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/MediaPlayer/StartUp/.idea/misc.xml -------------------------------------------------------------------------------- /Android/MediaPlayer/StartUp/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/MediaPlayer/StartUp/.idea/modules.xml -------------------------------------------------------------------------------- /Android/MediaPlayer/StartUp/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/MediaPlayer/StartUp/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /Android/MediaPlayer/StartUp/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/MediaPlayer/StartUp/.idea/vcs.xml -------------------------------------------------------------------------------- /Android/MediaPlayer/StartUp/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Android/MediaPlayer/StartUp/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/MediaPlayer/StartUp/app/build.gradle -------------------------------------------------------------------------------- /Android/MediaPlayer/StartUp/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/MediaPlayer/StartUp/app/proguard-rules.pro -------------------------------------------------------------------------------- /Android/MediaPlayer/StartUp/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/MediaPlayer/StartUp/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Android/MediaPlayer/StartUp/app/src/main/java/com/hussein/startup/SongInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/MediaPlayer/StartUp/app/src/main/java/com/hussein/startup/SongInfo.kt -------------------------------------------------------------------------------- /Android/MediaPlayer/StartUp/app/src/main/res/drawable/background_ticket.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/MediaPlayer/StartUp/app/src/main/res/drawable/background_ticket.xml -------------------------------------------------------------------------------- /Android/MediaPlayer/StartUp/app/src/main/res/drawable/button_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/MediaPlayer/StartUp/app/src/main/res/drawable/button_background.xml -------------------------------------------------------------------------------- /Android/MediaPlayer/StartUp/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/MediaPlayer/StartUp/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /Android/MediaPlayer/StartUp/app/src/main/res/layout/song_ticket.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/MediaPlayer/StartUp/app/src/main/res/layout/song_ticket.xml -------------------------------------------------------------------------------- /Android/MediaPlayer/StartUp/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/MediaPlayer/StartUp/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/MediaPlayer/StartUp/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/MediaPlayer/StartUp/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/MediaPlayer/StartUp/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/MediaPlayer/StartUp/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/MediaPlayer/StartUp/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/MediaPlayer/StartUp/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/MediaPlayer/StartUp/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/MediaPlayer/StartUp/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/MediaPlayer/StartUp/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/MediaPlayer/StartUp/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Android/MediaPlayer/StartUp/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/MediaPlayer/StartUp/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Android/MediaPlayer/StartUp/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/MediaPlayer/StartUp/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Android/MediaPlayer/StartUp/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/MediaPlayer/StartUp/build.gradle -------------------------------------------------------------------------------- /Android/MediaPlayer/StartUp/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/MediaPlayer/StartUp/gradle.properties -------------------------------------------------------------------------------- /Android/MediaPlayer/StartUp/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/MediaPlayer/StartUp/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Android/MediaPlayer/StartUp/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/MediaPlayer/StartUp/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Android/MediaPlayer/StartUp/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/MediaPlayer/StartUp/gradlew -------------------------------------------------------------------------------- /Android/MediaPlayer/StartUp/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/MediaPlayer/StartUp/gradlew.bat -------------------------------------------------------------------------------- /Android/MediaPlayer/StartUp/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Android/NoteApp/MyNotes Room Jetpack /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/NoteApp/MyNotes Room Jetpack /.gitignore -------------------------------------------------------------------------------- /Android/NoteApp/MyNotes Room Jetpack /.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/NoteApp/MyNotes Room Jetpack /.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /Android/NoteApp/MyNotes Room Jetpack /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/NoteApp/MyNotes Room Jetpack /.idea/encodings.xml -------------------------------------------------------------------------------- /Android/NoteApp/MyNotes Room Jetpack /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/NoteApp/MyNotes Room Jetpack /.idea/gradle.xml -------------------------------------------------------------------------------- /Android/NoteApp/MyNotes Room Jetpack /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/NoteApp/MyNotes Room Jetpack /.idea/misc.xml -------------------------------------------------------------------------------- /Android/NoteApp/MyNotes Room Jetpack /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/NoteApp/MyNotes Room Jetpack /.idea/modules.xml -------------------------------------------------------------------------------- /Android/NoteApp/MyNotes Room Jetpack /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/NoteApp/MyNotes Room Jetpack /.idea/runConfigurations.xml -------------------------------------------------------------------------------- /Android/NoteApp/MyNotes Room Jetpack /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/NoteApp/MyNotes Room Jetpack /.idea/vcs.xml -------------------------------------------------------------------------------- /Android/NoteApp/MyNotes Room Jetpack /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Android/NoteApp/MyNotes Room Jetpack /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/NoteApp/MyNotes Room Jetpack /app/build.gradle -------------------------------------------------------------------------------- /Android/NoteApp/MyNotes Room Jetpack /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/NoteApp/MyNotes Room Jetpack /app/proguard-rules.pro -------------------------------------------------------------------------------- /Android/NoteApp/MyNotes Room Jetpack /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/NoteApp/MyNotes Room Jetpack /app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Android/NoteApp/MyNotes Room Jetpack /app/src/main/res/drawable/appicons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/NoteApp/MyNotes Room Jetpack /app/src/main/res/drawable/appicons.png -------------------------------------------------------------------------------- /Android/NoteApp/MyNotes Room Jetpack /app/src/main/res/layout/ticcket.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/NoteApp/MyNotes Room Jetpack /app/src/main/res/layout/ticcket.xml -------------------------------------------------------------------------------- /Android/NoteApp/MyNotes Room Jetpack /app/src/main/res/menu/main_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/NoteApp/MyNotes Room Jetpack /app/src/main/res/menu/main_menu.xml -------------------------------------------------------------------------------- /Android/NoteApp/MyNotes Room Jetpack /app/src/main/res/values-fr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/NoteApp/MyNotes Room Jetpack /app/src/main/res/values-fr/strings.xml -------------------------------------------------------------------------------- /Android/NoteApp/MyNotes Room Jetpack /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/NoteApp/MyNotes Room Jetpack /app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Android/NoteApp/MyNotes Room Jetpack /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/NoteApp/MyNotes Room Jetpack /app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Android/NoteApp/MyNotes Room Jetpack /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/NoteApp/MyNotes Room Jetpack /app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Android/NoteApp/MyNotes Room Jetpack /build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/NoteApp/MyNotes Room Jetpack /build.gradle -------------------------------------------------------------------------------- /Android/NoteApp/MyNotes Room Jetpack /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/NoteApp/MyNotes Room Jetpack /gradle.properties -------------------------------------------------------------------------------- /Android/NoteApp/MyNotes Room Jetpack /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/NoteApp/MyNotes Room Jetpack /gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Android/NoteApp/MyNotes Room Jetpack /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/NoteApp/MyNotes Room Jetpack /gradlew -------------------------------------------------------------------------------- /Android/NoteApp/MyNotes Room Jetpack /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/NoteApp/MyNotes Room Jetpack /gradlew.bat -------------------------------------------------------------------------------- /Android/NoteApp/MyNotes Room Jetpack /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Android/NoteApp/MyNotes SQlite/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/NoteApp/MyNotes SQlite/.gitignore -------------------------------------------------------------------------------- /Android/NoteApp/MyNotes SQlite/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/NoteApp/MyNotes SQlite/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /Android/NoteApp/MyNotes SQlite/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/NoteApp/MyNotes SQlite/.idea/encodings.xml -------------------------------------------------------------------------------- /Android/NoteApp/MyNotes SQlite/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/NoteApp/MyNotes SQlite/.idea/gradle.xml -------------------------------------------------------------------------------- /Android/NoteApp/MyNotes SQlite/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/NoteApp/MyNotes SQlite/.idea/misc.xml -------------------------------------------------------------------------------- /Android/NoteApp/MyNotes SQlite/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/NoteApp/MyNotes SQlite/.idea/modules.xml -------------------------------------------------------------------------------- /Android/NoteApp/MyNotes SQlite/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/NoteApp/MyNotes SQlite/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /Android/NoteApp/MyNotes SQlite/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/NoteApp/MyNotes SQlite/.idea/vcs.xml -------------------------------------------------------------------------------- /Android/NoteApp/MyNotes SQlite/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Android/NoteApp/MyNotes SQlite/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/NoteApp/MyNotes SQlite/app/build.gradle -------------------------------------------------------------------------------- /Android/NoteApp/MyNotes SQlite/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/NoteApp/MyNotes SQlite/app/proguard-rules.pro -------------------------------------------------------------------------------- /Android/NoteApp/MyNotes SQlite/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/NoteApp/MyNotes SQlite/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Android/NoteApp/MyNotes SQlite/app/src/main/java/com/hussein/startup/Note.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/NoteApp/MyNotes SQlite/app/src/main/java/com/hussein/startup/Note.kt -------------------------------------------------------------------------------- /Android/NoteApp/MyNotes SQlite/app/src/main/res/drawable/appicons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/NoteApp/MyNotes SQlite/app/src/main/res/drawable/appicons.png -------------------------------------------------------------------------------- /Android/NoteApp/MyNotes SQlite/app/src/main/res/drawable/bublue_color.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/NoteApp/MyNotes SQlite/app/src/main/res/drawable/bublue_color.xml -------------------------------------------------------------------------------- /Android/NoteApp/MyNotes SQlite/app/src/main/res/layout/activity_add_notes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/NoteApp/MyNotes SQlite/app/src/main/res/layout/activity_add_notes.xml -------------------------------------------------------------------------------- /Android/NoteApp/MyNotes SQlite/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/NoteApp/MyNotes SQlite/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /Android/NoteApp/MyNotes SQlite/app/src/main/res/layout/ticcket.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/NoteApp/MyNotes SQlite/app/src/main/res/layout/ticcket.xml -------------------------------------------------------------------------------- /Android/NoteApp/MyNotes SQlite/app/src/main/res/menu/main_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/NoteApp/MyNotes SQlite/app/src/main/res/menu/main_menu.xml -------------------------------------------------------------------------------- /Android/NoteApp/MyNotes SQlite/app/src/main/res/values-fr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/NoteApp/MyNotes SQlite/app/src/main/res/values-fr/strings.xml -------------------------------------------------------------------------------- /Android/NoteApp/MyNotes SQlite/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/NoteApp/MyNotes SQlite/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Android/NoteApp/MyNotes SQlite/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/NoteApp/MyNotes SQlite/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Android/NoteApp/MyNotes SQlite/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/NoteApp/MyNotes SQlite/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Android/NoteApp/MyNotes SQlite/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/NoteApp/MyNotes SQlite/build.gradle -------------------------------------------------------------------------------- /Android/NoteApp/MyNotes SQlite/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/NoteApp/MyNotes SQlite/gradle.properties -------------------------------------------------------------------------------- /Android/NoteApp/MyNotes SQlite/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/NoteApp/MyNotes SQlite/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Android/NoteApp/MyNotes SQlite/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/NoteApp/MyNotes SQlite/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Android/NoteApp/MyNotes SQlite/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/NoteApp/MyNotes SQlite/gradlew -------------------------------------------------------------------------------- /Android/NoteApp/MyNotes SQlite/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/NoteApp/MyNotes SQlite/gradlew.bat -------------------------------------------------------------------------------- /Android/NoteApp/MyNotes SQlite/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Android/NotificationChannelsApp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/NotificationChannelsApp/.gitignore -------------------------------------------------------------------------------- /Android/NotificationChannelsApp/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/NotificationChannelsApp/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /Android/NotificationChannelsApp/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/NotificationChannelsApp/.idea/encodings.xml -------------------------------------------------------------------------------- /Android/NotificationChannelsApp/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/NotificationChannelsApp/.idea/gradle.xml -------------------------------------------------------------------------------- /Android/NotificationChannelsApp/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/NotificationChannelsApp/.idea/misc.xml -------------------------------------------------------------------------------- /Android/NotificationChannelsApp/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/NotificationChannelsApp/.idea/modules.xml -------------------------------------------------------------------------------- /Android/NotificationChannelsApp/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/NotificationChannelsApp/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /Android/NotificationChannelsApp/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/NotificationChannelsApp/.idea/vcs.xml -------------------------------------------------------------------------------- /Android/NotificationChannelsApp/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Android/NotificationChannelsApp/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/NotificationChannelsApp/app/build.gradle -------------------------------------------------------------------------------- /Android/NotificationChannelsApp/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/NotificationChannelsApp/app/proguard-rules.pro -------------------------------------------------------------------------------- /Android/NotificationChannelsApp/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/NotificationChannelsApp/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Android/NotificationChannelsApp/app/src/main/res/drawable/bullbasaur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/NotificationChannelsApp/app/src/main/res/drawable/bullbasaur.png -------------------------------------------------------------------------------- /Android/NotificationChannelsApp/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/NotificationChannelsApp/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /Android/NotificationChannelsApp/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/NotificationChannelsApp/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Android/NotificationChannelsApp/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/NotificationChannelsApp/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Android/NotificationChannelsApp/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/NotificationChannelsApp/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Android/NotificationChannelsApp/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/NotificationChannelsApp/build.gradle -------------------------------------------------------------------------------- /Android/NotificationChannelsApp/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/NotificationChannelsApp/gradle.properties -------------------------------------------------------------------------------- /Android/NotificationChannelsApp/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/NotificationChannelsApp/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Android/NotificationChannelsApp/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/NotificationChannelsApp/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Android/NotificationChannelsApp/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/NotificationChannelsApp/gradlew -------------------------------------------------------------------------------- /Android/NotificationChannelsApp/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/NotificationChannelsApp/gradlew.bat -------------------------------------------------------------------------------- /Android/NotificationChannelsApp/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Android/PockemonAndroid/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/PockemonAndroid/.gitignore -------------------------------------------------------------------------------- /Android/PockemonAndroid/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/PockemonAndroid/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /Android/PockemonAndroid/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/PockemonAndroid/.idea/encodings.xml -------------------------------------------------------------------------------- /Android/PockemonAndroid/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/PockemonAndroid/.idea/gradle.xml -------------------------------------------------------------------------------- /Android/PockemonAndroid/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/PockemonAndroid/.idea/misc.xml -------------------------------------------------------------------------------- /Android/PockemonAndroid/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/PockemonAndroid/.idea/modules.xml -------------------------------------------------------------------------------- /Android/PockemonAndroid/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/PockemonAndroid/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /Android/PockemonAndroid/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/PockemonAndroid/.idea/vcs.xml -------------------------------------------------------------------------------- /Android/PockemonAndroid/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Android/PockemonAndroid/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/PockemonAndroid/app/build.gradle -------------------------------------------------------------------------------- /Android/PockemonAndroid/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/PockemonAndroid/app/proguard-rules.pro -------------------------------------------------------------------------------- /Android/PockemonAndroid/app/src/debug/res/values/google_maps_api.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/PockemonAndroid/app/src/debug/res/values/google_maps_api.xml -------------------------------------------------------------------------------- /Android/PockemonAndroid/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/PockemonAndroid/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Android/PockemonAndroid/app/src/main/res/drawable/bulbasaur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/PockemonAndroid/app/src/main/res/drawable/bulbasaur.png -------------------------------------------------------------------------------- /Android/PockemonAndroid/app/src/main/res/drawable/charmander.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/PockemonAndroid/app/src/main/res/drawable/charmander.png -------------------------------------------------------------------------------- /Android/PockemonAndroid/app/src/main/res/drawable/mario.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/PockemonAndroid/app/src/main/res/drawable/mario.png -------------------------------------------------------------------------------- /Android/PockemonAndroid/app/src/main/res/drawable/squirtle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/PockemonAndroid/app/src/main/res/drawable/squirtle.png -------------------------------------------------------------------------------- /Android/PockemonAndroid/app/src/main/res/layout/activity_maps.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/PockemonAndroid/app/src/main/res/layout/activity_maps.xml -------------------------------------------------------------------------------- /Android/PockemonAndroid/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/PockemonAndroid/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/PockemonAndroid/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/PockemonAndroid/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Android/PockemonAndroid/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/PockemonAndroid/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/PockemonAndroid/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/PockemonAndroid/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Android/PockemonAndroid/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/PockemonAndroid/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/PockemonAndroid/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/PockemonAndroid/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/PockemonAndroid/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/PockemonAndroid/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/PockemonAndroid/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/PockemonAndroid/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Android/PockemonAndroid/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/PockemonAndroid/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Android/PockemonAndroid/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/PockemonAndroid/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Android/PockemonAndroid/app/src/release/res/values/google_maps_api.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/PockemonAndroid/app/src/release/res/values/google_maps_api.xml -------------------------------------------------------------------------------- /Android/PockemonAndroid/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/PockemonAndroid/build.gradle -------------------------------------------------------------------------------- /Android/PockemonAndroid/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/PockemonAndroid/gradle.properties -------------------------------------------------------------------------------- /Android/PockemonAndroid/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/PockemonAndroid/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Android/PockemonAndroid/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/PockemonAndroid/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Android/PockemonAndroid/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/PockemonAndroid/gradlew -------------------------------------------------------------------------------- /Android/PockemonAndroid/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/PockemonAndroid/gradlew.bat -------------------------------------------------------------------------------- /Android/PockemonAndroid/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Android/StartUp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/StartUp/.gitignore -------------------------------------------------------------------------------- /Android/StartUp/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/StartUp/.idea/encodings.xml -------------------------------------------------------------------------------- /Android/StartUp/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/StartUp/.idea/gradle.xml -------------------------------------------------------------------------------- /Android/StartUp/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/StartUp/.idea/misc.xml -------------------------------------------------------------------------------- /Android/StartUp/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/StartUp/.idea/modules.xml -------------------------------------------------------------------------------- /Android/StartUp/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/StartUp/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /Android/StartUp/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Android/StartUp/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/StartUp/app/build.gradle -------------------------------------------------------------------------------- /Android/StartUp/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/StartUp/app/proguard-rules.pro -------------------------------------------------------------------------------- /Android/StartUp/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/StartUp/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Android/StartUp/app/src/main/java/com/hussein/startup/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/StartUp/app/src/main/java/com/hussein/startup/MainActivity.kt -------------------------------------------------------------------------------- /Android/StartUp/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/StartUp/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /Android/StartUp/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/StartUp/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/StartUp/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/StartUp/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Android/StartUp/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/StartUp/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/StartUp/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/StartUp/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Android/StartUp/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/StartUp/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/StartUp/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/StartUp/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Android/StartUp/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/StartUp/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/StartUp/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/StartUp/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Android/StartUp/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/StartUp/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/StartUp/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/StartUp/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Android/StartUp/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/StartUp/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Android/StartUp/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/StartUp/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Android/StartUp/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/StartUp/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Android/StartUp/app/src/test/java/com/hussein/startup/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/StartUp/app/src/test/java/com/hussein/startup/ExampleUnitTest.java -------------------------------------------------------------------------------- /Android/StartUp/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/StartUp/build.gradle -------------------------------------------------------------------------------- /Android/StartUp/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/StartUp/gradle.properties -------------------------------------------------------------------------------- /Android/StartUp/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/StartUp/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Android/StartUp/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/StartUp/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Android/StartUp/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/StartUp/gradlew -------------------------------------------------------------------------------- /Android/StartUp/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/StartUp/gradlew.bat -------------------------------------------------------------------------------- /Android/StartUp/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Android/TicTacToy Game/TicTacToeLocal/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TicTacToy Game/TicTacToeLocal/.gitignore -------------------------------------------------------------------------------- /Android/TicTacToy Game/TicTacToeLocal/.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TicTacToy Game/TicTacToeLocal/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /Android/TicTacToy Game/TicTacToeLocal/.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TicTacToy Game/TicTacToeLocal/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /Android/TicTacToy Game/TicTacToeLocal/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TicTacToy Game/TicTacToeLocal/.idea/encodings.xml -------------------------------------------------------------------------------- /Android/TicTacToy Game/TicTacToeLocal/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TicTacToy Game/TicTacToeLocal/.idea/gradle.xml -------------------------------------------------------------------------------- /Android/TicTacToy Game/TicTacToeLocal/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TicTacToy Game/TicTacToeLocal/.idea/misc.xml -------------------------------------------------------------------------------- /Android/TicTacToy Game/TicTacToeLocal/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TicTacToy Game/TicTacToeLocal/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /Android/TicTacToy Game/TicTacToeLocal/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Android/TicTacToy Game/TicTacToeLocal/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TicTacToy Game/TicTacToeLocal/app/build.gradle -------------------------------------------------------------------------------- /Android/TicTacToy Game/TicTacToeLocal/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TicTacToy Game/TicTacToeLocal/app/proguard-rules.pro -------------------------------------------------------------------------------- /Android/TicTacToy Game/TicTacToeLocal/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TicTacToy Game/TicTacToeLocal/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Android/TicTacToy Game/TicTacToeLocal/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TicTacToy Game/TicTacToeLocal/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Android/TicTacToy Game/TicTacToeLocal/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TicTacToy Game/TicTacToeLocal/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Android/TicTacToy Game/TicTacToeLocal/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TicTacToy Game/TicTacToeLocal/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Android/TicTacToy Game/TicTacToeLocal/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TicTacToy Game/TicTacToeLocal/build.gradle -------------------------------------------------------------------------------- /Android/TicTacToy Game/TicTacToeLocal/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TicTacToy Game/TicTacToeLocal/gradle.properties -------------------------------------------------------------------------------- /Android/TicTacToy Game/TicTacToeLocal/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TicTacToy Game/TicTacToeLocal/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Android/TicTacToy Game/TicTacToeLocal/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TicTacToy Game/TicTacToeLocal/gradlew -------------------------------------------------------------------------------- /Android/TicTacToy Game/TicTacToeLocal/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TicTacToy Game/TicTacToeLocal/gradlew.bat -------------------------------------------------------------------------------- /Android/TicTacToy Game/TicTacToeLocal/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Android/TicTacToy Game/TicTacToyOnline/TicTacToyLocal/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TicTacToy Game/TicTacToyOnline/TicTacToyLocal/.idea/encodings.xml -------------------------------------------------------------------------------- /Android/TicTacToy Game/TicTacToyOnline/TicTacToyLocal/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TicTacToy Game/TicTacToyOnline/TicTacToyLocal/.idea/misc.xml -------------------------------------------------------------------------------- /Android/TicTacToy Game/TicTacToyOnline/TicTacToyLocal/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TicTacToy Game/TicTacToyOnline/TicTacToyLocal/.idea/modules.xml -------------------------------------------------------------------------------- /Android/TicTacToy Game/TicTacToyOnline/TicTacToyLocal/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TicTacToy Game/TicTacToyOnline/TicTacToyLocal/.idea/workspace.xml -------------------------------------------------------------------------------- /Android/TicTacToy Game/TicTacToyOnline/TicTacToyLocal/StartUp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TicTacToy Game/TicTacToyOnline/TicTacToyLocal/StartUp/.gitignore -------------------------------------------------------------------------------- /Android/TicTacToy Game/TicTacToyOnline/TicTacToyLocal/StartUp/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Android/TicTacToy Game/TicTacToyOnline/TicTacToyLocal/StartUp/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TicTacToy Game/TicTacToyOnline/TicTacToyLocal/StartUp/build.gradle -------------------------------------------------------------------------------- /Android/TicTacToy Game/TicTacToyOnline/TicTacToyLocal/StartUp/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TicTacToy Game/TicTacToyOnline/TicTacToyLocal/StartUp/gradlew -------------------------------------------------------------------------------- /Android/TicTacToy Game/TicTacToyOnline/TicTacToyLocal/StartUp/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TicTacToy Game/TicTacToyOnline/TicTacToyLocal/StartUp/gradlew.bat -------------------------------------------------------------------------------- /Android/TicTacToy Game/TicTacToyOnline/TicTacToyLocal/StartUp/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Android/TwitterDemo/StartUp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TwitterDemo/StartUp/.gitignore -------------------------------------------------------------------------------- /Android/TwitterDemo/StartUp/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TwitterDemo/StartUp/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /Android/TwitterDemo/StartUp/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TwitterDemo/StartUp/.idea/encodings.xml -------------------------------------------------------------------------------- /Android/TwitterDemo/StartUp/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TwitterDemo/StartUp/.idea/gradle.xml -------------------------------------------------------------------------------- /Android/TwitterDemo/StartUp/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TwitterDemo/StartUp/.idea/misc.xml -------------------------------------------------------------------------------- /Android/TwitterDemo/StartUp/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TwitterDemo/StartUp/.idea/modules.xml -------------------------------------------------------------------------------- /Android/TwitterDemo/StartUp/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TwitterDemo/StartUp/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /Android/TwitterDemo/StartUp/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TwitterDemo/StartUp/.idea/vcs.xml -------------------------------------------------------------------------------- /Android/TwitterDemo/StartUp/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Android/TwitterDemo/StartUp/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TwitterDemo/StartUp/app/build.gradle -------------------------------------------------------------------------------- /Android/TwitterDemo/StartUp/app/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TwitterDemo/StartUp/app/google-services.json -------------------------------------------------------------------------------- /Android/TwitterDemo/StartUp/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TwitterDemo/StartUp/app/proguard-rules.pro -------------------------------------------------------------------------------- /Android/TwitterDemo/StartUp/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TwitterDemo/StartUp/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Android/TwitterDemo/StartUp/app/src/main/java/com/hussein/startup/Login.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TwitterDemo/StartUp/app/src/main/java/com/hussein/startup/Login.kt -------------------------------------------------------------------------------- /Android/TwitterDemo/StartUp/app/src/main/res/drawable/background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TwitterDemo/StartUp/app/src/main/res/drawable/background.xml -------------------------------------------------------------------------------- /Android/TwitterDemo/StartUp/app/src/main/res/drawable/persoicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TwitterDemo/StartUp/app/src/main/res/drawable/persoicon.png -------------------------------------------------------------------------------- /Android/TwitterDemo/StartUp/app/src/main/res/drawable/tweets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TwitterDemo/StartUp/app/src/main/res/drawable/tweets.png -------------------------------------------------------------------------------- /Android/TwitterDemo/StartUp/app/src/main/res/layout/activity_login.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TwitterDemo/StartUp/app/src/main/res/layout/activity_login.xml -------------------------------------------------------------------------------- /Android/TwitterDemo/StartUp/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TwitterDemo/StartUp/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /Android/TwitterDemo/StartUp/app/src/main/res/layout/add_ticket.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TwitterDemo/StartUp/app/src/main/res/layout/add_ticket.xml -------------------------------------------------------------------------------- /Android/TwitterDemo/StartUp/app/src/main/res/layout/ads_ticket.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TwitterDemo/StartUp/app/src/main/res/layout/ads_ticket.xml -------------------------------------------------------------------------------- /Android/TwitterDemo/StartUp/app/src/main/res/layout/loading_ticket.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TwitterDemo/StartUp/app/src/main/res/layout/loading_ticket.xml -------------------------------------------------------------------------------- /Android/TwitterDemo/StartUp/app/src/main/res/layout/tweets_ticket.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TwitterDemo/StartUp/app/src/main/res/layout/tweets_ticket.xml -------------------------------------------------------------------------------- /Android/TwitterDemo/StartUp/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TwitterDemo/StartUp/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/TwitterDemo/StartUp/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TwitterDemo/StartUp/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/TwitterDemo/StartUp/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TwitterDemo/StartUp/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/TwitterDemo/StartUp/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TwitterDemo/StartUp/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/TwitterDemo/StartUp/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TwitterDemo/StartUp/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Android/TwitterDemo/StartUp/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TwitterDemo/StartUp/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Android/TwitterDemo/StartUp/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TwitterDemo/StartUp/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Android/TwitterDemo/StartUp/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TwitterDemo/StartUp/build.gradle -------------------------------------------------------------------------------- /Android/TwitterDemo/StartUp/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TwitterDemo/StartUp/gradle.properties -------------------------------------------------------------------------------- /Android/TwitterDemo/StartUp/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TwitterDemo/StartUp/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Android/TwitterDemo/StartUp/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TwitterDemo/StartUp/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Android/TwitterDemo/StartUp/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TwitterDemo/StartUp/gradlew -------------------------------------------------------------------------------- /Android/TwitterDemo/StartUp/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TwitterDemo/StartUp/gradlew.bat -------------------------------------------------------------------------------- /Android/TwitterDemo/StartUp/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Android/TwitterWebService/DBScript.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TwitterWebService/DBScript.sql -------------------------------------------------------------------------------- /Android/TwitterWebService/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TwitterWebService/README.md -------------------------------------------------------------------------------- /Android/TwitterWebService/TwitterAndroidServer/DBInfo.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TwitterWebService/TwitterAndroidServer/DBInfo.inc -------------------------------------------------------------------------------- /Android/TwitterWebService/TwitterAndroidServer/IsFollowing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TwitterWebService/TwitterAndroidServer/IsFollowing.php -------------------------------------------------------------------------------- /Android/TwitterWebService/TwitterAndroidServer/Login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TwitterWebService/TwitterAndroidServer/Login.php -------------------------------------------------------------------------------- /Android/TwitterWebService/TwitterAndroidServer/Register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TwitterWebService/TwitterAndroidServer/Register.php -------------------------------------------------------------------------------- /Android/TwitterWebService/TwitterAndroidServer/TweetAdd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TwitterWebService/TwitterAndroidServer/TweetAdd.php -------------------------------------------------------------------------------- /Android/TwitterWebService/TwitterAndroidServer/TweetList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TwitterWebService/TwitterAndroidServer/TweetList.php -------------------------------------------------------------------------------- /Android/TwitterWebService/TwitterAndroidServer/UserFollowing.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TwitterWebService/TwitterAndroidServer/UserFollowing.php -------------------------------------------------------------------------------- /Android/TwitterWebService/TwitterWebService/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TwitterWebService/TwitterWebService/.gitignore -------------------------------------------------------------------------------- /Android/TwitterWebService/TwitterWebService/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TwitterWebService/TwitterWebService/.idea/encodings.xml -------------------------------------------------------------------------------- /Android/TwitterWebService/TwitterWebService/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TwitterWebService/TwitterWebService/.idea/gradle.xml -------------------------------------------------------------------------------- /Android/TwitterWebService/TwitterWebService/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TwitterWebService/TwitterWebService/.idea/misc.xml -------------------------------------------------------------------------------- /Android/TwitterWebService/TwitterWebService/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TwitterWebService/TwitterWebService/.idea/modules.xml -------------------------------------------------------------------------------- /Android/TwitterWebService/TwitterWebService/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TwitterWebService/TwitterWebService/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /Android/TwitterWebService/TwitterWebService/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TwitterWebService/TwitterWebService/.idea/vcs.xml -------------------------------------------------------------------------------- /Android/TwitterWebService/TwitterWebService/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Android/TwitterWebService/TwitterWebService/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TwitterWebService/TwitterWebService/app/build.gradle -------------------------------------------------------------------------------- /Android/TwitterWebService/TwitterWebService/app/google-services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TwitterWebService/TwitterWebService/app/google-services.json -------------------------------------------------------------------------------- /Android/TwitterWebService/TwitterWebService/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TwitterWebService/TwitterWebService/app/proguard-rules.pro -------------------------------------------------------------------------------- /Android/TwitterWebService/TwitterWebService/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TwitterWebService/TwitterWebService/build.gradle -------------------------------------------------------------------------------- /Android/TwitterWebService/TwitterWebService/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TwitterWebService/TwitterWebService/gradle.properties -------------------------------------------------------------------------------- /Android/TwitterWebService/TwitterWebService/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TwitterWebService/TwitterWebService/gradlew -------------------------------------------------------------------------------- /Android/TwitterWebService/TwitterWebService/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/TwitterWebService/TwitterWebService/gradlew.bat -------------------------------------------------------------------------------- /Android/TwitterWebService/TwitterWebService/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Android/ZooApp/StartUp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/ZooApp/StartUp/.gitignore -------------------------------------------------------------------------------- /Android/ZooApp/StartUp/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/ZooApp/StartUp/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /Android/ZooApp/StartUp/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/ZooApp/StartUp/.idea/encodings.xml -------------------------------------------------------------------------------- /Android/ZooApp/StartUp/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/ZooApp/StartUp/.idea/gradle.xml -------------------------------------------------------------------------------- /Android/ZooApp/StartUp/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/ZooApp/StartUp/.idea/misc.xml -------------------------------------------------------------------------------- /Android/ZooApp/StartUp/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/ZooApp/StartUp/.idea/modules.xml -------------------------------------------------------------------------------- /Android/ZooApp/StartUp/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/ZooApp/StartUp/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /Android/ZooApp/StartUp/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/ZooApp/StartUp/.idea/vcs.xml -------------------------------------------------------------------------------- /Android/ZooApp/StartUp/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Android/ZooApp/StartUp/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/ZooApp/StartUp/app/build.gradle -------------------------------------------------------------------------------- /Android/ZooApp/StartUp/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/ZooApp/StartUp/app/proguard-rules.pro -------------------------------------------------------------------------------- /Android/ZooApp/StartUp/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/ZooApp/StartUp/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Android/ZooApp/StartUp/app/src/main/java/com/hussein/startup/Animal.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/ZooApp/StartUp/app/src/main/java/com/hussein/startup/Animal.kt -------------------------------------------------------------------------------- /Android/ZooApp/StartUp/app/src/main/java/com/hussein/startup/AnimalInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/ZooApp/StartUp/app/src/main/java/com/hussein/startup/AnimalInfo.kt -------------------------------------------------------------------------------- /Android/ZooApp/StartUp/app/src/main/res/drawable-hdpi/baboon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/ZooApp/StartUp/app/src/main/res/drawable-hdpi/baboon.png -------------------------------------------------------------------------------- /Android/ZooApp/StartUp/app/src/main/res/drawable-hdpi/bulldog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/ZooApp/StartUp/app/src/main/res/drawable-hdpi/bulldog.png -------------------------------------------------------------------------------- /Android/ZooApp/StartUp/app/src/main/res/drawable-hdpi/panda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/ZooApp/StartUp/app/src/main/res/drawable-hdpi/panda.png -------------------------------------------------------------------------------- /Android/ZooApp/StartUp/app/src/main/res/drawable-hdpi/swallow_bird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/ZooApp/StartUp/app/src/main/res/drawable-hdpi/swallow_bird.png -------------------------------------------------------------------------------- /Android/ZooApp/StartUp/app/src/main/res/drawable-hdpi/white_tiger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/ZooApp/StartUp/app/src/main/res/drawable-hdpi/white_tiger.png -------------------------------------------------------------------------------- /Android/ZooApp/StartUp/app/src/main/res/drawable-hdpi/zebra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/ZooApp/StartUp/app/src/main/res/drawable-hdpi/zebra.png -------------------------------------------------------------------------------- /Android/ZooApp/StartUp/app/src/main/res/drawable-ldpi/baboon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/ZooApp/StartUp/app/src/main/res/drawable-ldpi/baboon.png -------------------------------------------------------------------------------- /Android/ZooApp/StartUp/app/src/main/res/drawable-ldpi/bulldog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/ZooApp/StartUp/app/src/main/res/drawable-ldpi/bulldog.png -------------------------------------------------------------------------------- /Android/ZooApp/StartUp/app/src/main/res/drawable-ldpi/panda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/ZooApp/StartUp/app/src/main/res/drawable-ldpi/panda.png -------------------------------------------------------------------------------- /Android/ZooApp/StartUp/app/src/main/res/drawable-ldpi/swallow_bird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/ZooApp/StartUp/app/src/main/res/drawable-ldpi/swallow_bird.png -------------------------------------------------------------------------------- /Android/ZooApp/StartUp/app/src/main/res/drawable-ldpi/white_tiger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/ZooApp/StartUp/app/src/main/res/drawable-ldpi/white_tiger.png -------------------------------------------------------------------------------- /Android/ZooApp/StartUp/app/src/main/res/drawable-ldpi/zebra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/ZooApp/StartUp/app/src/main/res/drawable-ldpi/zebra.png -------------------------------------------------------------------------------- /Android/ZooApp/StartUp/app/src/main/res/drawable-mdpi/baboon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/ZooApp/StartUp/app/src/main/res/drawable-mdpi/baboon.png -------------------------------------------------------------------------------- /Android/ZooApp/StartUp/app/src/main/res/drawable-mdpi/bulldog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/ZooApp/StartUp/app/src/main/res/drawable-mdpi/bulldog.png -------------------------------------------------------------------------------- /Android/ZooApp/StartUp/app/src/main/res/drawable-mdpi/panda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/ZooApp/StartUp/app/src/main/res/drawable-mdpi/panda.png -------------------------------------------------------------------------------- /Android/ZooApp/StartUp/app/src/main/res/drawable-mdpi/swallow_bird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/ZooApp/StartUp/app/src/main/res/drawable-mdpi/swallow_bird.png -------------------------------------------------------------------------------- /Android/ZooApp/StartUp/app/src/main/res/drawable-mdpi/white_tiger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/ZooApp/StartUp/app/src/main/res/drawable-mdpi/white_tiger.png -------------------------------------------------------------------------------- /Android/ZooApp/StartUp/app/src/main/res/drawable-mdpi/zebra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/ZooApp/StartUp/app/src/main/res/drawable-mdpi/zebra.png -------------------------------------------------------------------------------- /Android/ZooApp/StartUp/app/src/main/res/drawable-xhdpi/baboon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/ZooApp/StartUp/app/src/main/res/drawable-xhdpi/baboon.png -------------------------------------------------------------------------------- /Android/ZooApp/StartUp/app/src/main/res/drawable-xhdpi/bulldog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/ZooApp/StartUp/app/src/main/res/drawable-xhdpi/bulldog.png -------------------------------------------------------------------------------- /Android/ZooApp/StartUp/app/src/main/res/drawable-xhdpi/panda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/ZooApp/StartUp/app/src/main/res/drawable-xhdpi/panda.png -------------------------------------------------------------------------------- /Android/ZooApp/StartUp/app/src/main/res/drawable-xhdpi/swallow_bird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/ZooApp/StartUp/app/src/main/res/drawable-xhdpi/swallow_bird.png -------------------------------------------------------------------------------- /Android/ZooApp/StartUp/app/src/main/res/drawable-xhdpi/white_tiger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/ZooApp/StartUp/app/src/main/res/drawable-xhdpi/white_tiger.png -------------------------------------------------------------------------------- /Android/ZooApp/StartUp/app/src/main/res/drawable-xhdpi/zebra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/ZooApp/StartUp/app/src/main/res/drawable-xhdpi/zebra.png -------------------------------------------------------------------------------- /Android/ZooApp/StartUp/app/src/main/res/drawable-xxhdpi/baboon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/ZooApp/StartUp/app/src/main/res/drawable-xxhdpi/baboon.png -------------------------------------------------------------------------------- /Android/ZooApp/StartUp/app/src/main/res/drawable-xxhdpi/bulldog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/ZooApp/StartUp/app/src/main/res/drawable-xxhdpi/bulldog.png -------------------------------------------------------------------------------- /Android/ZooApp/StartUp/app/src/main/res/drawable-xxhdpi/panda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/ZooApp/StartUp/app/src/main/res/drawable-xxhdpi/panda.png -------------------------------------------------------------------------------- /Android/ZooApp/StartUp/app/src/main/res/drawable-xxhdpi/swallow_bird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/ZooApp/StartUp/app/src/main/res/drawable-xxhdpi/swallow_bird.png -------------------------------------------------------------------------------- /Android/ZooApp/StartUp/app/src/main/res/drawable-xxhdpi/white_tiger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/ZooApp/StartUp/app/src/main/res/drawable-xxhdpi/white_tiger.png -------------------------------------------------------------------------------- /Android/ZooApp/StartUp/app/src/main/res/drawable-xxhdpi/zebra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/ZooApp/StartUp/app/src/main/res/drawable-xxhdpi/zebra.png -------------------------------------------------------------------------------- /Android/ZooApp/StartUp/app/src/main/res/drawable-xxxhdpi/baboon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/ZooApp/StartUp/app/src/main/res/drawable-xxxhdpi/baboon.png -------------------------------------------------------------------------------- /Android/ZooApp/StartUp/app/src/main/res/drawable-xxxhdpi/bulldog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/ZooApp/StartUp/app/src/main/res/drawable-xxxhdpi/bulldog.png -------------------------------------------------------------------------------- /Android/ZooApp/StartUp/app/src/main/res/drawable-xxxhdpi/panda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/ZooApp/StartUp/app/src/main/res/drawable-xxxhdpi/panda.png -------------------------------------------------------------------------------- /Android/ZooApp/StartUp/app/src/main/res/drawable-xxxhdpi/swallow_bird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/ZooApp/StartUp/app/src/main/res/drawable-xxxhdpi/swallow_bird.png -------------------------------------------------------------------------------- /Android/ZooApp/StartUp/app/src/main/res/drawable-xxxhdpi/white_tiger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/ZooApp/StartUp/app/src/main/res/drawable-xxxhdpi/white_tiger.png -------------------------------------------------------------------------------- /Android/ZooApp/StartUp/app/src/main/res/drawable-xxxhdpi/zebra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/ZooApp/StartUp/app/src/main/res/drawable-xxxhdpi/zebra.png -------------------------------------------------------------------------------- /Android/ZooApp/StartUp/app/src/main/res/drawable/background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/ZooApp/StartUp/app/src/main/res/drawable/background.xml -------------------------------------------------------------------------------- /Android/ZooApp/StartUp/app/src/main/res/drawable/background_killer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/ZooApp/StartUp/app/src/main/res/drawable/background_killer.xml -------------------------------------------------------------------------------- /Android/ZooApp/StartUp/app/src/main/res/layout/activity_animal_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/ZooApp/StartUp/app/src/main/res/layout/activity_animal_info.xml -------------------------------------------------------------------------------- /Android/ZooApp/StartUp/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/ZooApp/StartUp/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /Android/ZooApp/StartUp/app/src/main/res/layout/animal_killer_ticket.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/ZooApp/StartUp/app/src/main/res/layout/animal_killer_ticket.xml -------------------------------------------------------------------------------- /Android/ZooApp/StartUp/app/src/main/res/layout/animal_ticket.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/ZooApp/StartUp/app/src/main/res/layout/animal_ticket.xml -------------------------------------------------------------------------------- /Android/ZooApp/StartUp/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/ZooApp/StartUp/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/ZooApp/StartUp/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/ZooApp/StartUp/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Android/ZooApp/StartUp/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/ZooApp/StartUp/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/ZooApp/StartUp/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/ZooApp/StartUp/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Android/ZooApp/StartUp/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/ZooApp/StartUp/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/ZooApp/StartUp/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/ZooApp/StartUp/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Android/ZooApp/StartUp/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/ZooApp/StartUp/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/ZooApp/StartUp/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/ZooApp/StartUp/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/ZooApp/StartUp/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/ZooApp/StartUp/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Android/ZooApp/StartUp/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/ZooApp/StartUp/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Android/ZooApp/StartUp/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/ZooApp/StartUp/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Android/ZooApp/StartUp/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/ZooApp/StartUp/build.gradle -------------------------------------------------------------------------------- /Android/ZooApp/StartUp/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/ZooApp/StartUp/gradle.properties -------------------------------------------------------------------------------- /Android/ZooApp/StartUp/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/ZooApp/StartUp/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Android/ZooApp/StartUp/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/ZooApp/StartUp/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Android/ZooApp/StartUp/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/ZooApp/StartUp/gradlew -------------------------------------------------------------------------------- /Android/ZooApp/StartUp/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/ZooApp/StartUp/gradlew.bat -------------------------------------------------------------------------------- /Android/ZooApp/StartUp/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Android/sensors/light/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/sensors/light/.idea/encodings.xml -------------------------------------------------------------------------------- /Android/sensors/light/.idea/light.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/sensors/light/.idea/light.iml -------------------------------------------------------------------------------- /Android/sensors/light/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/sensors/light/.idea/modules.xml -------------------------------------------------------------------------------- /Android/sensors/light/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/sensors/light/.idea/vcs.xml -------------------------------------------------------------------------------- /Android/sensors/light/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/sensors/light/.idea/workspace.xml -------------------------------------------------------------------------------- /Android/sensors/light/StartUp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/sensors/light/StartUp/.gitignore -------------------------------------------------------------------------------- /Android/sensors/light/StartUp/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/sensors/light/StartUp/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /Android/sensors/light/StartUp/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/sensors/light/StartUp/.idea/encodings.xml -------------------------------------------------------------------------------- /Android/sensors/light/StartUp/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/sensors/light/StartUp/.idea/gradle.xml -------------------------------------------------------------------------------- /Android/sensors/light/StartUp/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/sensors/light/StartUp/.idea/misc.xml -------------------------------------------------------------------------------- /Android/sensors/light/StartUp/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/sensors/light/StartUp/.idea/modules.xml -------------------------------------------------------------------------------- /Android/sensors/light/StartUp/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/sensors/light/StartUp/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /Android/sensors/light/StartUp/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/sensors/light/StartUp/.idea/vcs.xml -------------------------------------------------------------------------------- /Android/sensors/light/StartUp/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Android/sensors/light/StartUp/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/sensors/light/StartUp/app/build.gradle -------------------------------------------------------------------------------- /Android/sensors/light/StartUp/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/sensors/light/StartUp/app/proguard-rules.pro -------------------------------------------------------------------------------- /Android/sensors/light/StartUp/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/sensors/light/StartUp/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Android/sensors/light/StartUp/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/sensors/light/StartUp/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /Android/sensors/light/StartUp/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/sensors/light/StartUp/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/sensors/light/StartUp/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/sensors/light/StartUp/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /Android/sensors/light/StartUp/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/sensors/light/StartUp/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Android/sensors/light/StartUp/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/sensors/light/StartUp/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Android/sensors/light/StartUp/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/sensors/light/StartUp/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Android/sensors/light/StartUp/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/sensors/light/StartUp/build.gradle -------------------------------------------------------------------------------- /Android/sensors/light/StartUp/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/sensors/light/StartUp/gradle.properties -------------------------------------------------------------------------------- /Android/sensors/light/StartUp/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/sensors/light/StartUp/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Android/sensors/light/StartUp/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/sensors/light/StartUp/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Android/sensors/light/StartUp/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/sensors/light/StartUp/gradlew -------------------------------------------------------------------------------- /Android/sensors/light/StartUp/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/sensors/light/StartUp/gradlew.bat -------------------------------------------------------------------------------- /Android/sensors/light/StartUp/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Android/sensors/numbizz/StartUp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/sensors/numbizz/StartUp/.gitignore -------------------------------------------------------------------------------- /Android/sensors/numbizz/StartUp/.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/sensors/numbizz/StartUp/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /Android/sensors/numbizz/StartUp/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/sensors/numbizz/StartUp/.idea/encodings.xml -------------------------------------------------------------------------------- /Android/sensors/numbizz/StartUp/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/sensors/numbizz/StartUp/.idea/gradle.xml -------------------------------------------------------------------------------- /Android/sensors/numbizz/StartUp/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/sensors/numbizz/StartUp/.idea/misc.xml -------------------------------------------------------------------------------- /Android/sensors/numbizz/StartUp/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/sensors/numbizz/StartUp/.idea/modules.xml -------------------------------------------------------------------------------- /Android/sensors/numbizz/StartUp/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/sensors/numbizz/StartUp/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /Android/sensors/numbizz/StartUp/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/sensors/numbizz/StartUp/.idea/vcs.xml -------------------------------------------------------------------------------- /Android/sensors/numbizz/StartUp/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /Android/sensors/numbizz/StartUp/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/sensors/numbizz/StartUp/app/build.gradle -------------------------------------------------------------------------------- /Android/sensors/numbizz/StartUp/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/sensors/numbizz/StartUp/app/proguard-rules.pro -------------------------------------------------------------------------------- /Android/sensors/numbizz/StartUp/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/sensors/numbizz/StartUp/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Android/sensors/numbizz/StartUp/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/sensors/numbizz/StartUp/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /Android/sensors/numbizz/StartUp/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/sensors/numbizz/StartUp/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Android/sensors/numbizz/StartUp/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/sensors/numbizz/StartUp/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Android/sensors/numbizz/StartUp/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/sensors/numbizz/StartUp/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Android/sensors/numbizz/StartUp/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/sensors/numbizz/StartUp/build.gradle -------------------------------------------------------------------------------- /Android/sensors/numbizz/StartUp/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/sensors/numbizz/StartUp/gradle.properties -------------------------------------------------------------------------------- /Android/sensors/numbizz/StartUp/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/sensors/numbizz/StartUp/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /Android/sensors/numbizz/StartUp/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/sensors/numbizz/StartUp/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /Android/sensors/numbizz/StartUp/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/sensors/numbizz/StartUp/gradlew -------------------------------------------------------------------------------- /Android/sensors/numbizz/StartUp/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Android/sensors/numbizz/StartUp/gradlew.bat -------------------------------------------------------------------------------- /Android/sensors/numbizz/StartUp/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | -------------------------------------------------------------------------------- /Kotlin/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Kotlin/.idea/encodings.xml -------------------------------------------------------------------------------- /Kotlin/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Kotlin/.idea/misc.xml -------------------------------------------------------------------------------- /Kotlin/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Kotlin/.idea/modules.xml -------------------------------------------------------------------------------- /Kotlin/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Kotlin/.idea/workspace.xml -------------------------------------------------------------------------------- /Kotlin/src/ArraysDemo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Kotlin/src/ArraysDemo.kt -------------------------------------------------------------------------------- /Kotlin/src/BreakAndContinue.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Kotlin/src/BreakAndContinue.kt -------------------------------------------------------------------------------- /Kotlin/src/CollectionUpdate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Kotlin/src/CollectionUpdate.kt -------------------------------------------------------------------------------- /Kotlin/src/DataTypes.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Kotlin/src/DataTypes.kt -------------------------------------------------------------------------------- /Kotlin/src/ExpressionCondition.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Kotlin/src/ExpressionCondition.kt -------------------------------------------------------------------------------- /Kotlin/src/FindMyAge.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Kotlin/src/FindMyAge.kt -------------------------------------------------------------------------------- /Kotlin/src/FirstApp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Kotlin/src/FirstApp.kt -------------------------------------------------------------------------------- /Kotlin/src/FunctionOverload.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Kotlin/src/FunctionOverload.kt -------------------------------------------------------------------------------- /Kotlin/src/FunctionPolymorphism.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Kotlin/src/FunctionPolymorphism.kt -------------------------------------------------------------------------------- /Kotlin/src/FunctionSimple.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Kotlin/src/FunctionSimple.kt -------------------------------------------------------------------------------- /Kotlin/src/HashMapDemo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Kotlin/src/HashMapDemo.kt -------------------------------------------------------------------------------- /Kotlin/src/IFELSEIF.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Kotlin/src/IFELSEIF.kt -------------------------------------------------------------------------------- /Kotlin/src/IFElse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Kotlin/src/IFElse.kt -------------------------------------------------------------------------------- /Kotlin/src/ImprovePetsApp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Kotlin/src/ImprovePetsApp.kt -------------------------------------------------------------------------------- /Kotlin/src/Inputs.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Kotlin/src/Inputs.kt -------------------------------------------------------------------------------- /Kotlin/src/Lamda.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Kotlin/src/Lamda.kt -------------------------------------------------------------------------------- /Kotlin/src/LinkedListDemo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Kotlin/src/LinkedListDemo.kt -------------------------------------------------------------------------------- /Kotlin/src/LogicCondition.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Kotlin/src/LogicCondition.kt -------------------------------------------------------------------------------- /Kotlin/src/MathOperations.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Kotlin/src/MathOperations.kt -------------------------------------------------------------------------------- /Kotlin/src/ModifyVaribile.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Kotlin/src/ModifyVaribile.kt -------------------------------------------------------------------------------- /Kotlin/src/NestedIF.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Kotlin/src/NestedIF.kt -------------------------------------------------------------------------------- /Kotlin/src/NestedLoop.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Kotlin/src/NestedLoop.kt -------------------------------------------------------------------------------- /Kotlin/src/OrderOfOperations.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Kotlin/src/OrderOfOperations.kt -------------------------------------------------------------------------------- /Kotlin/src/Scope.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Kotlin/src/Scope.kt -------------------------------------------------------------------------------- /Kotlin/src/SimpleFor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Kotlin/src/SimpleFor.kt -------------------------------------------------------------------------------- /Kotlin/src/SimpleIF.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Kotlin/src/SimpleIF.kt -------------------------------------------------------------------------------- /Kotlin/src/StringsDemo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Kotlin/src/StringsDemo.kt -------------------------------------------------------------------------------- /Kotlin/src/SwapNumber.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Kotlin/src/SwapNumber.kt -------------------------------------------------------------------------------- /Kotlin/src/WhenMenu.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Kotlin/src/WhenMenu.kt -------------------------------------------------------------------------------- /Kotlin/src/WhileDoWhile.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Kotlin/src/WhileDoWhile.kt -------------------------------------------------------------------------------- /Kotlin/src/com/car/maintin/Car.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Kotlin/src/com/car/maintin/Car.kt -------------------------------------------------------------------------------- /Kotlin/src/com/car/maintin/CarOptions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Kotlin/src/com/car/maintin/CarOptions.kt -------------------------------------------------------------------------------- /Kotlin/src/com/car/maintin/CreditCardCompany.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Kotlin/src/com/car/maintin/CreditCardCompany.kt -------------------------------------------------------------------------------- /Kotlin/src/com/car/maintin/DataClass.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Kotlin/src/com/car/maintin/DataClass.kt -------------------------------------------------------------------------------- /Kotlin/src/com/car/maintin/MaxApp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Kotlin/src/com/car/maintin/MaxApp.kt -------------------------------------------------------------------------------- /Kotlin/src/com/car/maintin/Truck.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Kotlin/src/com/car/maintin/Truck.kt -------------------------------------------------------------------------------- /Kotlin/src/legacy/Generic.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Kotlin/src/legacy/Generic.kt -------------------------------------------------------------------------------- /Kotlin/src/legacy/NestedClass.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Kotlin/src/legacy/NestedClass.kt -------------------------------------------------------------------------------- /Kotlin/src/legacy/Overriding.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Kotlin/src/legacy/Overriding.kt -------------------------------------------------------------------------------- /Kotlin/src/legacy/SimpleAbstruct.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Kotlin/src/legacy/SimpleAbstruct.kt -------------------------------------------------------------------------------- /Kotlin/src/legacy/Singleton.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Kotlin/src/legacy/Singleton.kt -------------------------------------------------------------------------------- /Kotlin/src/legacy/enumsDemo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/Kotlin/src/legacy/enumsDemo.kt -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hussien89aa/KotlinUdemy/HEAD/README.md --------------------------------------------------------------------------------