├── .gitattributes
├── Android
├── Burclar
│ ├── .gitignore
│ ├── .idea
│ │ ├── gradle.xml
│ │ ├── misc.xml
│ │ ├── modules.xml
│ │ └── runConfigurations.xml
│ ├── app
│ │ ├── .gitignore
│ │ ├── build.gradle
│ │ ├── proguard-rules.pro
│ │ └── src
│ │ │ ├── androidTest
│ │ │ └── java
│ │ │ │ └── com
│ │ │ │ └── example
│ │ │ │ └── taha
│ │ │ │ └── burclar
│ │ │ │ └── ExampleInstrumentedTest.kt
│ │ │ ├── main
│ │ │ ├── AndroidManifest.xml
│ │ │ ├── java
│ │ │ │ └── com
│ │ │ │ │ └── example
│ │ │ │ │ └── taha
│ │ │ │ │ └── burclar
│ │ │ │ │ ├── Burc.kt
│ │ │ │ │ ├── BurclarArrayAdapter.kt
│ │ │ │ │ ├── BurclarBaseAdaptor.kt
│ │ │ │ │ ├── DetayActivity.kt
│ │ │ │ │ ├── GirisActivity.kt
│ │ │ │ │ ├── LayoutInflater.kt
│ │ │ │ │ └── MainActivity.kt
│ │ │ └── res
│ │ │ │ ├── anim
│ │ │ │ └── sagadondur.xml
│ │ │ │ ├── drawable-v24
│ │ │ │ └── ic_launcher_foreground.xml
│ │ │ │ ├── drawable
│ │ │ │ ├── akrep8.png
│ │ │ │ ├── akrep_buyuk8.png
│ │ │ │ ├── aslan5.png
│ │ │ │ ├── aslan_buyuk5.png
│ │ │ │ ├── balik12.png
│ │ │ │ ├── balik_buyuk12.png
│ │ │ │ ├── basak6.png
│ │ │ │ ├── basak_buyuk6.png
│ │ │ │ ├── bgimage.png
│ │ │ │ ├── boga2.png
│ │ │ │ ├── boga_buyuk2.png
│ │ │ │ ├── ic_launcher_background.xml
│ │ │ │ ├── ikizler3.png
│ │ │ │ ├── ikizler_buyuk3.png
│ │ │ │ ├── koc1.png
│ │ │ │ ├── koc_buyuk1.png
│ │ │ │ ├── kova11.png
│ │ │ │ ├── kova_buyuk11.png
│ │ │ │ ├── logo.png
│ │ │ │ ├── oglak10.png
│ │ │ │ ├── oglak_buyuk10.png
│ │ │ │ ├── scrim.xml
│ │ │ │ ├── terazi7.png
│ │ │ │ ├── terazi_buyuk7.png
│ │ │ │ ├── yay9.png
│ │ │ │ ├── yay_buyuk9.png
│ │ │ │ ├── yengec4.png
│ │ │ │ └── yengec_buyuk4.png
│ │ │ │ ├── layout
│ │ │ │ ├── activity_detay.xml
│ │ │ │ ├── activity_giris.xml
│ │ │ │ ├── activity_layout_inflater.xml
│ │ │ │ ├── activity_main.xml
│ │ │ │ ├── layout_text_view.xml
│ │ │ │ └── teksatir.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
│ │ │ │ ├── arrays.xml
│ │ │ │ ├── burclar.xml
│ │ │ │ ├── colors.xml
│ │ │ │ ├── strings.xml
│ │ │ │ └── styles.xml
│ │ │ └── test
│ │ │ └── java
│ │ │ └── com
│ │ │ └── example
│ │ │ └── taha
│ │ │ └── burclar
│ │ │ └── ExampleUnitTest.kt
│ ├── build.gradle
│ ├── gradle.properties
│ ├── gradle
│ │ └── wrapper
│ │ │ ├── gradle-wrapper.jar
│ │ │ └── gradle-wrapper.properties
│ ├── gradlew
│ ├── gradlew.bat
│ └── settings.gradle
├── CanDostlar
│ ├── .gitignore
│ ├── .idea
│ │ ├── gradle.xml
│ │ ├── misc.xml
│ │ ├── modules.xml
│ │ └── runConfigurations.xml
│ ├── app
│ │ ├── .gitignore
│ │ ├── build.gradle
│ │ ├── proguard-rules.pro
│ │ └── src
│ │ │ ├── androidTest
│ │ │ └── java
│ │ │ │ └── com
│ │ │ │ └── example
│ │ │ │ └── taha
│ │ │ │ └── candostlar
│ │ │ │ └── ExampleInstrumentedTest.kt
│ │ │ ├── main
│ │ │ ├── AndroidManifest.xml
│ │ │ ├── java
│ │ │ │ └── com
│ │ │ │ │ └── example
│ │ │ │ │ └── taha
│ │ │ │ │ └── candostlar
│ │ │ │ │ ├── DetayActivity.kt
│ │ │ │ │ ├── Library
│ │ │ │ │ ├── DostAdaptor.kt
│ │ │ │ │ ├── Dostlar.kt
│ │ │ │ │ └── FilterHelper.kt
│ │ │ │ │ ├── MainActivity.kt
│ │ │ │ │ └── girisActivity.kt
│ │ │ └── res
│ │ │ │ ├── drawable-v24
│ │ │ │ └── ic_launcher_foreground.xml
│ │ │ │ ├── drawable
│ │ │ │ ├── ani_cat_five.jpeg
│ │ │ │ ├── ani_cat_four.jpeg
│ │ │ │ ├── ani_cat_one.jpeg
│ │ │ │ ├── ani_cat_seven.jpeg
│ │ │ │ ├── ani_cat_six.jpeg
│ │ │ │ ├── ani_cat_three.jpeg
│ │ │ │ ├── ani_cat_two.jpeg
│ │ │ │ ├── ani_deer_four.jpeg
│ │ │ │ ├── ani_deer_one.jpeg
│ │ │ │ ├── ani_deer_three.jpeg
│ │ │ │ ├── ani_deer_two.jpeg
│ │ │ │ ├── ani_dog_five.jpeg
│ │ │ │ ├── ani_dog_four.jpeg
│ │ │ │ ├── ani_dog_one.jpeg
│ │ │ │ ├── ani_dog_three.jpeg
│ │ │ │ ├── ani_dog_two.jpeg
│ │ │ │ ├── arama.png
│ │ │ │ ├── bg.png
│ │ │ │ ├── bird_parrot_eight.jpeg
│ │ │ │ ├── bird_parrot_five.jpeg
│ │ │ │ ├── bird_parrot_four.jpeg
│ │ │ │ ├── bird_parrot_one.jpeg
│ │ │ │ ├── bird_parrot_seven.jpeg
│ │ │ │ ├── bird_parrot_six.jpeg
│ │ │ │ ├── bird_parrot_three.jpeg
│ │ │ │ ├── bird_parrot_two.jpeg
│ │ │ │ ├── ic_launcher_background.xml
│ │ │ │ └── ic_search_black_24dp.xml
│ │ │ │ ├── layout
│ │ │ │ ├── activity_detay.xml
│ │ │ │ ├── activity_giris.xml
│ │ │ │ ├── activity_main.xml
│ │ │ │ └── tek_dost.xml
│ │ │ │ ├── menu
│ │ │ │ └── anamenu.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
│ │ │ └── example
│ │ │ └── taha
│ │ │ └── candostlar
│ │ │ └── ExampleUnitTest.kt
│ ├── build.gradle
│ ├── gradle.properties
│ ├── gradle
│ │ └── wrapper
│ │ │ ├── gradle-wrapper.jar
│ │ │ └── gradle-wrapper.properties
│ ├── gradlew
│ ├── gradlew.bat
│ └── settings.gradle
├── FirebaseBAM
│ ├── .gitignore
│ ├── .idea
│ │ ├── DtonatorPreferences.xml
│ │ ├── gradle.xml
│ │ ├── kotlinc.xml
│ │ ├── misc.xml
│ │ ├── modules.xml
│ │ └── runConfigurations.xml
│ ├── app
│ │ ├── .gitignore
│ │ ├── build.gradle
│ │ ├── google-services.json
│ │ ├── proguard-rules.pro
│ │ └── src
│ │ │ ├── androidTest
│ │ │ └── java
│ │ │ │ └── com
│ │ │ │ └── example
│ │ │ │ └── taha
│ │ │ │ └── firebasebam
│ │ │ │ └── ExampleInstrumentedTest.kt
│ │ │ ├── main
│ │ │ ├── AndroidManifest.xml
│ │ │ ├── java
│ │ │ │ └── com
│ │ │ │ │ └── example
│ │ │ │ │ └── taha
│ │ │ │ │ └── firebasebam
│ │ │ │ │ ├── Adapters
│ │ │ │ │ ├── SohbetMesajlarAdapter.kt
│ │ │ │ │ └── SohbetOdalariAdapter.kt
│ │ │ │ │ ├── Dialogs
│ │ │ │ │ ├── OnayMailDialog.kt
│ │ │ │ │ ├── ProfilResimFragment.kt
│ │ │ │ │ ├── SifremiUnuttumDialogFragment.kt
│ │ │ │ │ └── YeniSohbetFragment.kt
│ │ │ │ │ ├── FCMInterface.kt
│ │ │ │ │ ├── KullaniciDetayActivity.kt
│ │ │ │ │ ├── LoginActivity.kt
│ │ │ │ │ ├── MainActivity.kt
│ │ │ │ │ ├── RegisterActivity.kt
│ │ │ │ │ ├── SohbetActivity.kt
│ │ │ │ │ ├── SohbetOdasiActivity.kt
│ │ │ │ │ ├── model
│ │ │ │ │ ├── FCMModel.kt
│ │ │ │ │ ├── Kullanici.kt
│ │ │ │ │ ├── SohbetMesajlar.kt
│ │ │ │ │ └── SohbetOdası.kt
│ │ │ │ │ └── services
│ │ │ │ │ ├── MyFirebaseInstanceIDService.kt
│ │ │ │ │ └── MyFirebaseMessagingService.kt
│ │ │ └── res
│ │ │ │ ├── drawable-hdpi
│ │ │ │ ├── ic_accessibility.png
│ │ │ │ ├── ic_account_circle.png
│ │ │ │ ├── ic_action_add.png
│ │ │ │ ├── ic_action_arrow_right.png
│ │ │ │ ├── ic_action_lock_closed.png
│ │ │ │ ├── ic_action_trash.png
│ │ │ │ ├── ic_action_user.png
│ │ │ │ ├── ic_contact_mail.png
│ │ │ │ └── ic_local_phone.png
│ │ │ │ ├── drawable-mdpi
│ │ │ │ ├── ic_accessibility.png
│ │ │ │ ├── ic_account_circle.png
│ │ │ │ ├── ic_action_add.png
│ │ │ │ ├── ic_action_arrow_right.png
│ │ │ │ ├── ic_action_lock_closed.png
│ │ │ │ ├── ic_action_trash.png
│ │ │ │ ├── ic_action_user.png
│ │ │ │ ├── ic_contact_mail.png
│ │ │ │ └── ic_local_phone.png
│ │ │ │ ├── drawable-v24
│ │ │ │ └── ic_launcher_foreground.xml
│ │ │ │ ├── drawable-xhdpi
│ │ │ │ ├── ic_accessibility.png
│ │ │ │ ├── ic_account_circle.png
│ │ │ │ ├── ic_action_add.png
│ │ │ │ ├── ic_action_arrow_right.png
│ │ │ │ ├── ic_action_lock_closed.png
│ │ │ │ ├── ic_action_trash.png
│ │ │ │ ├── ic_action_user.png
│ │ │ │ ├── ic_contact_mail.png
│ │ │ │ └── ic_local_phone.png
│ │ │ │ ├── drawable-xxhdpi
│ │ │ │ ├── ic_accessibility.png
│ │ │ │ ├── ic_account_circle.png
│ │ │ │ ├── ic_action_add.png
│ │ │ │ ├── ic_action_arrow_right.png
│ │ │ │ ├── ic_action_lock_closed.png
│ │ │ │ ├── ic_action_trash.png
│ │ │ │ ├── ic_action_user.png
│ │ │ │ ├── ic_contact_mail.png
│ │ │ │ └── ic_local_phone.png
│ │ │ │ ├── drawable-xxxhdpi
│ │ │ │ ├── ic_accessibility.png
│ │ │ │ ├── ic_account_circle.png
│ │ │ │ ├── ic_action_add.png
│ │ │ │ ├── ic_action_arrow_right.png
│ │ │ │ ├── ic_action_lock_closed.png
│ │ │ │ ├── ic_action_trash.png
│ │ │ │ ├── ic_action_user.png
│ │ │ │ ├── ic_contact_mail.png
│ │ │ │ └── ic_local_phone.png
│ │ │ │ ├── drawable
│ │ │ │ └── ic_launcher_background.xml
│ │ │ │ ├── layout
│ │ │ │ ├── activity_kullanici_detay.xml
│ │ │ │ ├── activity_login.xml
│ │ │ │ ├── activity_main.xml
│ │ │ │ ├── activity_register.xml
│ │ │ │ ├── activity_sohbet.xml
│ │ │ │ ├── activity_sohbet_odasi.xml
│ │ │ │ ├── fragment_dialog.xml
│ │ │ │ ├── fragment_profil_resim.xml
│ │ │ │ ├── fragment_sifremi_unuttum_dialog.xml
│ │ │ │ ├── fragment_yeni_sohbet.xml
│ │ │ │ ├── singlelinechatroom.xml
│ │ │ │ ├── singlelinemessage.xml
│ │ │ │ └── singlelinemessage_send.xml
│ │ │ │ ├── menu
│ │ │ │ └── anamenu.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
│ │ │ └── example
│ │ │ └── taha
│ │ │ └── firebasebam
│ │ │ └── ExampleUnitTest.kt
│ ├── build.gradle
│ ├── gradle.properties
│ ├── gradle
│ │ └── wrapper
│ │ │ ├── gradle-wrapper.jar
│ │ │ └── gradle-wrapper.properties
│ ├── gradlew
│ ├── gradlew.bat
│ └── settings.gradle
├── GezegendeKacKioyum
│ ├── .gitignore
│ ├── .idea
│ │ ├── gradle.xml
│ │ ├── misc.xml
│ │ ├── modules.xml
│ │ └── runConfigurations.xml
│ ├── app
│ │ ├── .gitignore
│ │ ├── build.gradle
│ │ ├── proguard-rules.pro
│ │ └── src
│ │ │ ├── androidTest
│ │ │ └── java
│ │ │ │ └── com
│ │ │ │ └── example
│ │ │ │ └── taha
│ │ │ │ └── gezegendekackioyum
│ │ │ │ └── ExampleInstrumentedTest.kt
│ │ │ ├── main
│ │ │ ├── AndroidManifest.xml
│ │ │ ├── java
│ │ │ │ └── com
│ │ │ │ │ └── example
│ │ │ │ │ └── taha
│ │ │ │ │ └── gezegendekackioyum
│ │ │ │ │ └── MainActivity.kt
│ │ │ └── res
│ │ │ │ ├── drawable-v24
│ │ │ │ └── ic_launcher_foreground.xml
│ │ │ │ ├── drawable
│ │ │ │ ├── edittext.xml
│ │ │ │ ├── ic_launcher_background.xml
│ │ │ │ └── title.png
│ │ │ │ ├── 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
│ │ │ └── example
│ │ │ └── taha
│ │ │ └── gezegendekackioyum
│ │ │ └── ExampleUnitTest.kt
│ ├── build.gradle
│ ├── gradle.properties
│ ├── gradle
│ │ └── wrapper
│ │ │ ├── gradle-wrapper.jar
│ │ │ └── gradle-wrapper.properties
│ ├── gradlew
│ ├── gradlew.bat
│ └── settings.gradle
├── HavaDurumu
│ ├── .gitignore
│ ├── .idea
│ │ ├── gradle.xml
│ │ ├── misc.xml
│ │ ├── modules.xml
│ │ └── runConfigurations.xml
│ ├── app
│ │ ├── .gitignore
│ │ ├── build.gradle
│ │ ├── proguard-rules.pro
│ │ └── src
│ │ │ ├── androidTest
│ │ │ └── java
│ │ │ │ └── com
│ │ │ │ └── example
│ │ │ │ └── taha
│ │ │ │ └── havadurumu
│ │ │ │ └── ExampleInstrumentedTest.kt
│ │ │ ├── main
│ │ │ ├── AndroidManifest.xml
│ │ │ ├── java
│ │ │ │ └── com
│ │ │ │ │ └── example
│ │ │ │ │ └── taha
│ │ │ │ │ └── havadurumu
│ │ │ │ │ ├── Library
│ │ │ │ │ └── VolleySingleton.kt
│ │ │ │ │ └── MainActivity.kt
│ │ │ └── res
│ │ │ │ ├── drawable-v24
│ │ │ │ └── ic_launcher_foreground.xml
│ │ │ │ ├── drawable
│ │ │ │ ├── bg.png
│ │ │ │ ├── gece.jpeg
│ │ │ │ ├── ic_launcher_background.xml
│ │ │ │ ├── icon_01.png
│ │ │ │ ├── icon_02.png
│ │ │ │ ├── icon_03.png
│ │ │ │ ├── icon_04.png
│ │ │ │ ├── icon_09.png
│ │ │ │ ├── icon_10.png
│ │ │ │ ├── icon_11.png
│ │ │ │ ├── icon_13.png
│ │ │ │ ├── icon_50.png
│ │ │ │ └── mybutton.xml
│ │ │ │ ├── layout-land
│ │ │ │ └── activity_main.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
│ │ │ └── example
│ │ │ └── taha
│ │ │ └── havadurumu
│ │ │ └── ExampleUnitTest.kt
│ ├── build.gradle
│ ├── gradle.properties
│ ├── gradle
│ │ └── wrapper
│ │ │ ├── gradle-wrapper.jar
│ │ │ └── gradle-wrapper.properties
│ ├── gradlew
│ ├── gradlew.bat
│ └── settings.gradle
├── Manzara
│ ├── .gitignore
│ ├── .idea
│ │ ├── gradle.xml
│ │ ├── misc.xml
│ │ ├── modules.xml
│ │ └── runConfigurations.xml
│ ├── app
│ │ ├── .gitignore
│ │ ├── build.gradle
│ │ ├── proguard-rules.pro
│ │ └── src
│ │ │ ├── androidTest
│ │ │ └── java
│ │ │ │ └── com
│ │ │ │ └── example
│ │ │ │ └── taha
│ │ │ │ └── manzara
│ │ │ │ └── ExampleInstrumentedTest.kt
│ │ │ ├── main
│ │ │ ├── AndroidManifest.xml
│ │ │ ├── java
│ │ │ │ └── com
│ │ │ │ │ └── example
│ │ │ │ │ └── taha
│ │ │ │ │ └── manzara
│ │ │ │ │ ├── Library
│ │ │ │ │ ├── Manzara.kt
│ │ │ │ │ └── ManzaraAdapter.kt
│ │ │ │ │ └── MainActivity.kt
│ │ │ └── res
│ │ │ │ ├── drawable-v24
│ │ │ │ └── ic_launcher_foreground.xml
│ │ │ │ ├── drawable
│ │ │ │ ├── ic_delete.png
│ │ │ │ ├── ic_launcher_background.xml
│ │ │ │ ├── ic_make_copy.png
│ │ │ │ ├── thumb_1_0.jpg
│ │ │ │ ├── thumb_1_1.jpg
│ │ │ │ ├── thumb_1_2.jpg
│ │ │ │ ├── thumb_1_3.jpg
│ │ │ │ ├── thumb_1_4.jpg
│ │ │ │ ├── thumb_1_5.jpg
│ │ │ │ ├── thumb_1_6.jpg
│ │ │ │ ├── thumb_1_7.jpg
│ │ │ │ ├── thumb_1_8.jpg
│ │ │ │ ├── thumb_1_9.jpg
│ │ │ │ ├── thumb_2_0.jpg
│ │ │ │ ├── thumb_2_1.jpg
│ │ │ │ ├── thumb_2_2.jpg
│ │ │ │ ├── thumb_2_3.jpg
│ │ │ │ ├── thumb_2_4.jpg
│ │ │ │ ├── thumb_2_5.jpg
│ │ │ │ ├── thumb_2_6.jpg
│ │ │ │ ├── thumb_2_7.jpg
│ │ │ │ ├── thumb_2_8.jpg
│ │ │ │ ├── thumb_2_9.jpg
│ │ │ │ ├── thumb_3_0.jpg
│ │ │ │ ├── thumb_3_1.jpg
│ │ │ │ ├── thumb_3_2.jpg
│ │ │ │ ├── thumb_3_3.jpg
│ │ │ │ ├── thumb_3_4.jpg
│ │ │ │ ├── thumb_3_5.jpg
│ │ │ │ ├── thumb_3_6.jpg
│ │ │ │ ├── thumb_3_7.jpg
│ │ │ │ ├── thumb_3_8.jpg
│ │ │ │ ├── thumb_3_9.jpg
│ │ │ │ ├── thumb_4_0.jpg
│ │ │ │ ├── thumb_4_1.jpg
│ │ │ │ ├── thumb_4_2.jpg
│ │ │ │ ├── thumb_4_3.jpg
│ │ │ │ ├── thumb_4_4.jpg
│ │ │ │ ├── thumb_4_5.jpg
│ │ │ │ ├── thumb_4_6.jpg
│ │ │ │ ├── thumb_4_7.jpg
│ │ │ │ ├── thumb_4_8.jpg
│ │ │ │ ├── thumb_4_9.jpg
│ │ │ │ ├── thumb_5_0.jpg
│ │ │ │ ├── thumb_5_1.jpg
│ │ │ │ ├── thumb_5_2.jpg
│ │ │ │ ├── thumb_5_3.jpg
│ │ │ │ ├── thumb_5_4.jpg
│ │ │ │ ├── thumb_5_5.jpg
│ │ │ │ ├── thumb_5_6.jpg
│ │ │ │ ├── thumb_5_7.jpg
│ │ │ │ ├── thumb_5_8.jpg
│ │ │ │ ├── thumb_5_9.jpg
│ │ │ │ ├── thumb_6_0.jpg
│ │ │ │ ├── thumb_6_1.jpg
│ │ │ │ ├── thumb_6_2.jpg
│ │ │ │ ├── thumb_6_3.jpg
│ │ │ │ ├── thumb_6_4.jpg
│ │ │ │ ├── thumb_6_5.jpg
│ │ │ │ ├── thumb_6_6.jpg
│ │ │ │ ├── thumb_6_7.jpg
│ │ │ │ ├── thumb_6_8.jpg
│ │ │ │ ├── thumb_6_9.jpg
│ │ │ │ ├── thumb_7_0.jpg
│ │ │ │ ├── thumb_7_1.jpg
│ │ │ │ ├── thumb_7_2.jpg
│ │ │ │ ├── thumb_7_3.jpg
│ │ │ │ └── thumb_7_4.jpg
│ │ │ │ ├── layout
│ │ │ │ ├── activity_main.xml
│ │ │ │ └── tek_satir.xml
│ │ │ │ ├── menu
│ │ │ │ └── anamenu.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
│ │ │ └── example
│ │ │ └── taha
│ │ │ └── manzara
│ │ │ └── ExampleUnitTest.kt
│ ├── build.gradle
│ ├── gradle.properties
│ ├── gradle
│ │ └── wrapper
│ │ │ ├── gradle-wrapper.jar
│ │ │ └── gradle-wrapper.properties
│ ├── gradlew
│ ├── gradlew.bat
│ └── settings.gradle
├── MyApp
│ ├── .gitignore
│ ├── .idea
│ │ ├── gradle.xml
│ │ ├── misc.xml
│ │ ├── modules.xml
│ │ └── runConfigurations.xml
│ ├── app
│ │ ├── .gitignore
│ │ ├── build.gradle
│ │ ├── proguard-rules.pro
│ │ └── src
│ │ │ ├── androidTest
│ │ │ └── java
│ │ │ │ └── com
│ │ │ │ └── example
│ │ │ │ └── taha
│ │ │ │ └── myapp
│ │ │ │ └── ExampleInstrumentedTest.kt
│ │ │ ├── main
│ │ │ ├── AndroidManifest.xml
│ │ │ ├── java
│ │ │ │ └── com
│ │ │ │ │ └── example
│ │ │ │ │ └── taha
│ │ │ │ │ └── myapp
│ │ │ │ │ └── MainActivity.kt
│ │ │ └── res
│ │ │ │ ├── drawable-v24
│ │ │ │ └── ic_launcher_foreground.xml
│ │ │ │ ├── drawable
│ │ │ │ ├── ic_launcher_background.xml
│ │ │ │ └── zundi.jpg
│ │ │ │ ├── layout
│ │ │ │ ├── activity_main_linear.xml
│ │ │ │ ├── activity_main_relative.xml
│ │ │ │ └── deneme.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
│ │ │ └── example
│ │ │ └── taha
│ │ │ └── myapp
│ │ │ └── ExampleUnitTest.kt
│ ├── build.gradle
│ ├── gradle.properties
│ ├── gradle
│ │ └── wrapper
│ │ │ ├── gradle-wrapper.jar
│ │ │ └── gradle-wrapper.properties
│ ├── gradlew
│ ├── gradlew.bat
│ └── settings.gradle
├── OrtalamaHesaplama
│ ├── .gitignore
│ ├── .idea
│ │ ├── gradle.xml
│ │ ├── misc.xml
│ │ ├── modules.xml
│ │ └── runConfigurations.xml
│ ├── app
│ │ ├── .gitignore
│ │ ├── build.gradle
│ │ ├── proguard-rules.pro
│ │ └── src
│ │ │ ├── androidTest
│ │ │ └── java
│ │ │ │ └── com
│ │ │ │ └── example
│ │ │ │ └── taha
│ │ │ │ └── ortalamahesaplama
│ │ │ │ └── ExampleInstrumentedTest.kt
│ │ │ ├── main
│ │ │ ├── AndroidManifest.xml
│ │ │ ├── java
│ │ │ │ └── com
│ │ │ │ │ └── example
│ │ │ │ │ └── taha
│ │ │ │ │ └── ortalamahesaplama
│ │ │ │ │ ├── ActivitySplash.kt
│ │ │ │ │ ├── Dersler.kt
│ │ │ │ │ └── MainActivity.kt
│ │ │ └── res
│ │ │ │ ├── anim
│ │ │ │ ├── frombottombutton.xml
│ │ │ │ ├── fromtopbalon.xml
│ │ │ │ ├── gohomebalon.xml
│ │ │ │ └── gohomebutton.xml
│ │ │ │ ├── drawable-v24
│ │ │ │ └── ic_launcher_foreground.xml
│ │ │ │ ├── drawable
│ │ │ │ ├── ballon.png
│ │ │ │ ├── bg.png
│ │ │ │ ├── btnorthesap.png
│ │ │ │ ├── ekle.png
│ │ │ │ ├── ekle1.png
│ │ │ │ ├── ic_launcher_background.xml
│ │ │ │ └── sil.png
│ │ │ │ ├── layout
│ │ │ │ ├── activity_main.xml
│ │ │ │ ├── activity_splash.xml
│ │ │ │ └── yeni_ders_layout.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
│ │ │ │ ├── array.xml
│ │ │ │ ├── colors.xml
│ │ │ │ ├── strings.xml
│ │ │ │ └── styles.xml
│ │ │ └── test
│ │ │ └── java
│ │ │ └── com
│ │ │ └── example
│ │ │ └── taha
│ │ │ └── ortalamahesaplama
│ │ │ └── ExampleUnitTest.kt
│ ├── build.gradle
│ ├── gradle.properties
│ ├── gradle
│ │ └── wrapper
│ │ │ ├── gradle-wrapper.jar
│ │ │ └── gradle-wrapper.properties
│ ├── gradlew
│ ├── gradlew.bat
│ └── settings.gradle
└── YoutubePlaylist
│ ├── .gitignore
│ ├── .idea
│ ├── DtonatorPreferences.xml
│ ├── gradle.xml
│ ├── misc.xml
│ ├── modules.xml
│ └── runConfigurations.xml
│ ├── app
│ ├── .gitignore
│ ├── build.gradle
│ ├── proguard-rules.pro
│ └── src
│ │ ├── androidTest
│ │ └── java
│ │ │ └── com
│ │ │ └── example
│ │ │ └── taha
│ │ │ └── youtubeplaylist
│ │ │ └── ExampleInstrumentedTest.kt
│ │ ├── main
│ │ ├── AndroidManifest.xml
│ │ ├── java
│ │ │ └── com
│ │ │ │ └── example
│ │ │ │ └── taha
│ │ │ │ └── youtubeplaylist
│ │ │ │ ├── Library
│ │ │ │ ├── ApiClient.kt
│ │ │ │ ├── ApiInterface.kt
│ │ │ │ ├── PlaylistData.kt
│ │ │ │ └── RecyclerViewAdapter
│ │ │ │ │ └── RecyclerViewAdapter.kt
│ │ │ │ └── MainActivity.kt
│ │ └── res
│ │ │ ├── drawable-v24
│ │ │ └── ic_launcher_foreground.xml
│ │ │ ├── drawable
│ │ │ └── ic_launcher_background.xml
│ │ │ ├── layout
│ │ │ ├── activity_main.xml
│ │ │ └── single_line.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
│ │ ├── release
│ │ └── res
│ │ │ └── values
│ │ │ └── google_maps_api.xml
│ │ └── test
│ │ └── java
│ │ └── com
│ │ └── example
│ │ └── taha
│ │ └── youtubeplaylist
│ │ └── ExampleUnitTest.kt
│ ├── build.gradle
│ ├── gradle.properties
│ ├── gradle
│ └── wrapper
│ │ ├── gradle-wrapper.jar
│ │ └── gradle-wrapper.properties
│ ├── gradlew
│ ├── gradlew.bat
│ └── settings.gradle
├── Kotlin Temel
├── .idea
│ ├── kotlinc.xml
│ ├── libraries
│ │ └── KotlinJavaRuntime.xml
│ ├── misc.xml
│ ├── modules.xml
│ ├── uiDesigner.xml
│ ├── vcs.xml
│ └── workspace.xml
├── Kotlin Playground.iml
├── out
│ └── production
│ │ └── Kotlin Playground
│ │ ├── KotlinAbstract
│ │ ├── AbstractKt.class
│ │ ├── Araba.class
│ │ ├── ArabaMotoru.class
│ │ ├── BasketAtabilme$DefaultImpls.class
│ │ ├── BasketAtabilme.class
│ │ ├── Basketbol.class
│ │ ├── BuzPateni.class
│ │ ├── BuzUstundeKayabilme$DefaultImpls.class
│ │ ├── BuzUstundeKayabilme.class
│ │ ├── Calisan.class
│ │ ├── Hayvan$DefaultImpls.class
│ │ ├── Hayvan.class
│ │ ├── IsimsizlerKt$main$isimsizSinif$1.class
│ │ ├── IsimsizlerKt.class
│ │ ├── Kapi.class
│ │ ├── Kaplan.class
│ │ ├── Kedi.class
│ │ ├── KediGiller.class
│ │ ├── KompozisyonKt.class
│ │ ├── Mudur.class
│ │ ├── NestedInnerKt.class
│ │ ├── Okuyabilme.class
│ │ ├── Pencere.class
│ │ ├── Programci.class
│ │ ├── SatisSorumlusu.class
│ │ ├── Sporcu.class
│ │ ├── Sportmenler.class
│ │ ├── StaticKavram.class
│ │ ├── Tarayici.class
│ │ ├── Tekerlek.class
│ │ ├── YokEdici$Companion.class
│ │ ├── YokEdici.class
│ │ ├── disSinif$icSinif$Binner.class
│ │ ├── disSinif$icSinif.class
│ │ └── disSinif.class
│ │ ├── KotlinBeforeNesne
│ │ └── MetodlarKt.class
│ │ ├── KotlinDataClass
│ │ ├── DataClassKt.class
│ │ ├── GetterSetterEnumKt.class
│ │ ├── KapakRengi.class
│ │ ├── Kisi.class
│ │ ├── KisiData.class
│ │ ├── Kitap.class
│ │ └── KitapKotlin.class
│ │ ├── KotlinDegiskenler
│ │ ├── BolumSonuCanavariKt.class
│ │ ├── CastingKt.class
│ │ ├── NumberTypesKt.class
│ │ ├── SabitlerKt.class
│ │ └── StringCharBoolenaKt.class
│ │ ├── KotlinDiziler
│ │ ├── BolumSonuCanavariKt.class
│ │ └── DizilerKt.class
│ │ ├── KotlinException
│ │ └── ExceptionKt.class
│ │ ├── KotlinGeneric
│ │ ├── Deneme$Companion.class
│ │ ├── Deneme.class
│ │ ├── GenericKt.class
│ │ ├── GenericMetodKt.class
│ │ ├── GeometrikSekil.class
│ │ └── StringDiziYaz.class
│ │ ├── KotlinKalıtım
│ │ ├── Asker.class
│ │ ├── Er.class
│ │ ├── GeometrikSekil.class
│ │ ├── Hayvan.class
│ │ ├── Insan.class
│ │ ├── InsanKt.class
│ │ ├── KalitimKt.class
│ │ ├── Kare.class
│ │ ├── Kartal.class
│ │ ├── LateBindingKt.class
│ │ ├── Ogretmen.class
│ │ ├── Ogretmen2.class
│ │ ├── Person.class
│ │ ├── PersonKt.class
│ │ ├── PolymorfizmKt.class
│ │ ├── Timsah.class
│ │ ├── turk.class
│ │ └── ulus.class
│ │ ├── KotlinKoleksiyonlar
│ │ └── Koleksiyon
│ │ │ └── KoleksiyonKt.class
│ │ ├── KotlinKontrolDongu
│ │ ├── KontrolDonguBSCKt.class
│ │ └── KontrolDonguKt.class
│ │ ├── KotlinOOP
│ │ ├── Cokgen.class
│ │ ├── Daire.class
│ │ ├── DaireKt.class
│ │ ├── Dikdortgen.class
│ │ ├── DikdortgenKt.class
│ │ ├── Kare.class
│ │ ├── KareKt.class
│ │ ├── OOPKt.class
│ │ ├── Ogrenci.class
│ │ ├── OgrenciKt.class
│ │ ├── Person.class
│ │ ├── User.class
│ │ └── UserKt.class
│ │ ├── KotlinOperatorler
│ │ └── OperatorlerKt.class
│ │ ├── KotlinOverloading
│ │ ├── OperatorBscKt.class
│ │ └── OverloadKt.class
│ │ ├── KotlinOzelFonksiyonlar
│ │ ├── Baslik.class
│ │ ├── HighOrderFunKt$main$2.class
│ │ ├── HighOrderFunKt$main$expression$1.class
│ │ ├── HighOrderFunKt$main$exresssion$1.class
│ │ ├── HighOrderFunKt$main$terstenYaz$1.class
│ │ ├── HighOrderFunKt.class
│ │ ├── OperatorOverloadingKt.class
│ │ ├── RecusiveKt.class
│ │ ├── TestLambda.class
│ │ ├── Toplam.class
│ │ └── ToplamlariniGoster.class
│ │ ├── META-INF
│ │ └── Kotlin Playground.kotlin_module
│ │ └── MainKt.class
└── src
│ ├── KotlinAbstract
│ ├── Abstract.kt
│ ├── Interface.kt
│ ├── InterfaceKalitim.kt
│ ├── Isimsizler.kt
│ ├── Kompozisyon.kt
│ ├── NestedInner.kt
│ └── Static.kt
│ ├── KotlinBeforeNesne
│ └── Metodlar.kt
│ ├── KotlinDataClass
│ ├── DataClass.kt
│ └── GetterSetterEnum.kt
│ ├── KotlinDegiskenler
│ ├── BolumSonuCanavari.kt
│ ├── Casting.kt
│ ├── NumberTypes.kt
│ ├── Sabitler.kt
│ └── StringCharBoolena.kt
│ ├── KotlinDiziler
│ ├── BolumSonuCanavari.kt
│ └── Diziler.kt
│ ├── KotlinException
│ └── Exception.kt
│ ├── KotlinGeneric
│ ├── Generic.kt
│ └── GenericMetod.kt
│ ├── KotlinKalıtım
│ ├── Insan.kt
│ ├── Kalitim.kt
│ ├── LateBinding.kt
│ ├── Person.kt
│ ├── polymorfizm.kt
│ └── visibility.kt
│ ├── KotlinKoleksiyonlar
│ └── Koleksiyon
│ │ └── Koleksiyon.kt
│ ├── KotlinKontrolDongu
│ ├── KontrolDongu.kt
│ └── KontrolDonguBSC.kt
│ ├── KotlinOOP
│ ├── Daire.kt
│ ├── Dikdortgen.kt
│ ├── Kare.kt
│ ├── OOP.kt
│ ├── Ogrenci.kt
│ └── User.kt
│ ├── KotlinOperatorler
│ └── Operatorler.kt
│ ├── KotlinOverloading
│ ├── OperatorBsc.kt
│ └── Overload.kt
│ ├── KotlinOzelFonksiyonlar
│ ├── HighOrderFun.kt
│ ├── OperatorOverloading.kt
│ └── Recusive.kt
│ └── Main.kt
└── README.md
/.gitattributes:
--------------------------------------------------------------------------------
1 | # Auto detect text files and perform LF normalization
2 | * text=auto
3 |
--------------------------------------------------------------------------------
/Android/Burclar/.gitignore:
--------------------------------------------------------------------------------
1 | *.iml
2 | .gradle
3 | /local.properties
4 | /.idea/workspace.xml
5 | /.idea/libraries
6 | .DS_Store
7 | /build
8 | /captures
9 | .externalNativeBuild
10 |
--------------------------------------------------------------------------------
/Android/Burclar/.idea/gradle.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
17 |
18 |
--------------------------------------------------------------------------------
/Android/Burclar/.idea/modules.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/Android/Burclar/.idea/runConfigurations.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/Android/Burclar/app/.gitignore:
--------------------------------------------------------------------------------
1 | /build
2 |
--------------------------------------------------------------------------------
/Android/Burclar/app/src/main/java/com/example/taha/burclar/Burc.kt:
--------------------------------------------------------------------------------
1 | package com.example.taha.burclar
2 |
3 | import java.io.Serializable
4 |
5 | /**
6 | * Created by Taha on 31-Jan-18.
7 | */
8 | data class Burc(var burcAdi:String,var burcTarihi:String,var burcResmi:Int,
9 | var burcBilgi:String,var burcBuyukResim:Int):Serializable {
10 |
11 | }
12 |
13 |
14 | /* Serializable , activityler arasında geçiş yaparken veri alışverişi için gerekli */
--------------------------------------------------------------------------------
/Android/Burclar/app/src/main/res/anim/sagadondur.xml:
--------------------------------------------------------------------------------
1 |
2 |
4 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/Android/Burclar/app/src/main/res/drawable/akrep8.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Burclar/app/src/main/res/drawable/akrep8.png
--------------------------------------------------------------------------------
/Android/Burclar/app/src/main/res/drawable/akrep_buyuk8.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Burclar/app/src/main/res/drawable/akrep_buyuk8.png
--------------------------------------------------------------------------------
/Android/Burclar/app/src/main/res/drawable/aslan5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Burclar/app/src/main/res/drawable/aslan5.png
--------------------------------------------------------------------------------
/Android/Burclar/app/src/main/res/drawable/aslan_buyuk5.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Burclar/app/src/main/res/drawable/aslan_buyuk5.png
--------------------------------------------------------------------------------
/Android/Burclar/app/src/main/res/drawable/balik12.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Burclar/app/src/main/res/drawable/balik12.png
--------------------------------------------------------------------------------
/Android/Burclar/app/src/main/res/drawable/balik_buyuk12.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Burclar/app/src/main/res/drawable/balik_buyuk12.png
--------------------------------------------------------------------------------
/Android/Burclar/app/src/main/res/drawable/basak6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Burclar/app/src/main/res/drawable/basak6.png
--------------------------------------------------------------------------------
/Android/Burclar/app/src/main/res/drawable/basak_buyuk6.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Burclar/app/src/main/res/drawable/basak_buyuk6.png
--------------------------------------------------------------------------------
/Android/Burclar/app/src/main/res/drawable/bgimage.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Burclar/app/src/main/res/drawable/bgimage.png
--------------------------------------------------------------------------------
/Android/Burclar/app/src/main/res/drawable/boga2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Burclar/app/src/main/res/drawable/boga2.png
--------------------------------------------------------------------------------
/Android/Burclar/app/src/main/res/drawable/boga_buyuk2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Burclar/app/src/main/res/drawable/boga_buyuk2.png
--------------------------------------------------------------------------------
/Android/Burclar/app/src/main/res/drawable/ikizler3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Burclar/app/src/main/res/drawable/ikizler3.png
--------------------------------------------------------------------------------
/Android/Burclar/app/src/main/res/drawable/ikizler_buyuk3.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Burclar/app/src/main/res/drawable/ikizler_buyuk3.png
--------------------------------------------------------------------------------
/Android/Burclar/app/src/main/res/drawable/koc1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Burclar/app/src/main/res/drawable/koc1.png
--------------------------------------------------------------------------------
/Android/Burclar/app/src/main/res/drawable/koc_buyuk1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Burclar/app/src/main/res/drawable/koc_buyuk1.png
--------------------------------------------------------------------------------
/Android/Burclar/app/src/main/res/drawable/kova11.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Burclar/app/src/main/res/drawable/kova11.png
--------------------------------------------------------------------------------
/Android/Burclar/app/src/main/res/drawable/kova_buyuk11.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Burclar/app/src/main/res/drawable/kova_buyuk11.png
--------------------------------------------------------------------------------
/Android/Burclar/app/src/main/res/drawable/logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Burclar/app/src/main/res/drawable/logo.png
--------------------------------------------------------------------------------
/Android/Burclar/app/src/main/res/drawable/oglak10.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Burclar/app/src/main/res/drawable/oglak10.png
--------------------------------------------------------------------------------
/Android/Burclar/app/src/main/res/drawable/oglak_buyuk10.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Burclar/app/src/main/res/drawable/oglak_buyuk10.png
--------------------------------------------------------------------------------
/Android/Burclar/app/src/main/res/drawable/scrim.xml:
--------------------------------------------------------------------------------
1 |
3 |
7 |
--------------------------------------------------------------------------------
/Android/Burclar/app/src/main/res/drawable/terazi7.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Burclar/app/src/main/res/drawable/terazi7.png
--------------------------------------------------------------------------------
/Android/Burclar/app/src/main/res/drawable/terazi_buyuk7.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Burclar/app/src/main/res/drawable/terazi_buyuk7.png
--------------------------------------------------------------------------------
/Android/Burclar/app/src/main/res/drawable/yay9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Burclar/app/src/main/res/drawable/yay9.png
--------------------------------------------------------------------------------
/Android/Burclar/app/src/main/res/drawable/yay_buyuk9.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Burclar/app/src/main/res/drawable/yay_buyuk9.png
--------------------------------------------------------------------------------
/Android/Burclar/app/src/main/res/drawable/yengec4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Burclar/app/src/main/res/drawable/yengec4.png
--------------------------------------------------------------------------------
/Android/Burclar/app/src/main/res/drawable/yengec_buyuk4.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Burclar/app/src/main/res/drawable/yengec_buyuk4.png
--------------------------------------------------------------------------------
/Android/Burclar/app/src/main/res/layout/layout_text_view.xml:
--------------------------------------------------------------------------------
1 |
2 |
10 |
11 |
--------------------------------------------------------------------------------
/Android/Burclar/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/Android/Burclar/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/Android/Burclar/app/src/main/res/mipmap-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Burclar/app/src/main/res/mipmap-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/Android/Burclar/app/src/main/res/mipmap-hdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Burclar/app/src/main/res/mipmap-hdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/Android/Burclar/app/src/main/res/mipmap-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Burclar/app/src/main/res/mipmap-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/Android/Burclar/app/src/main/res/mipmap-mdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Burclar/app/src/main/res/mipmap-mdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/Android/Burclar/app/src/main/res/mipmap-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Burclar/app/src/main/res/mipmap-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/Android/Burclar/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Burclar/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/Android/Burclar/app/src/main/res/mipmap-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Burclar/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/Android/Burclar/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Burclar/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/Android/Burclar/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Burclar/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/Android/Burclar/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Burclar/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/Android/Burclar/app/src/main/res/values/arrays.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | - #41ffffff
6 | - #18ffffff
7 | - #1fffffff
8 | - #25ffffff
9 |
10 |
11 |
12 | - com.github.glomadrian.grav.generator.animation.SideToSideAnimator
13 | - com.github.glomadrian.grav.generator.animation.ShakeAnimator
14 |
15 |
--------------------------------------------------------------------------------
/Android/Burclar/app/src/main/res/values/colors.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | #3F51B5
4 | #303F9F
5 | #FF4081
6 | #2fbbb0
7 |
8 |
--------------------------------------------------------------------------------
/Android/Burclar/app/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | Burclar
3 |
4 |
--------------------------------------------------------------------------------
/Android/Burclar/app/src/main/res/values/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
12 |
13 |
14 |
--------------------------------------------------------------------------------
/Android/Burclar/app/src/test/java/com/example/taha/burclar/ExampleUnitTest.kt:
--------------------------------------------------------------------------------
1 | package com.example.taha.burclar
2 |
3 | import org.junit.Test
4 |
5 | import org.junit.Assert.*
6 |
7 | /**
8 | * Example local unit test, which will execute on the development machine (host).
9 | *
10 | * See [testing documentation](http://d.android.com/tools/testing).
11 | */
12 | class ExampleUnitTest {
13 | @Test
14 | fun addition_isCorrect() {
15 | assertEquals(4, 2 + 2)
16 | }
17 | }
18 |
--------------------------------------------------------------------------------
/Android/Burclar/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Burclar/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/Android/Burclar/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | #Tue Jan 30 13:52:23 EET 2018
2 | distributionBase=GRADLE_USER_HOME
3 | distributionPath=wrapper/dists
4 | zipStoreBase=GRADLE_USER_HOME
5 | zipStorePath=wrapper/dists
6 | distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip
7 |
--------------------------------------------------------------------------------
/Android/Burclar/settings.gradle:
--------------------------------------------------------------------------------
1 | include ':app'
2 |
--------------------------------------------------------------------------------
/Android/CanDostlar/.gitignore:
--------------------------------------------------------------------------------
1 | *.iml
2 | .gradle
3 | /local.properties
4 | /.idea/workspace.xml
5 | /.idea/libraries
6 | .DS_Store
7 | /build
8 | /captures
9 | .externalNativeBuild
10 |
--------------------------------------------------------------------------------
/Android/CanDostlar/.idea/gradle.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
--------------------------------------------------------------------------------
/Android/CanDostlar/.idea/modules.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/Android/CanDostlar/.idea/runConfigurations.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/Android/CanDostlar/app/.gitignore:
--------------------------------------------------------------------------------
1 | /build
2 |
--------------------------------------------------------------------------------
/Android/CanDostlar/app/src/main/java/com/example/taha/candostlar/Library/Dostlar.kt:
--------------------------------------------------------------------------------
1 | package com.example.taha.candostlar.Library
2 |
3 | import java.io.Serializable
4 |
5 | /**
6 | * Created by Taha on 03-Feb-18.
7 | */
8 | class Dostlar(var isim:String,var resim:Int):Serializable {
9 |
10 | }
--------------------------------------------------------------------------------
/Android/CanDostlar/app/src/main/res/drawable/ani_cat_five.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/CanDostlar/app/src/main/res/drawable/ani_cat_five.jpeg
--------------------------------------------------------------------------------
/Android/CanDostlar/app/src/main/res/drawable/ani_cat_four.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/CanDostlar/app/src/main/res/drawable/ani_cat_four.jpeg
--------------------------------------------------------------------------------
/Android/CanDostlar/app/src/main/res/drawable/ani_cat_one.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/CanDostlar/app/src/main/res/drawable/ani_cat_one.jpeg
--------------------------------------------------------------------------------
/Android/CanDostlar/app/src/main/res/drawable/ani_cat_seven.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/CanDostlar/app/src/main/res/drawable/ani_cat_seven.jpeg
--------------------------------------------------------------------------------
/Android/CanDostlar/app/src/main/res/drawable/ani_cat_six.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/CanDostlar/app/src/main/res/drawable/ani_cat_six.jpeg
--------------------------------------------------------------------------------
/Android/CanDostlar/app/src/main/res/drawable/ani_cat_three.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/CanDostlar/app/src/main/res/drawable/ani_cat_three.jpeg
--------------------------------------------------------------------------------
/Android/CanDostlar/app/src/main/res/drawable/ani_cat_two.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/CanDostlar/app/src/main/res/drawable/ani_cat_two.jpeg
--------------------------------------------------------------------------------
/Android/CanDostlar/app/src/main/res/drawable/ani_deer_four.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/CanDostlar/app/src/main/res/drawable/ani_deer_four.jpeg
--------------------------------------------------------------------------------
/Android/CanDostlar/app/src/main/res/drawable/ani_deer_one.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/CanDostlar/app/src/main/res/drawable/ani_deer_one.jpeg
--------------------------------------------------------------------------------
/Android/CanDostlar/app/src/main/res/drawable/ani_deer_three.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/CanDostlar/app/src/main/res/drawable/ani_deer_three.jpeg
--------------------------------------------------------------------------------
/Android/CanDostlar/app/src/main/res/drawable/ani_deer_two.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/CanDostlar/app/src/main/res/drawable/ani_deer_two.jpeg
--------------------------------------------------------------------------------
/Android/CanDostlar/app/src/main/res/drawable/ani_dog_five.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/CanDostlar/app/src/main/res/drawable/ani_dog_five.jpeg
--------------------------------------------------------------------------------
/Android/CanDostlar/app/src/main/res/drawable/ani_dog_four.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/CanDostlar/app/src/main/res/drawable/ani_dog_four.jpeg
--------------------------------------------------------------------------------
/Android/CanDostlar/app/src/main/res/drawable/ani_dog_one.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/CanDostlar/app/src/main/res/drawable/ani_dog_one.jpeg
--------------------------------------------------------------------------------
/Android/CanDostlar/app/src/main/res/drawable/ani_dog_three.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/CanDostlar/app/src/main/res/drawable/ani_dog_three.jpeg
--------------------------------------------------------------------------------
/Android/CanDostlar/app/src/main/res/drawable/ani_dog_two.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/CanDostlar/app/src/main/res/drawable/ani_dog_two.jpeg
--------------------------------------------------------------------------------
/Android/CanDostlar/app/src/main/res/drawable/arama.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/CanDostlar/app/src/main/res/drawable/arama.png
--------------------------------------------------------------------------------
/Android/CanDostlar/app/src/main/res/drawable/bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/CanDostlar/app/src/main/res/drawable/bg.png
--------------------------------------------------------------------------------
/Android/CanDostlar/app/src/main/res/drawable/bird_parrot_eight.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/CanDostlar/app/src/main/res/drawable/bird_parrot_eight.jpeg
--------------------------------------------------------------------------------
/Android/CanDostlar/app/src/main/res/drawable/bird_parrot_five.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/CanDostlar/app/src/main/res/drawable/bird_parrot_five.jpeg
--------------------------------------------------------------------------------
/Android/CanDostlar/app/src/main/res/drawable/bird_parrot_four.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/CanDostlar/app/src/main/res/drawable/bird_parrot_four.jpeg
--------------------------------------------------------------------------------
/Android/CanDostlar/app/src/main/res/drawable/bird_parrot_one.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/CanDostlar/app/src/main/res/drawable/bird_parrot_one.jpeg
--------------------------------------------------------------------------------
/Android/CanDostlar/app/src/main/res/drawable/bird_parrot_seven.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/CanDostlar/app/src/main/res/drawable/bird_parrot_seven.jpeg
--------------------------------------------------------------------------------
/Android/CanDostlar/app/src/main/res/drawable/bird_parrot_six.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/CanDostlar/app/src/main/res/drawable/bird_parrot_six.jpeg
--------------------------------------------------------------------------------
/Android/CanDostlar/app/src/main/res/drawable/bird_parrot_three.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/CanDostlar/app/src/main/res/drawable/bird_parrot_three.jpeg
--------------------------------------------------------------------------------
/Android/CanDostlar/app/src/main/res/drawable/bird_parrot_two.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/CanDostlar/app/src/main/res/drawable/bird_parrot_two.jpeg
--------------------------------------------------------------------------------
/Android/CanDostlar/app/src/main/res/drawable/ic_search_black_24dp.xml:
--------------------------------------------------------------------------------
1 |
6 |
9 |
10 |
--------------------------------------------------------------------------------
/Android/CanDostlar/app/src/main/res/layout/activity_giris.xml:
--------------------------------------------------------------------------------
1 |
2 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/Android/CanDostlar/app/src/main/res/menu/anamenu.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/Android/CanDostlar/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/Android/CanDostlar/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/Android/CanDostlar/app/src/main/res/mipmap-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/CanDostlar/app/src/main/res/mipmap-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/Android/CanDostlar/app/src/main/res/mipmap-hdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/CanDostlar/app/src/main/res/mipmap-hdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/Android/CanDostlar/app/src/main/res/mipmap-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/CanDostlar/app/src/main/res/mipmap-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/Android/CanDostlar/app/src/main/res/mipmap-mdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/CanDostlar/app/src/main/res/mipmap-mdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/Android/CanDostlar/app/src/main/res/mipmap-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/CanDostlar/app/src/main/res/mipmap-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/Android/CanDostlar/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/CanDostlar/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/Android/CanDostlar/app/src/main/res/mipmap-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/CanDostlar/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/Android/CanDostlar/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/CanDostlar/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/Android/CanDostlar/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/CanDostlar/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/Android/CanDostlar/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/CanDostlar/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/Android/CanDostlar/app/src/main/res/values/colors.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | #3F51B5
4 | #f0d700
5 | #FF4081
6 |
7 |
--------------------------------------------------------------------------------
/Android/CanDostlar/app/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | CanDostlar
3 |
4 |
--------------------------------------------------------------------------------
/Android/CanDostlar/app/src/test/java/com/example/taha/candostlar/ExampleUnitTest.kt:
--------------------------------------------------------------------------------
1 | package com.example.taha.candostlar
2 |
3 | import org.junit.Test
4 |
5 | import org.junit.Assert.*
6 |
7 | /**
8 | * Example local unit test, which will execute on the development machine (host).
9 | *
10 | * See [testing documentation](http://d.android.com/tools/testing).
11 | */
12 | class ExampleUnitTest {
13 | @Test
14 | fun addition_isCorrect() {
15 | assertEquals(4, 2 + 2)
16 | }
17 | }
18 |
--------------------------------------------------------------------------------
/Android/CanDostlar/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/CanDostlar/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/Android/CanDostlar/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | #Sat Feb 03 12:47:53 EET 2018
2 | distributionBase=GRADLE_USER_HOME
3 | distributionPath=wrapper/dists
4 | zipStoreBase=GRADLE_USER_HOME
5 | zipStorePath=wrapper/dists
6 | distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip
7 |
--------------------------------------------------------------------------------
/Android/CanDostlar/settings.gradle:
--------------------------------------------------------------------------------
1 | include ':app'
2 |
--------------------------------------------------------------------------------
/Android/FirebaseBAM/.gitignore:
--------------------------------------------------------------------------------
1 | *.iml
2 | .gradle
3 | /local.properties
4 | /.idea/workspace.xml
5 | /.idea/libraries
6 | .DS_Store
7 | /build
8 | /captures
9 | .externalNativeBuild
10 |
--------------------------------------------------------------------------------
/Android/FirebaseBAM/.idea/gradle.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
--------------------------------------------------------------------------------
/Android/FirebaseBAM/.idea/kotlinc.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/Android/FirebaseBAM/.idea/modules.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/Android/FirebaseBAM/.idea/runConfigurations.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/Android/FirebaseBAM/app/.gitignore:
--------------------------------------------------------------------------------
1 | /build
2 |
--------------------------------------------------------------------------------
/Android/FirebaseBAM/app/src/main/java/com/example/taha/firebasebam/FCMInterface.kt:
--------------------------------------------------------------------------------
1 | package com.example.taha.firebasebam
2 |
3 | import com.example.taha.firebasebam.model.FCMModel
4 | import retrofit2.Call
5 | import retrofit2.Response
6 | import retrofit2.http.Body
7 | import retrofit2.http.HeaderMap
8 | import retrofit2.http.POST
9 |
10 | interface FCMInterface {
11 |
12 | @POST("send")
13 | fun bildirimGonder(
14 | @HeaderMap headers:Map,
15 | @Body bildirimMesaj: FCMModel
16 |
17 | ): Call>
18 |
19 | }
--------------------------------------------------------------------------------
/Android/FirebaseBAM/app/src/main/res/drawable-hdpi/ic_accessibility.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/FirebaseBAM/app/src/main/res/drawable-hdpi/ic_accessibility.png
--------------------------------------------------------------------------------
/Android/FirebaseBAM/app/src/main/res/drawable-hdpi/ic_account_circle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/FirebaseBAM/app/src/main/res/drawable-hdpi/ic_account_circle.png
--------------------------------------------------------------------------------
/Android/FirebaseBAM/app/src/main/res/drawable-hdpi/ic_action_add.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/FirebaseBAM/app/src/main/res/drawable-hdpi/ic_action_add.png
--------------------------------------------------------------------------------
/Android/FirebaseBAM/app/src/main/res/drawable-hdpi/ic_action_arrow_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/FirebaseBAM/app/src/main/res/drawable-hdpi/ic_action_arrow_right.png
--------------------------------------------------------------------------------
/Android/FirebaseBAM/app/src/main/res/drawable-hdpi/ic_action_lock_closed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/FirebaseBAM/app/src/main/res/drawable-hdpi/ic_action_lock_closed.png
--------------------------------------------------------------------------------
/Android/FirebaseBAM/app/src/main/res/drawable-hdpi/ic_action_trash.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/FirebaseBAM/app/src/main/res/drawable-hdpi/ic_action_trash.png
--------------------------------------------------------------------------------
/Android/FirebaseBAM/app/src/main/res/drawable-hdpi/ic_action_user.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/FirebaseBAM/app/src/main/res/drawable-hdpi/ic_action_user.png
--------------------------------------------------------------------------------
/Android/FirebaseBAM/app/src/main/res/drawable-hdpi/ic_contact_mail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/FirebaseBAM/app/src/main/res/drawable-hdpi/ic_contact_mail.png
--------------------------------------------------------------------------------
/Android/FirebaseBAM/app/src/main/res/drawable-hdpi/ic_local_phone.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/FirebaseBAM/app/src/main/res/drawable-hdpi/ic_local_phone.png
--------------------------------------------------------------------------------
/Android/FirebaseBAM/app/src/main/res/drawable-mdpi/ic_accessibility.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/FirebaseBAM/app/src/main/res/drawable-mdpi/ic_accessibility.png
--------------------------------------------------------------------------------
/Android/FirebaseBAM/app/src/main/res/drawable-mdpi/ic_account_circle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/FirebaseBAM/app/src/main/res/drawable-mdpi/ic_account_circle.png
--------------------------------------------------------------------------------
/Android/FirebaseBAM/app/src/main/res/drawable-mdpi/ic_action_add.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/FirebaseBAM/app/src/main/res/drawable-mdpi/ic_action_add.png
--------------------------------------------------------------------------------
/Android/FirebaseBAM/app/src/main/res/drawable-mdpi/ic_action_arrow_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/FirebaseBAM/app/src/main/res/drawable-mdpi/ic_action_arrow_right.png
--------------------------------------------------------------------------------
/Android/FirebaseBAM/app/src/main/res/drawable-mdpi/ic_action_lock_closed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/FirebaseBAM/app/src/main/res/drawable-mdpi/ic_action_lock_closed.png
--------------------------------------------------------------------------------
/Android/FirebaseBAM/app/src/main/res/drawable-mdpi/ic_action_trash.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/FirebaseBAM/app/src/main/res/drawable-mdpi/ic_action_trash.png
--------------------------------------------------------------------------------
/Android/FirebaseBAM/app/src/main/res/drawable-mdpi/ic_action_user.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/FirebaseBAM/app/src/main/res/drawable-mdpi/ic_action_user.png
--------------------------------------------------------------------------------
/Android/FirebaseBAM/app/src/main/res/drawable-mdpi/ic_contact_mail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/FirebaseBAM/app/src/main/res/drawable-mdpi/ic_contact_mail.png
--------------------------------------------------------------------------------
/Android/FirebaseBAM/app/src/main/res/drawable-mdpi/ic_local_phone.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/FirebaseBAM/app/src/main/res/drawable-mdpi/ic_local_phone.png
--------------------------------------------------------------------------------
/Android/FirebaseBAM/app/src/main/res/drawable-xhdpi/ic_accessibility.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/FirebaseBAM/app/src/main/res/drawable-xhdpi/ic_accessibility.png
--------------------------------------------------------------------------------
/Android/FirebaseBAM/app/src/main/res/drawable-xhdpi/ic_account_circle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/FirebaseBAM/app/src/main/res/drawable-xhdpi/ic_account_circle.png
--------------------------------------------------------------------------------
/Android/FirebaseBAM/app/src/main/res/drawable-xhdpi/ic_action_add.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/FirebaseBAM/app/src/main/res/drawable-xhdpi/ic_action_add.png
--------------------------------------------------------------------------------
/Android/FirebaseBAM/app/src/main/res/drawable-xhdpi/ic_action_arrow_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/FirebaseBAM/app/src/main/res/drawable-xhdpi/ic_action_arrow_right.png
--------------------------------------------------------------------------------
/Android/FirebaseBAM/app/src/main/res/drawable-xhdpi/ic_action_lock_closed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/FirebaseBAM/app/src/main/res/drawable-xhdpi/ic_action_lock_closed.png
--------------------------------------------------------------------------------
/Android/FirebaseBAM/app/src/main/res/drawable-xhdpi/ic_action_trash.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/FirebaseBAM/app/src/main/res/drawable-xhdpi/ic_action_trash.png
--------------------------------------------------------------------------------
/Android/FirebaseBAM/app/src/main/res/drawable-xhdpi/ic_action_user.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/FirebaseBAM/app/src/main/res/drawable-xhdpi/ic_action_user.png
--------------------------------------------------------------------------------
/Android/FirebaseBAM/app/src/main/res/drawable-xhdpi/ic_contact_mail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/FirebaseBAM/app/src/main/res/drawable-xhdpi/ic_contact_mail.png
--------------------------------------------------------------------------------
/Android/FirebaseBAM/app/src/main/res/drawable-xhdpi/ic_local_phone.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/FirebaseBAM/app/src/main/res/drawable-xhdpi/ic_local_phone.png
--------------------------------------------------------------------------------
/Android/FirebaseBAM/app/src/main/res/drawable-xxhdpi/ic_accessibility.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/FirebaseBAM/app/src/main/res/drawable-xxhdpi/ic_accessibility.png
--------------------------------------------------------------------------------
/Android/FirebaseBAM/app/src/main/res/drawable-xxhdpi/ic_account_circle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/FirebaseBAM/app/src/main/res/drawable-xxhdpi/ic_account_circle.png
--------------------------------------------------------------------------------
/Android/FirebaseBAM/app/src/main/res/drawable-xxhdpi/ic_action_add.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/FirebaseBAM/app/src/main/res/drawable-xxhdpi/ic_action_add.png
--------------------------------------------------------------------------------
/Android/FirebaseBAM/app/src/main/res/drawable-xxhdpi/ic_action_arrow_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/FirebaseBAM/app/src/main/res/drawable-xxhdpi/ic_action_arrow_right.png
--------------------------------------------------------------------------------
/Android/FirebaseBAM/app/src/main/res/drawable-xxhdpi/ic_action_lock_closed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/FirebaseBAM/app/src/main/res/drawable-xxhdpi/ic_action_lock_closed.png
--------------------------------------------------------------------------------
/Android/FirebaseBAM/app/src/main/res/drawable-xxhdpi/ic_action_trash.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/FirebaseBAM/app/src/main/res/drawable-xxhdpi/ic_action_trash.png
--------------------------------------------------------------------------------
/Android/FirebaseBAM/app/src/main/res/drawable-xxhdpi/ic_action_user.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/FirebaseBAM/app/src/main/res/drawable-xxhdpi/ic_action_user.png
--------------------------------------------------------------------------------
/Android/FirebaseBAM/app/src/main/res/drawable-xxhdpi/ic_contact_mail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/FirebaseBAM/app/src/main/res/drawable-xxhdpi/ic_contact_mail.png
--------------------------------------------------------------------------------
/Android/FirebaseBAM/app/src/main/res/drawable-xxhdpi/ic_local_phone.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/FirebaseBAM/app/src/main/res/drawable-xxhdpi/ic_local_phone.png
--------------------------------------------------------------------------------
/Android/FirebaseBAM/app/src/main/res/drawable-xxxhdpi/ic_accessibility.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/FirebaseBAM/app/src/main/res/drawable-xxxhdpi/ic_accessibility.png
--------------------------------------------------------------------------------
/Android/FirebaseBAM/app/src/main/res/drawable-xxxhdpi/ic_account_circle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/FirebaseBAM/app/src/main/res/drawable-xxxhdpi/ic_account_circle.png
--------------------------------------------------------------------------------
/Android/FirebaseBAM/app/src/main/res/drawable-xxxhdpi/ic_action_add.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/FirebaseBAM/app/src/main/res/drawable-xxxhdpi/ic_action_add.png
--------------------------------------------------------------------------------
/Android/FirebaseBAM/app/src/main/res/drawable-xxxhdpi/ic_action_arrow_right.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/FirebaseBAM/app/src/main/res/drawable-xxxhdpi/ic_action_arrow_right.png
--------------------------------------------------------------------------------
/Android/FirebaseBAM/app/src/main/res/drawable-xxxhdpi/ic_action_lock_closed.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/FirebaseBAM/app/src/main/res/drawable-xxxhdpi/ic_action_lock_closed.png
--------------------------------------------------------------------------------
/Android/FirebaseBAM/app/src/main/res/drawable-xxxhdpi/ic_action_trash.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/FirebaseBAM/app/src/main/res/drawable-xxxhdpi/ic_action_trash.png
--------------------------------------------------------------------------------
/Android/FirebaseBAM/app/src/main/res/drawable-xxxhdpi/ic_action_user.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/FirebaseBAM/app/src/main/res/drawable-xxxhdpi/ic_action_user.png
--------------------------------------------------------------------------------
/Android/FirebaseBAM/app/src/main/res/drawable-xxxhdpi/ic_contact_mail.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/FirebaseBAM/app/src/main/res/drawable-xxxhdpi/ic_contact_mail.png
--------------------------------------------------------------------------------
/Android/FirebaseBAM/app/src/main/res/drawable-xxxhdpi/ic_local_phone.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/FirebaseBAM/app/src/main/res/drawable-xxxhdpi/ic_local_phone.png
--------------------------------------------------------------------------------
/Android/FirebaseBAM/app/src/main/res/menu/anamenu.xml:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/Android/FirebaseBAM/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/Android/FirebaseBAM/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/Android/FirebaseBAM/app/src/main/res/mipmap-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/FirebaseBAM/app/src/main/res/mipmap-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/Android/FirebaseBAM/app/src/main/res/mipmap-hdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/FirebaseBAM/app/src/main/res/mipmap-hdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/Android/FirebaseBAM/app/src/main/res/mipmap-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/FirebaseBAM/app/src/main/res/mipmap-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/Android/FirebaseBAM/app/src/main/res/mipmap-mdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/FirebaseBAM/app/src/main/res/mipmap-mdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/Android/FirebaseBAM/app/src/main/res/mipmap-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/FirebaseBAM/app/src/main/res/mipmap-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/Android/FirebaseBAM/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/FirebaseBAM/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/Android/FirebaseBAM/app/src/main/res/mipmap-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/FirebaseBAM/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/Android/FirebaseBAM/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/FirebaseBAM/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/Android/FirebaseBAM/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/FirebaseBAM/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/Android/FirebaseBAM/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/FirebaseBAM/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/Android/FirebaseBAM/app/src/main/res/values/colors.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | #3F51B5
4 | #303f9f
5 | #ff4081
6 |
7 |
--------------------------------------------------------------------------------
/Android/FirebaseBAM/app/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | Firebase BAM
3 |
4 |
5 | Hello blank fragment
6 |
7 |
--------------------------------------------------------------------------------
/Android/FirebaseBAM/app/src/main/res/values/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/Android/FirebaseBAM/app/src/test/java/com/example/taha/firebasebam/ExampleUnitTest.kt:
--------------------------------------------------------------------------------
1 | package com.example.taha.firebasebam
2 |
3 | import org.junit.Test
4 |
5 | import org.junit.Assert.*
6 |
7 | /**
8 | * Example local unit test, which will execute on the development machine (host).
9 | *
10 | * See [testing documentation](http://d.android.com/tools/testing).
11 | */
12 | class ExampleUnitTest {
13 | @Test
14 | fun addition_isCorrect() {
15 | assertEquals(4, 2 + 2)
16 | }
17 | }
18 |
--------------------------------------------------------------------------------
/Android/FirebaseBAM/build.gradle:
--------------------------------------------------------------------------------
1 | // Top-level build file where you can add configuration options common to all sub-projects/modules.
2 |
3 | buildscript {
4 | ext.kotlin_version = '1.2.21'
5 | repositories {
6 | google()
7 | jcenter()
8 | }
9 | dependencies {
10 | classpath 'com.android.tools.build:gradle:3.0.1'
11 | classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
12 | classpath 'com.google.gms:google-services:3.2.0'
13 | }
14 | }
15 |
16 | allprojects {
17 | repositories {
18 | google()
19 | jcenter()
20 | }
21 | }
22 |
23 | task clean(type: Delete) {
24 | delete rootProject.buildDir
25 | }
26 |
--------------------------------------------------------------------------------
/Android/FirebaseBAM/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/FirebaseBAM/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/Android/FirebaseBAM/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | #Wed Feb 07 18:56:09 EET 2018
2 | distributionBase=GRADLE_USER_HOME
3 | distributionPath=wrapper/dists
4 | zipStoreBase=GRADLE_USER_HOME
5 | zipStorePath=wrapper/dists
6 | distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip
7 |
--------------------------------------------------------------------------------
/Android/FirebaseBAM/settings.gradle:
--------------------------------------------------------------------------------
1 | include ':app'
2 |
--------------------------------------------------------------------------------
/Android/GezegendeKacKioyum/.gitignore:
--------------------------------------------------------------------------------
1 | *.iml
2 | .gradle
3 | /local.properties
4 | /.idea/workspace.xml
5 | /.idea/libraries
6 | .DS_Store
7 | /build
8 | /captures
9 | .externalNativeBuild
10 |
--------------------------------------------------------------------------------
/Android/GezegendeKacKioyum/.idea/gradle.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
--------------------------------------------------------------------------------
/Android/GezegendeKacKioyum/.idea/modules.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/Android/GezegendeKacKioyum/.idea/runConfigurations.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/Android/GezegendeKacKioyum/app/.gitignore:
--------------------------------------------------------------------------------
1 | /build
2 |
--------------------------------------------------------------------------------
/Android/GezegendeKacKioyum/app/src/main/res/drawable/edittext.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/Android/GezegendeKacKioyum/app/src/main/res/drawable/title.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/GezegendeKacKioyum/app/src/main/res/drawable/title.png
--------------------------------------------------------------------------------
/Android/GezegendeKacKioyum/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/Android/GezegendeKacKioyum/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/Android/GezegendeKacKioyum/app/src/main/res/mipmap-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/GezegendeKacKioyum/app/src/main/res/mipmap-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/Android/GezegendeKacKioyum/app/src/main/res/mipmap-hdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/GezegendeKacKioyum/app/src/main/res/mipmap-hdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/Android/GezegendeKacKioyum/app/src/main/res/mipmap-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/GezegendeKacKioyum/app/src/main/res/mipmap-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/Android/GezegendeKacKioyum/app/src/main/res/mipmap-mdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/GezegendeKacKioyum/app/src/main/res/mipmap-mdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/Android/GezegendeKacKioyum/app/src/main/res/mipmap-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/GezegendeKacKioyum/app/src/main/res/mipmap-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/Android/GezegendeKacKioyum/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/GezegendeKacKioyum/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/Android/GezegendeKacKioyum/app/src/main/res/mipmap-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/GezegendeKacKioyum/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/Android/GezegendeKacKioyum/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/GezegendeKacKioyum/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/Android/GezegendeKacKioyum/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/GezegendeKacKioyum/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/Android/GezegendeKacKioyum/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/GezegendeKacKioyum/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/Android/GezegendeKacKioyum/app/src/main/res/values/colors.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | #303f9f
4 | #001970
5 | #666ad1
6 |
7 |
--------------------------------------------------------------------------------
/Android/GezegendeKacKioyum/app/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | GezegendeKacKiloyum
3 | Gezegende Kaç Kilosun ???
4 |
5 |
--------------------------------------------------------------------------------
/Android/GezegendeKacKioyum/app/src/main/res/values/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/Android/GezegendeKacKioyum/app/src/test/java/com/example/taha/gezegendekackioyum/ExampleUnitTest.kt:
--------------------------------------------------------------------------------
1 | package com.example.taha.gezegendekackioyum
2 |
3 | import org.junit.Test
4 |
5 | import org.junit.Assert.*
6 |
7 | /**
8 | * Example local unit test, which will execute on the development machine (host).
9 | *
10 | * See [testing documentation](http://d.android.com/tools/testing).
11 | */
12 | class ExampleUnitTest {
13 | @Test
14 | fun addition_isCorrect() {
15 | assertEquals(4, 2 + 2)
16 | }
17 | }
18 |
--------------------------------------------------------------------------------
/Android/GezegendeKacKioyum/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/GezegendeKacKioyum/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/Android/GezegendeKacKioyum/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | #Wed Jan 24 12:17:18 EET 2018
2 | distributionBase=GRADLE_USER_HOME
3 | distributionPath=wrapper/dists
4 | zipStoreBase=GRADLE_USER_HOME
5 | zipStorePath=wrapper/dists
6 | distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip
7 |
--------------------------------------------------------------------------------
/Android/GezegendeKacKioyum/settings.gradle:
--------------------------------------------------------------------------------
1 | include ':app'
2 |
--------------------------------------------------------------------------------
/Android/HavaDurumu/.gitignore:
--------------------------------------------------------------------------------
1 | *.iml
2 | .gradle
3 | /local.properties
4 | /.idea/workspace.xml
5 | /.idea/libraries
6 | .DS_Store
7 | /build
8 | /captures
9 | .externalNativeBuild
10 |
--------------------------------------------------------------------------------
/Android/HavaDurumu/.idea/gradle.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
--------------------------------------------------------------------------------
/Android/HavaDurumu/.idea/modules.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/Android/HavaDurumu/.idea/runConfigurations.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/Android/HavaDurumu/app/.gitignore:
--------------------------------------------------------------------------------
1 | /build
2 |
--------------------------------------------------------------------------------
/Android/HavaDurumu/app/src/main/res/drawable/bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/HavaDurumu/app/src/main/res/drawable/bg.png
--------------------------------------------------------------------------------
/Android/HavaDurumu/app/src/main/res/drawable/gece.jpeg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/HavaDurumu/app/src/main/res/drawable/gece.jpeg
--------------------------------------------------------------------------------
/Android/HavaDurumu/app/src/main/res/drawable/icon_01.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/HavaDurumu/app/src/main/res/drawable/icon_01.png
--------------------------------------------------------------------------------
/Android/HavaDurumu/app/src/main/res/drawable/icon_02.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/HavaDurumu/app/src/main/res/drawable/icon_02.png
--------------------------------------------------------------------------------
/Android/HavaDurumu/app/src/main/res/drawable/icon_03.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/HavaDurumu/app/src/main/res/drawable/icon_03.png
--------------------------------------------------------------------------------
/Android/HavaDurumu/app/src/main/res/drawable/icon_04.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/HavaDurumu/app/src/main/res/drawable/icon_04.png
--------------------------------------------------------------------------------
/Android/HavaDurumu/app/src/main/res/drawable/icon_09.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/HavaDurumu/app/src/main/res/drawable/icon_09.png
--------------------------------------------------------------------------------
/Android/HavaDurumu/app/src/main/res/drawable/icon_10.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/HavaDurumu/app/src/main/res/drawable/icon_10.png
--------------------------------------------------------------------------------
/Android/HavaDurumu/app/src/main/res/drawable/icon_11.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/HavaDurumu/app/src/main/res/drawable/icon_11.png
--------------------------------------------------------------------------------
/Android/HavaDurumu/app/src/main/res/drawable/icon_13.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/HavaDurumu/app/src/main/res/drawable/icon_13.png
--------------------------------------------------------------------------------
/Android/HavaDurumu/app/src/main/res/drawable/icon_50.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/HavaDurumu/app/src/main/res/drawable/icon_50.png
--------------------------------------------------------------------------------
/Android/HavaDurumu/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/Android/HavaDurumu/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/Android/HavaDurumu/app/src/main/res/mipmap-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/HavaDurumu/app/src/main/res/mipmap-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/Android/HavaDurumu/app/src/main/res/mipmap-hdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/HavaDurumu/app/src/main/res/mipmap-hdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/Android/HavaDurumu/app/src/main/res/mipmap-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/HavaDurumu/app/src/main/res/mipmap-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/Android/HavaDurumu/app/src/main/res/mipmap-mdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/HavaDurumu/app/src/main/res/mipmap-mdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/Android/HavaDurumu/app/src/main/res/mipmap-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/HavaDurumu/app/src/main/res/mipmap-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/Android/HavaDurumu/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/HavaDurumu/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/Android/HavaDurumu/app/src/main/res/mipmap-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/HavaDurumu/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/Android/HavaDurumu/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/HavaDurumu/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/Android/HavaDurumu/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/HavaDurumu/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/Android/HavaDurumu/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/HavaDurumu/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/Android/HavaDurumu/app/src/main/res/values/colors.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | #3F51B5
4 | #303F9F
5 | #FF4081
6 |
7 |
--------------------------------------------------------------------------------
/Android/HavaDurumu/app/src/main/res/values/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/Android/HavaDurumu/app/src/test/java/com/example/taha/havadurumu/ExampleUnitTest.kt:
--------------------------------------------------------------------------------
1 | package com.example.taha.havadurumu
2 |
3 | import org.junit.Test
4 |
5 | import org.junit.Assert.*
6 |
7 | /**
8 | * Example local unit test, which will execute on the development machine (host).
9 | *
10 | * See [testing documentation](http://d.android.com/tools/testing).
11 | */
12 | class ExampleUnitTest {
13 | @Test
14 | fun addition_isCorrect() {
15 | assertEquals(4, 2 + 2)
16 | }
17 | }
18 |
--------------------------------------------------------------------------------
/Android/HavaDurumu/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/HavaDurumu/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/Android/HavaDurumu/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | #Sun Feb 04 12:31:05 EET 2018
2 | distributionBase=GRADLE_USER_HOME
3 | distributionPath=wrapper/dists
4 | zipStoreBase=GRADLE_USER_HOME
5 | zipStorePath=wrapper/dists
6 | distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip
7 |
--------------------------------------------------------------------------------
/Android/HavaDurumu/settings.gradle:
--------------------------------------------------------------------------------
1 | include ':app'
2 |
--------------------------------------------------------------------------------
/Android/Manzara/.gitignore:
--------------------------------------------------------------------------------
1 | *.iml
2 | .gradle
3 | /local.properties
4 | /.idea/workspace.xml
5 | /.idea/libraries
6 | .DS_Store
7 | /build
8 | /captures
9 | .externalNativeBuild
10 |
--------------------------------------------------------------------------------
/Android/Manzara/.idea/gradle.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
--------------------------------------------------------------------------------
/Android/Manzara/.idea/modules.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/Android/Manzara/.idea/runConfigurations.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/Android/Manzara/app/.gitignore:
--------------------------------------------------------------------------------
1 | /build
2 |
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/java/com/example/taha/manzara/Library/Manzara.kt:
--------------------------------------------------------------------------------
1 | package com.example.taha.manzara.Library
2 |
3 | /**
4 | * Created by Taha on 01-Feb-18.
5 | */
6 | data class Manzara(var baslik:String,var aciklama:String,var resim:Int) {
7 | }
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/res/drawable/ic_delete.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Manzara/app/src/main/res/drawable/ic_delete.png
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/res/drawable/ic_make_copy.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Manzara/app/src/main/res/drawable/ic_make_copy.png
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/res/drawable/thumb_1_0.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Manzara/app/src/main/res/drawable/thumb_1_0.jpg
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/res/drawable/thumb_1_1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Manzara/app/src/main/res/drawable/thumb_1_1.jpg
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/res/drawable/thumb_1_2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Manzara/app/src/main/res/drawable/thumb_1_2.jpg
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/res/drawable/thumb_1_3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Manzara/app/src/main/res/drawable/thumb_1_3.jpg
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/res/drawable/thumb_1_4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Manzara/app/src/main/res/drawable/thumb_1_4.jpg
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/res/drawable/thumb_1_5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Manzara/app/src/main/res/drawable/thumb_1_5.jpg
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/res/drawable/thumb_1_6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Manzara/app/src/main/res/drawable/thumb_1_6.jpg
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/res/drawable/thumb_1_7.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Manzara/app/src/main/res/drawable/thumb_1_7.jpg
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/res/drawable/thumb_1_8.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Manzara/app/src/main/res/drawable/thumb_1_8.jpg
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/res/drawable/thumb_1_9.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Manzara/app/src/main/res/drawable/thumb_1_9.jpg
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/res/drawable/thumb_2_0.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Manzara/app/src/main/res/drawable/thumb_2_0.jpg
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/res/drawable/thumb_2_1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Manzara/app/src/main/res/drawable/thumb_2_1.jpg
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/res/drawable/thumb_2_2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Manzara/app/src/main/res/drawable/thumb_2_2.jpg
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/res/drawable/thumb_2_3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Manzara/app/src/main/res/drawable/thumb_2_3.jpg
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/res/drawable/thumb_2_4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Manzara/app/src/main/res/drawable/thumb_2_4.jpg
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/res/drawable/thumb_2_5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Manzara/app/src/main/res/drawable/thumb_2_5.jpg
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/res/drawable/thumb_2_6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Manzara/app/src/main/res/drawable/thumb_2_6.jpg
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/res/drawable/thumb_2_7.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Manzara/app/src/main/res/drawable/thumb_2_7.jpg
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/res/drawable/thumb_2_8.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Manzara/app/src/main/res/drawable/thumb_2_8.jpg
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/res/drawable/thumb_2_9.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Manzara/app/src/main/res/drawable/thumb_2_9.jpg
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/res/drawable/thumb_3_0.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Manzara/app/src/main/res/drawable/thumb_3_0.jpg
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/res/drawable/thumb_3_1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Manzara/app/src/main/res/drawable/thumb_3_1.jpg
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/res/drawable/thumb_3_2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Manzara/app/src/main/res/drawable/thumb_3_2.jpg
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/res/drawable/thumb_3_3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Manzara/app/src/main/res/drawable/thumb_3_3.jpg
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/res/drawable/thumb_3_4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Manzara/app/src/main/res/drawable/thumb_3_4.jpg
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/res/drawable/thumb_3_5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Manzara/app/src/main/res/drawable/thumb_3_5.jpg
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/res/drawable/thumb_3_6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Manzara/app/src/main/res/drawable/thumb_3_6.jpg
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/res/drawable/thumb_3_7.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Manzara/app/src/main/res/drawable/thumb_3_7.jpg
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/res/drawable/thumb_3_8.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Manzara/app/src/main/res/drawable/thumb_3_8.jpg
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/res/drawable/thumb_3_9.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Manzara/app/src/main/res/drawable/thumb_3_9.jpg
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/res/drawable/thumb_4_0.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Manzara/app/src/main/res/drawable/thumb_4_0.jpg
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/res/drawable/thumb_4_1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Manzara/app/src/main/res/drawable/thumb_4_1.jpg
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/res/drawable/thumb_4_2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Manzara/app/src/main/res/drawable/thumb_4_2.jpg
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/res/drawable/thumb_4_3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Manzara/app/src/main/res/drawable/thumb_4_3.jpg
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/res/drawable/thumb_4_4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Manzara/app/src/main/res/drawable/thumb_4_4.jpg
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/res/drawable/thumb_4_5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Manzara/app/src/main/res/drawable/thumb_4_5.jpg
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/res/drawable/thumb_4_6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Manzara/app/src/main/res/drawable/thumb_4_6.jpg
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/res/drawable/thumb_4_7.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Manzara/app/src/main/res/drawable/thumb_4_7.jpg
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/res/drawable/thumb_4_8.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Manzara/app/src/main/res/drawable/thumb_4_8.jpg
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/res/drawable/thumb_4_9.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Manzara/app/src/main/res/drawable/thumb_4_9.jpg
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/res/drawable/thumb_5_0.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Manzara/app/src/main/res/drawable/thumb_5_0.jpg
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/res/drawable/thumb_5_1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Manzara/app/src/main/res/drawable/thumb_5_1.jpg
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/res/drawable/thumb_5_2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Manzara/app/src/main/res/drawable/thumb_5_2.jpg
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/res/drawable/thumb_5_3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Manzara/app/src/main/res/drawable/thumb_5_3.jpg
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/res/drawable/thumb_5_4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Manzara/app/src/main/res/drawable/thumb_5_4.jpg
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/res/drawable/thumb_5_5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Manzara/app/src/main/res/drawable/thumb_5_5.jpg
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/res/drawable/thumb_5_6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Manzara/app/src/main/res/drawable/thumb_5_6.jpg
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/res/drawable/thumb_5_7.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Manzara/app/src/main/res/drawable/thumb_5_7.jpg
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/res/drawable/thumb_5_8.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Manzara/app/src/main/res/drawable/thumb_5_8.jpg
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/res/drawable/thumb_5_9.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Manzara/app/src/main/res/drawable/thumb_5_9.jpg
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/res/drawable/thumb_6_0.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Manzara/app/src/main/res/drawable/thumb_6_0.jpg
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/res/drawable/thumb_6_1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Manzara/app/src/main/res/drawable/thumb_6_1.jpg
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/res/drawable/thumb_6_2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Manzara/app/src/main/res/drawable/thumb_6_2.jpg
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/res/drawable/thumb_6_3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Manzara/app/src/main/res/drawable/thumb_6_3.jpg
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/res/drawable/thumb_6_4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Manzara/app/src/main/res/drawable/thumb_6_4.jpg
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/res/drawable/thumb_6_5.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Manzara/app/src/main/res/drawable/thumb_6_5.jpg
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/res/drawable/thumb_6_6.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Manzara/app/src/main/res/drawable/thumb_6_6.jpg
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/res/drawable/thumb_6_7.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Manzara/app/src/main/res/drawable/thumb_6_7.jpg
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/res/drawable/thumb_6_8.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Manzara/app/src/main/res/drawable/thumb_6_8.jpg
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/res/drawable/thumb_6_9.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Manzara/app/src/main/res/drawable/thumb_6_9.jpg
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/res/drawable/thumb_7_0.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Manzara/app/src/main/res/drawable/thumb_7_0.jpg
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/res/drawable/thumb_7_1.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Manzara/app/src/main/res/drawable/thumb_7_1.jpg
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/res/drawable/thumb_7_2.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Manzara/app/src/main/res/drawable/thumb_7_2.jpg
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/res/drawable/thumb_7_3.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Manzara/app/src/main/res/drawable/thumb_7_3.jpg
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/res/drawable/thumb_7_4.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Manzara/app/src/main/res/drawable/thumb_7_4.jpg
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/res/mipmap-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Manzara/app/src/main/res/mipmap-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/res/mipmap-hdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Manzara/app/src/main/res/mipmap-hdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/res/mipmap-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Manzara/app/src/main/res/mipmap-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/res/mipmap-mdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Manzara/app/src/main/res/mipmap-mdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/res/mipmap-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Manzara/app/src/main/res/mipmap-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Manzara/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/res/mipmap-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Manzara/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Manzara/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Manzara/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Manzara/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/res/values/colors.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | #3F51B5
4 | #303F9F
5 | #FF4081
6 |
7 |
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | Manzara
3 |
4 |
--------------------------------------------------------------------------------
/Android/Manzara/app/src/main/res/values/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/Android/Manzara/app/src/test/java/com/example/taha/manzara/ExampleUnitTest.kt:
--------------------------------------------------------------------------------
1 | package com.example.taha.manzara
2 |
3 | import org.junit.Test
4 |
5 | import org.junit.Assert.*
6 |
7 | /**
8 | * Example local unit test, which will execute on the development machine (host).
9 | *
10 | * See [testing documentation](http://d.android.com/tools/testing).
11 | */
12 | class ExampleUnitTest {
13 | @Test
14 | fun addition_isCorrect() {
15 | assertEquals(4, 2 + 2)
16 | }
17 | }
18 |
--------------------------------------------------------------------------------
/Android/Manzara/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/Manzara/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/Android/Manzara/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | #Thu Feb 01 14:52:44 EET 2018
2 | distributionBase=GRADLE_USER_HOME
3 | distributionPath=wrapper/dists
4 | zipStoreBase=GRADLE_USER_HOME
5 | zipStorePath=wrapper/dists
6 | distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip
7 |
--------------------------------------------------------------------------------
/Android/Manzara/settings.gradle:
--------------------------------------------------------------------------------
1 | include ':app'
2 |
--------------------------------------------------------------------------------
/Android/MyApp/.gitignore:
--------------------------------------------------------------------------------
1 | *.iml
2 | .gradle
3 | /local.properties
4 | /.idea/workspace.xml
5 | /.idea/libraries
6 | .DS_Store
7 | /build
8 | /captures
9 | .externalNativeBuild
10 |
--------------------------------------------------------------------------------
/Android/MyApp/.idea/gradle.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
--------------------------------------------------------------------------------
/Android/MyApp/.idea/modules.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/Android/MyApp/.idea/runConfigurations.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/Android/MyApp/app/.gitignore:
--------------------------------------------------------------------------------
1 | /build
2 |
--------------------------------------------------------------------------------
/Android/MyApp/app/src/main/java/com/example/taha/myapp/MainActivity.kt:
--------------------------------------------------------------------------------
1 | package com.example.taha.myapp
2 |
3 | import android.content.res.Configuration
4 | import android.opengl.Visibility
5 | import android.support.v7.app.AppCompatActivity
6 | import android.os.Bundle
7 | import android.view.View
8 | import kotlinx.android.synthetic.main.deneme.*
9 | class MainActivity : AppCompatActivity() {
10 |
11 | var myVariable:Int = 0
12 |
13 | override fun onCreate(savedInstanceState: Bundle?) {
14 | super.onCreate(savedInstanceState)
15 | setContentView(R.layout.deneme) /* activity layout ayarlama */
16 |
17 |
18 | }
19 | }
20 |
--------------------------------------------------------------------------------
/Android/MyApp/app/src/main/res/drawable/zundi.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/MyApp/app/src/main/res/drawable/zundi.jpg
--------------------------------------------------------------------------------
/Android/MyApp/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/Android/MyApp/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/Android/MyApp/app/src/main/res/mipmap-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/MyApp/app/src/main/res/mipmap-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/Android/MyApp/app/src/main/res/mipmap-hdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/MyApp/app/src/main/res/mipmap-hdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/Android/MyApp/app/src/main/res/mipmap-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/MyApp/app/src/main/res/mipmap-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/Android/MyApp/app/src/main/res/mipmap-mdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/MyApp/app/src/main/res/mipmap-mdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/Android/MyApp/app/src/main/res/mipmap-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/MyApp/app/src/main/res/mipmap-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/Android/MyApp/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/MyApp/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/Android/MyApp/app/src/main/res/mipmap-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/MyApp/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/Android/MyApp/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/MyApp/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/Android/MyApp/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/MyApp/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/Android/MyApp/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/MyApp/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/Android/MyApp/app/src/main/res/values/colors.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | #3f51b5
4 | #303F9F
5 | #FF4081
6 |
7 |
--------------------------------------------------------------------------------
/Android/MyApp/app/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | MyApp
3 |
4 |
--------------------------------------------------------------------------------
/Android/MyApp/app/src/main/res/values/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/Android/MyApp/app/src/test/java/com/example/taha/myapp/ExampleUnitTest.kt:
--------------------------------------------------------------------------------
1 | package com.example.taha.myapp
2 |
3 | import org.junit.Test
4 |
5 | import org.junit.Assert.*
6 |
7 | /**
8 | * Example local unit test, which will execute on the development machine (host).
9 | *
10 | * See [testing documentation](http://d.android.com/tools/testing).
11 | */
12 | class ExampleUnitTest {
13 | @Test
14 | fun addition_isCorrect() {
15 | assertEquals(4, 2 + 2)
16 | }
17 | }
18 |
--------------------------------------------------------------------------------
/Android/MyApp/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/MyApp/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/Android/MyApp/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | #Tue Jan 23 11:44:00 EET 2018
2 | distributionBase=GRADLE_USER_HOME
3 | distributionPath=wrapper/dists
4 | zipStoreBase=GRADLE_USER_HOME
5 | zipStorePath=wrapper/dists
6 | distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip
7 |
--------------------------------------------------------------------------------
/Android/MyApp/settings.gradle:
--------------------------------------------------------------------------------
1 | include ':app'
2 |
--------------------------------------------------------------------------------
/Android/OrtalamaHesaplama/.gitignore:
--------------------------------------------------------------------------------
1 | *.iml
2 | .gradle
3 | /local.properties
4 | /.idea/workspace.xml
5 | /.idea/libraries
6 | .DS_Store
7 | /build
8 | /captures
9 | .externalNativeBuild
10 |
--------------------------------------------------------------------------------
/Android/OrtalamaHesaplama/.idea/gradle.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
--------------------------------------------------------------------------------
/Android/OrtalamaHesaplama/.idea/modules.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/Android/OrtalamaHesaplama/.idea/runConfigurations.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/Android/OrtalamaHesaplama/app/.gitignore:
--------------------------------------------------------------------------------
1 | /build
2 |
--------------------------------------------------------------------------------
/Android/OrtalamaHesaplama/app/src/main/java/com/example/taha/ortalamahesaplama/Dersler.kt:
--------------------------------------------------------------------------------
1 | package com.example.taha.ortalamahesaplama
2 |
3 | /**
4 | * Created by Taha on 28-Jan-18.
5 | */
6 | data class Dersler(var dersAdi:String,var dersKredi:String,var dersNot:String) {
7 |
8 | init {
9 | dersKredi = dersKredi.replace(" Kredi","")
10 |
11 | dersNot = when(dersNot)
12 | {
13 | "AA" -> "4.0"
14 | "BA" -> "3.5"
15 | "BB" -> "3.0"
16 | "CB" -> "2.5"
17 | "CC" -> "2.0"
18 | "DC" -> "1.5"
19 | "DD" -> "1.0"
20 | "FD" -> "0.5"
21 | "FF" -> "0.0"
22 | else -> "0.0"
23 | }
24 | }
25 |
26 | }
--------------------------------------------------------------------------------
/Android/OrtalamaHesaplama/app/src/main/res/anim/frombottombutton.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/Android/OrtalamaHesaplama/app/src/main/res/anim/fromtopbalon.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/Android/OrtalamaHesaplama/app/src/main/res/anim/gohomebalon.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/Android/OrtalamaHesaplama/app/src/main/res/anim/gohomebutton.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/Android/OrtalamaHesaplama/app/src/main/res/drawable/ballon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/OrtalamaHesaplama/app/src/main/res/drawable/ballon.png
--------------------------------------------------------------------------------
/Android/OrtalamaHesaplama/app/src/main/res/drawable/bg.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/OrtalamaHesaplama/app/src/main/res/drawable/bg.png
--------------------------------------------------------------------------------
/Android/OrtalamaHesaplama/app/src/main/res/drawable/btnorthesap.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/OrtalamaHesaplama/app/src/main/res/drawable/btnorthesap.png
--------------------------------------------------------------------------------
/Android/OrtalamaHesaplama/app/src/main/res/drawable/ekle.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/OrtalamaHesaplama/app/src/main/res/drawable/ekle.png
--------------------------------------------------------------------------------
/Android/OrtalamaHesaplama/app/src/main/res/drawable/ekle1.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/OrtalamaHesaplama/app/src/main/res/drawable/ekle1.png
--------------------------------------------------------------------------------
/Android/OrtalamaHesaplama/app/src/main/res/drawable/sil.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/OrtalamaHesaplama/app/src/main/res/drawable/sil.png
--------------------------------------------------------------------------------
/Android/OrtalamaHesaplama/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/Android/OrtalamaHesaplama/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/Android/OrtalamaHesaplama/app/src/main/res/mipmap-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/OrtalamaHesaplama/app/src/main/res/mipmap-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/Android/OrtalamaHesaplama/app/src/main/res/mipmap-hdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/OrtalamaHesaplama/app/src/main/res/mipmap-hdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/Android/OrtalamaHesaplama/app/src/main/res/mipmap-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/OrtalamaHesaplama/app/src/main/res/mipmap-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/Android/OrtalamaHesaplama/app/src/main/res/mipmap-mdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/OrtalamaHesaplama/app/src/main/res/mipmap-mdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/Android/OrtalamaHesaplama/app/src/main/res/mipmap-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/OrtalamaHesaplama/app/src/main/res/mipmap-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/Android/OrtalamaHesaplama/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/OrtalamaHesaplama/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/Android/OrtalamaHesaplama/app/src/main/res/mipmap-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/OrtalamaHesaplama/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/Android/OrtalamaHesaplama/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/OrtalamaHesaplama/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/Android/OrtalamaHesaplama/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/OrtalamaHesaplama/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/Android/OrtalamaHesaplama/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/OrtalamaHesaplama/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/Android/OrtalamaHesaplama/app/src/main/res/values/colors.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | #b71c1c
4 | #7f0000
5 | #9b0000
6 | #d50000
7 | #9b0000
8 | #ff5131
9 |
10 |
11 |
--------------------------------------------------------------------------------
/Android/OrtalamaHesaplama/app/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | Ortalama Hesaplama
3 |
4 |
--------------------------------------------------------------------------------
/Android/OrtalamaHesaplama/app/src/main/res/values/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
11 |
12 |
13 |
--------------------------------------------------------------------------------
/Android/OrtalamaHesaplama/app/src/test/java/com/example/taha/ortalamahesaplama/ExampleUnitTest.kt:
--------------------------------------------------------------------------------
1 | package com.example.taha.ortalamahesaplama
2 |
3 | import org.junit.Test
4 |
5 | import org.junit.Assert.*
6 |
7 | /**
8 | * Example local unit test, which will execute on the development machine (host).
9 | *
10 | * See [testing documentation](http://d.android.com/tools/testing).
11 | */
12 | class ExampleUnitTest {
13 | @Test
14 | fun addition_isCorrect() {
15 | assertEquals(4, 2 + 2)
16 | }
17 | }
18 |
--------------------------------------------------------------------------------
/Android/OrtalamaHesaplama/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/OrtalamaHesaplama/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/Android/OrtalamaHesaplama/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | #Wed Jan 24 15:41:43 EET 2018
2 | distributionBase=GRADLE_USER_HOME
3 | distributionPath=wrapper/dists
4 | zipStoreBase=GRADLE_USER_HOME
5 | zipStorePath=wrapper/dists
6 | distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip
7 |
--------------------------------------------------------------------------------
/Android/OrtalamaHesaplama/settings.gradle:
--------------------------------------------------------------------------------
1 | include ':app'
2 |
--------------------------------------------------------------------------------
/Android/YoutubePlaylist/.gitignore:
--------------------------------------------------------------------------------
1 | *.iml
2 | .gradle
3 | /local.properties
4 | /.idea/workspace.xml
5 | /.idea/libraries
6 | .DS_Store
7 | /build
8 | /captures
9 | .externalNativeBuild
10 |
--------------------------------------------------------------------------------
/Android/YoutubePlaylist/.idea/gradle.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
--------------------------------------------------------------------------------
/Android/YoutubePlaylist/.idea/modules.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
--------------------------------------------------------------------------------
/Android/YoutubePlaylist/.idea/runConfigurations.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/Android/YoutubePlaylist/app/.gitignore:
--------------------------------------------------------------------------------
1 | /build
2 |
--------------------------------------------------------------------------------
/Android/YoutubePlaylist/app/src/main/java/com/example/taha/youtubeplaylist/Library/ApiInterface.kt:
--------------------------------------------------------------------------------
1 | package com.example.taha.youtubeplaylist.Library
2 |
3 | import retrofit2.Call
4 | import retrofit2.http.GET
5 | import retrofit2.http.Query
6 |
7 | /**
8 | * Created by Taha on 07-Feb-18.
9 | */
10 | interface ApiInterface {
11 | /*https://www.googleapis.com/youtube/v3/playlists?part=snippet&channelId=UCexH9SCdSTccX2a2M087sBg&maxResults=50&key={YOUR_API_KEY}*/
12 | @GET("playlistItems?part=snippet")
13 | fun tumListeleriGetir(@Query("playlistId") playlistId:String,
14 | @Query("key") key:String,
15 | @Query("maxResults")maxResults:String):Call
16 |
17 |
18 | }
--------------------------------------------------------------------------------
/Android/YoutubePlaylist/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/Android/YoutubePlaylist/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
--------------------------------------------------------------------------------
/Android/YoutubePlaylist/app/src/main/res/mipmap-hdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/YoutubePlaylist/app/src/main/res/mipmap-hdpi/ic_launcher.png
--------------------------------------------------------------------------------
/Android/YoutubePlaylist/app/src/main/res/mipmap-hdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/YoutubePlaylist/app/src/main/res/mipmap-hdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/Android/YoutubePlaylist/app/src/main/res/mipmap-mdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/YoutubePlaylist/app/src/main/res/mipmap-mdpi/ic_launcher.png
--------------------------------------------------------------------------------
/Android/YoutubePlaylist/app/src/main/res/mipmap-mdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/YoutubePlaylist/app/src/main/res/mipmap-mdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/Android/YoutubePlaylist/app/src/main/res/mipmap-xhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/YoutubePlaylist/app/src/main/res/mipmap-xhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/Android/YoutubePlaylist/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/YoutubePlaylist/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/Android/YoutubePlaylist/app/src/main/res/mipmap-xxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/YoutubePlaylist/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/Android/YoutubePlaylist/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/YoutubePlaylist/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/Android/YoutubePlaylist/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/YoutubePlaylist/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
--------------------------------------------------------------------------------
/Android/YoutubePlaylist/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/YoutubePlaylist/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png
--------------------------------------------------------------------------------
/Android/YoutubePlaylist/app/src/main/res/values/colors.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | #3F51B5
4 | #303F9F
5 | #FF4081
6 |
7 |
--------------------------------------------------------------------------------
/Android/YoutubePlaylist/app/src/main/res/values/strings.xml:
--------------------------------------------------------------------------------
1 |
2 | Youtube Playlist
3 | Map
4 |
5 |
--------------------------------------------------------------------------------
/Android/YoutubePlaylist/app/src/main/res/values/styles.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/Android/YoutubePlaylist/app/src/test/java/com/example/taha/youtubeplaylist/ExampleUnitTest.kt:
--------------------------------------------------------------------------------
1 | package com.example.taha.youtubeplaylist
2 |
3 | import org.junit.Test
4 |
5 | import org.junit.Assert.*
6 |
7 | /**
8 | * Example local unit test, which will execute on the development machine (host).
9 | *
10 | * See [testing documentation](http://d.android.com/tools/testing).
11 | */
12 | class ExampleUnitTest {
13 | @Test
14 | fun addition_isCorrect() {
15 | assertEquals(4, 2 + 2)
16 | }
17 | }
18 |
--------------------------------------------------------------------------------
/Android/YoutubePlaylist/gradle/wrapper/gradle-wrapper.jar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Android/YoutubePlaylist/gradle/wrapper/gradle-wrapper.jar
--------------------------------------------------------------------------------
/Android/YoutubePlaylist/gradle/wrapper/gradle-wrapper.properties:
--------------------------------------------------------------------------------
1 | #Wed Feb 07 15:20:18 EET 2018
2 | distributionBase=GRADLE_USER_HOME
3 | distributionPath=wrapper/dists
4 | zipStoreBase=GRADLE_USER_HOME
5 | zipStorePath=wrapper/dists
6 | distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip
7 |
--------------------------------------------------------------------------------
/Android/YoutubePlaylist/settings.gradle:
--------------------------------------------------------------------------------
1 | include ':app'
2 |
--------------------------------------------------------------------------------
/Kotlin Temel/.idea/kotlinc.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/Kotlin Temel/.idea/misc.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/Kotlin Temel/.idea/modules.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
--------------------------------------------------------------------------------
/Kotlin Temel/.idea/vcs.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
--------------------------------------------------------------------------------
/Kotlin Temel/Kotlin Playground.iml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinAbstract/AbstractKt.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinAbstract/AbstractKt.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinAbstract/Araba.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinAbstract/Araba.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinAbstract/ArabaMotoru.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinAbstract/ArabaMotoru.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinAbstract/BasketAtabilme$DefaultImpls.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinAbstract/BasketAtabilme$DefaultImpls.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinAbstract/BasketAtabilme.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinAbstract/BasketAtabilme.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinAbstract/Basketbol.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinAbstract/Basketbol.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinAbstract/BuzPateni.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinAbstract/BuzPateni.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinAbstract/BuzUstundeKayabilme$DefaultImpls.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinAbstract/BuzUstundeKayabilme$DefaultImpls.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinAbstract/BuzUstundeKayabilme.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinAbstract/BuzUstundeKayabilme.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinAbstract/Calisan.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinAbstract/Calisan.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinAbstract/Hayvan$DefaultImpls.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinAbstract/Hayvan$DefaultImpls.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinAbstract/Hayvan.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinAbstract/Hayvan.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinAbstract/IsimsizlerKt$main$isimsizSinif$1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinAbstract/IsimsizlerKt$main$isimsizSinif$1.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinAbstract/IsimsizlerKt.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinAbstract/IsimsizlerKt.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinAbstract/Kapi.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinAbstract/Kapi.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinAbstract/Kaplan.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinAbstract/Kaplan.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinAbstract/Kedi.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinAbstract/Kedi.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinAbstract/KediGiller.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinAbstract/KediGiller.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinAbstract/KompozisyonKt.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinAbstract/KompozisyonKt.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinAbstract/Mudur.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinAbstract/Mudur.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinAbstract/NestedInnerKt.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinAbstract/NestedInnerKt.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinAbstract/Okuyabilme.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinAbstract/Okuyabilme.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinAbstract/Pencere.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinAbstract/Pencere.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinAbstract/Programci.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinAbstract/Programci.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinAbstract/SatisSorumlusu.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinAbstract/SatisSorumlusu.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinAbstract/Sporcu.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinAbstract/Sporcu.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinAbstract/Sportmenler.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinAbstract/Sportmenler.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinAbstract/StaticKavram.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinAbstract/StaticKavram.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinAbstract/Tarayici.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinAbstract/Tarayici.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinAbstract/Tekerlek.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinAbstract/Tekerlek.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinAbstract/YokEdici$Companion.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinAbstract/YokEdici$Companion.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinAbstract/YokEdici.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinAbstract/YokEdici.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinAbstract/disSinif$icSinif$Binner.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinAbstract/disSinif$icSinif$Binner.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinAbstract/disSinif$icSinif.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinAbstract/disSinif$icSinif.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinAbstract/disSinif.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinAbstract/disSinif.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinBeforeNesne/MetodlarKt.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinBeforeNesne/MetodlarKt.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinDataClass/DataClassKt.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinDataClass/DataClassKt.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinDataClass/GetterSetterEnumKt.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinDataClass/GetterSetterEnumKt.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinDataClass/KapakRengi.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinDataClass/KapakRengi.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinDataClass/Kisi.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinDataClass/Kisi.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinDataClass/KisiData.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinDataClass/KisiData.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinDataClass/Kitap.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinDataClass/Kitap.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinDataClass/KitapKotlin.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinDataClass/KitapKotlin.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinDegiskenler/BolumSonuCanavariKt.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinDegiskenler/BolumSonuCanavariKt.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinDegiskenler/CastingKt.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinDegiskenler/CastingKt.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinDegiskenler/NumberTypesKt.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinDegiskenler/NumberTypesKt.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinDegiskenler/SabitlerKt.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinDegiskenler/SabitlerKt.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinDegiskenler/StringCharBoolenaKt.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinDegiskenler/StringCharBoolenaKt.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinDiziler/BolumSonuCanavariKt.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinDiziler/BolumSonuCanavariKt.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinDiziler/DizilerKt.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinDiziler/DizilerKt.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinException/ExceptionKt.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinException/ExceptionKt.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinGeneric/Deneme$Companion.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinGeneric/Deneme$Companion.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinGeneric/Deneme.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinGeneric/Deneme.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinGeneric/GenericKt.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinGeneric/GenericKt.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinGeneric/GenericMetodKt.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinGeneric/GenericMetodKt.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinGeneric/GeometrikSekil.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinGeneric/GeometrikSekil.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinGeneric/StringDiziYaz.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinGeneric/StringDiziYaz.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinKalıtım/Asker.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinKalıtım/Asker.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinKalıtım/Er.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinKalıtım/Er.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinKalıtım/GeometrikSekil.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinKalıtım/GeometrikSekil.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinKalıtım/Hayvan.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinKalıtım/Hayvan.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinKalıtım/Insan.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinKalıtım/Insan.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinKalıtım/InsanKt.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinKalıtım/InsanKt.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinKalıtım/KalitimKt.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinKalıtım/KalitimKt.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinKalıtım/Kare.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinKalıtım/Kare.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinKalıtım/Kartal.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinKalıtım/Kartal.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinKalıtım/LateBindingKt.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinKalıtım/LateBindingKt.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinKalıtım/Ogretmen.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinKalıtım/Ogretmen.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinKalıtım/Ogretmen2.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinKalıtım/Ogretmen2.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinKalıtım/Person.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinKalıtım/Person.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinKalıtım/PersonKt.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinKalıtım/PersonKt.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinKalıtım/PolymorfizmKt.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinKalıtım/PolymorfizmKt.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinKalıtım/Timsah.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinKalıtım/Timsah.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinKalıtım/turk.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinKalıtım/turk.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinKalıtım/ulus.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinKalıtım/ulus.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinKoleksiyonlar/Koleksiyon/KoleksiyonKt.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinKoleksiyonlar/Koleksiyon/KoleksiyonKt.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinKontrolDongu/KontrolDonguBSCKt.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinKontrolDongu/KontrolDonguBSCKt.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinKontrolDongu/KontrolDonguKt.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinKontrolDongu/KontrolDonguKt.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinOOP/Cokgen.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinOOP/Cokgen.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinOOP/Daire.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinOOP/Daire.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinOOP/DaireKt.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinOOP/DaireKt.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinOOP/Dikdortgen.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinOOP/Dikdortgen.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinOOP/DikdortgenKt.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinOOP/DikdortgenKt.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinOOP/Kare.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinOOP/Kare.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinOOP/KareKt.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinOOP/KareKt.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinOOP/OOPKt.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinOOP/OOPKt.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinOOP/Ogrenci.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinOOP/Ogrenci.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinOOP/OgrenciKt.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinOOP/OgrenciKt.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinOOP/Person.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinOOP/Person.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinOOP/User.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinOOP/User.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinOOP/UserKt.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinOOP/UserKt.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinOperatorler/OperatorlerKt.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinOperatorler/OperatorlerKt.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinOverloading/OperatorBscKt.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinOverloading/OperatorBscKt.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinOverloading/OverloadKt.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinOverloading/OverloadKt.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinOzelFonksiyonlar/Baslik.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinOzelFonksiyonlar/Baslik.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinOzelFonksiyonlar/HighOrderFunKt$main$2.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinOzelFonksiyonlar/HighOrderFunKt$main$2.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinOzelFonksiyonlar/HighOrderFunKt$main$expression$1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinOzelFonksiyonlar/HighOrderFunKt$main$expression$1.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinOzelFonksiyonlar/HighOrderFunKt$main$exresssion$1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinOzelFonksiyonlar/HighOrderFunKt$main$exresssion$1.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinOzelFonksiyonlar/HighOrderFunKt$main$terstenYaz$1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinOzelFonksiyonlar/HighOrderFunKt$main$terstenYaz$1.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinOzelFonksiyonlar/HighOrderFunKt.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinOzelFonksiyonlar/HighOrderFunKt.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinOzelFonksiyonlar/OperatorOverloadingKt.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinOzelFonksiyonlar/OperatorOverloadingKt.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinOzelFonksiyonlar/RecusiveKt.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinOzelFonksiyonlar/RecusiveKt.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinOzelFonksiyonlar/TestLambda.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinOzelFonksiyonlar/TestLambda.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinOzelFonksiyonlar/Toplam.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinOzelFonksiyonlar/Toplam.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/KotlinOzelFonksiyonlar/ToplamlariniGoster.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/KotlinOzelFonksiyonlar/ToplamlariniGoster.class
--------------------------------------------------------------------------------
/Kotlin Temel/out/production/Kotlin Playground/MainKt.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/tyuksel53/Kotlin-Workspace/1962bc7053f89ef8f87a5d5efd8ff69f789b7972/Kotlin Temel/out/production/Kotlin Playground/MainKt.class
--------------------------------------------------------------------------------
/Kotlin Temel/src/KotlinAbstract/Isimsizler.kt:
--------------------------------------------------------------------------------
1 | package KotlinAbstract
2 |
3 | interface Okuyabilme{ /* iki farklı nesne, iki farklı sınıf */
4 | fun oku()
5 | }
6 |
7 | class Tarayici : Okuyabilme
8 | {
9 | override fun oku() {
10 |
11 | }
12 |
13 | }
14 |
15 | fun main(args: Array) {
16 |
17 | var tarayicim = Tarayici()
18 |
19 | tarayicim.oku()
20 |
21 | /*var isimsizSinif = Okuyabilme -----> hata*/
22 |
23 | var isimsizSinif = object : Okuyabilme{
24 |
25 | override fun oku() {
26 | println("ezdik")
27 | }
28 |
29 | }
30 |
31 | }
--------------------------------------------------------------------------------
/Kotlin Temel/src/KotlinAbstract/Static.kt:
--------------------------------------------------------------------------------
1 | package KotlinAbstract
2 |
3 | object StaticKavram{ /* singleton pattern stattik class sen ne kadar üretirsen üret hepsi aynı yeri gösteriyor*/
4 | /* değişimlerde sabit */
5 | var sinifAdi = "Mundi"
6 |
7 | @JvmStatic
8 | fun main(){
9 |
10 | println("Main")
11 |
12 | }
13 |
14 | }
15 |
16 | internal class YokEdici(private val id:Int,private val isim:String) /* parantezler primary constractor */
17 | {
18 | init{
19 | toplamOgrenciSayisi++
20 | }
21 |
22 | fun bilgiler()
23 | {
24 | println("bilgiler")
25 | }
26 | companion object { /* static değişkenler buraya yazılıyor */
27 | var toplamOgrenciSayisi = 0
28 | }
29 | }
--------------------------------------------------------------------------------
/Kotlin Temel/src/KotlinDegiskenler/BolumSonuCanavari.kt:
--------------------------------------------------------------------------------
1 | package KotlinDegiskenler
2 |
3 | fun BolumSonuCanavari(boy:Int,kilo:Int)
4 | {
5 | val boyCarpimi = boy * boy
6 | var vucutKitleEndeksi = kilo / boyCarpimi
7 |
8 | if(vucutKitleEndeksi < 18.5 )
9 | {
10 | println("Zayif")
11 | }else if( vucutKitleEndeksi > 18.5 || vucutKitleEndeksi < 24.9)
12 | {
13 | println("normal")
14 | }else
15 | {
16 | println("sıçtın")
17 | }
18 | }
--------------------------------------------------------------------------------
/Kotlin Temel/src/KotlinDegiskenler/Casting.kt:
--------------------------------------------------------------------------------
1 | package KotlinDegiskenler
2 |
3 | fun casting(){
4 | var shortVal:Short = Short.MAX_VALUE
5 | var intagerVal:Int = 32
6 |
7 | shortVal = intagerVal.toShort()
8 |
9 | println(shortVal)
10 |
11 | var doubleVal : Double = 123123.123231
12 | var castVal = doubleVal.toInt()
13 | println(castVal)
14 | }
--------------------------------------------------------------------------------
/Kotlin Temel/src/KotlinDegiskenler/Sabitler.kt:
--------------------------------------------------------------------------------
1 | package KotlinDegiskenler
2 |
3 | fun sabitler(){
4 | val pi:Double = 3.14 /* val == const */
5 |
6 | /*pi = Math.PI*/
7 |
8 | val orjPi = Math.PI /* daha sonra degğişmez */
9 |
10 | println(pi)
11 | println(orjPi)
12 | }
--------------------------------------------------------------------------------
/Kotlin Temel/src/KotlinDegiskenler/StringCharBoolena.kt:
--------------------------------------------------------------------------------
1 | package KotlinDegiskenler
2 |
3 | fun booleanType()
4 | {
5 | var isTrue:Boolean = true
6 |
7 | print("${isTrue.toString()} degerini\n")
8 | }
9 |
10 | fun charType()
11 | {
12 | var charVal:Char = 'a'
13 | var charVal2:Char = 'a'
14 | println("$charVal$charVal birlesti")
15 | }
16 |
17 | fun stringType()
18 | {
19 | var stringVal:String = "Taha Yuksel"
20 | println("Bos yapma laaaan $stringVal ${stringVal.length}")
21 | println("${stringVal.indexOf('a')}")
22 | println("""Escape karakterler gg oldu \n \n \n""")
23 | }
--------------------------------------------------------------------------------
/Kotlin Temel/src/KotlinGeneric/Generic.kt:
--------------------------------------------------------------------------------
1 | package KotlinGeneric
2 |
3 | class StringDiziYaz(var arr:Array) { /* var dersek elaman oluyor, var demessek paremetre oluyor*/
4 |
5 | fun diziYazdir(){
6 |
7 | for(gececi in arr)
8 | {
9 | println(gececi)
10 | }
11 |
12 | }
13 |
14 | }
15 |
16 | fun main(args: Array) {
17 | var stringDizi = arrayOf("Taha","Hasan","Lahmi")
18 | var intergarDizi = arrayOf(1,2,3,5)
19 | var stringDiziYazSinif = StringDiziYaz(stringDizi)
20 | var intagerSinif = StringDiziYaz(intergarDizi)
21 | stringDiziYazSinif.diziYazdir()
22 | intagerSinif.diziYazdir()
23 |
24 | }
--------------------------------------------------------------------------------
/Kotlin Temel/src/KotlinGeneric/GenericMetod.kt:
--------------------------------------------------------------------------------
1 | package KotlinGeneric
2 |
3 | abstract class GeometrikSekil{
4 |
5 | abstract fun alanHesapla()
6 |
7 |
8 | }
9 |
10 | class Deneme{
11 |
12 | init{
13 | asd++
14 | }
15 |
16 | var zundi = 1
17 | var mundi = 2
18 |
19 | companion object {
20 | var asd = 0
21 | fun asd(){
22 |
23 | }
24 | }
25 |
26 |
27 | }
28 |
29 |
30 | fun main(args: Array) {
31 |
32 | }
33 |
34 | /*
35 | fun Toplama(param1:T,param2:T) : T
36 | {
37 |
38 | return param1 + param2
39 | }
40 | */
41 |
42 |
43 |
44 |
--------------------------------------------------------------------------------
/Kotlin Temel/src/KotlinKalıtım/visibility.kt:
--------------------------------------------------------------------------------
1 | package KotlinKalıtım
2 |
3 | open class ulus{
4 |
5 | private var a = 1
6 | protected var b = 2
7 | internal var c = 3 /*modulun içerisinde tanımlı */
8 | public var z = 4
9 |
10 | open fun test()
11 | {
12 | println(a)
13 | println(b)
14 | println(c)
15 | println(z)
16 |
17 | }
18 | }
19 |
20 | class turk: ulus(){
21 |
22 | override fun test()
23 | {
24 |
25 | }
26 |
27 | }
--------------------------------------------------------------------------------
/Kotlin Temel/src/KotlinOOP/Daire.kt:
--------------------------------------------------------------------------------
1 | package KotlinOOP
2 |
3 | class Daire(yaricap:Int){
4 |
5 | var yaricap:Int
6 |
7 | init
8 | {
9 | this.yaricap = yaricap
10 | }
11 |
12 | fun alanHesapla() = yaricap * yaricap * Math.PI
13 | }
14 | class Cokgen(var Kenar:Int){}
15 |
16 | fun main(args: Array) {
17 | var d1 = Daire(5)
18 | println(d1.alanHesapla())
19 | kareAl(d1)
20 | var c1 = Cokgen(2)
21 | print(c1.Kenar * c1.Kenar)
22 | }
23 |
24 | fun kareAl(daire:Daire)
25 | {
26 | println(Math.pow(daire.alanHesapla(),2.0))
27 | }
--------------------------------------------------------------------------------
/Kotlin Temel/src/KotlinOOP/Dikdortgen.kt:
--------------------------------------------------------------------------------
1 | package KotlinOOP
2 |
3 | class Dikdortgen(var Boy: Int = 0, var En: Int = 0) {
4 |
5 |
6 | fun alanHesapla() = Boy * En
7 | }
8 |
9 | fun main(args: Array) {
10 |
11 | var d1 = Dikdortgen(10, 20)
12 |
13 | println(d1.alanHesapla())
14 |
15 | var d2 = Dikdortgen(10,20)
16 |
17 | var d3 = Dikdortgen(Boy = 1,En = 20)
18 |
19 | println(d3.alanHesapla())
20 |
21 | var d4 = Dikdortgen()
22 |
23 | println(d4.alanHesapla())
24 |
25 |
26 |
27 | }
--------------------------------------------------------------------------------
/Kotlin Temel/src/KotlinOOP/Kare.kt:
--------------------------------------------------------------------------------
1 | package KotlinOOP
2 |
3 | class Kare {
4 |
5 | var Kenar : Int = 0
6 |
7 | constructor()
8 | {
9 | this.Kenar = 0
10 | }
11 |
12 | fun alanHesapla() = Kenar * Kenar
13 |
14 | constructor(Kenar: Int)
15 | {
16 | this.Kenar = Kenar
17 | }
18 | }
19 |
20 | fun main(args: Array) {
21 |
22 | var kare1 = Kare()
23 | var kare2 = Kare(1)
24 |
25 |
26 | }
27 |
28 |
--------------------------------------------------------------------------------
/Kotlin Temel/src/KotlinOOP/OOP.kt:
--------------------------------------------------------------------------------
1 | package KotlinOOP
2 |
3 | class Person{
4 |
5 | var isim:String = "Taha"
6 | var yas:Int = 29
7 |
8 | fun selamVer()
9 | {
10 | println("Merhaba ben $isim")
11 | }
12 | fun dogumYili() = 2017 - yas
13 |
14 | }
15 |
16 | fun asilFonk()
17 | {
18 | var ornek:Person = Person()
19 |
20 | print("${ornek.isim}\n")
21 | ornek.selamVer()
22 | println(ornek.dogumYili())
23 | }
--------------------------------------------------------------------------------
/Kotlin Temel/src/KotlinOOP/Ogrenci.kt:
--------------------------------------------------------------------------------
1 | package KotlinOOP
2 |
3 | class Ogrenci (Isim:String,Yas:Int){
4 |
5 | var Isim:String
6 | var Yas:Int
7 |
8 | init {
9 | this.Isim = Isim
10 | this.Yas = Yas
11 |
12 | }
13 | fun bilgileriGoser()
14 | {
15 | println("Ben $Isim , Yasim: $Yas")
16 | }
17 |
18 | }
19 |
20 | fun zundi(){
21 | var ogerenci = Ogrenci("taha",12)
22 |
23 | ogerenci.bilgileriGoser()
24 | }
--------------------------------------------------------------------------------
/Kotlin Temel/src/KotlinOOP/User.kt:
--------------------------------------------------------------------------------
1 | package KotlinOOP
2 |
3 | class User(name:String,id:Int) {
4 |
5 | var Name:String
6 | var Id:Int
7 | var Adres:String = ""
8 |
9 | init {
10 | this.Name = name
11 | this.Id = id
12 | }
13 | constructor(id:Int,name:String,adres:String):this(name,id) /*Secondery Constroctor*/
14 | {
15 | this.Adres = adres
16 | }
17 | }
18 |
19 | fun main(args: Array) {
20 | var taha = User("hasana",1)
21 | var hasan = User(1,"zundi","asd")
22 | println(hasan.Name +" " + hasan.Id + " " + hasan.Adres)
23 | }
--------------------------------------------------------------------------------
/Kotlin Temel/src/KotlinOperatorler/Operatorler.kt:
--------------------------------------------------------------------------------
1 | package KotlinOperatorler
2 |
3 | fun aritmetikOperator(){
4 | var sayi:Int = 1
5 | var sayi2:Int = 2
6 |
7 | println("Sayilarin Toplami: $sayi + $sayi2")
8 |
9 | println("Sayiların Bölme: ${ sayi.toDouble() / sayi2}")
10 | }
11 | fun atama(){
12 | var sayi = 5
13 |
14 | sayi += 2 /* sayi = sayi + 1*/
15 |
16 | sayi -= 1
17 |
18 | sayi /= 3
19 |
20 | println(message = "İlk Hali:$sayi Son hali:${sayi++} $sayi")
21 |
22 | }
23 | fun Mantiksal()
24 | {
25 | var booleanVal1 = true
26 | var booleanVal2 = false
27 |
28 | println(booleanVal1 && booleanVal2)
29 | }
--------------------------------------------------------------------------------
/Kotlin Temel/src/KotlinOzelFonksiyonlar/OperatorOverloading.kt:
--------------------------------------------------------------------------------
1 | package KotlinOzelFonksiyonlar
2 |
3 | class Baslik(var baslik:String){}
4 |
5 | fun main(args: Array) {
6 |
7 | var b1 = Baslik("Hello World")
8 | var b2 = Baslik("Taha")
9 |
10 | var b3 = b1 plus b2
11 | var b4 = b1 + b2
12 |
13 | println(b3.baslik)
14 | println(b4.baslik)
15 |
16 |
17 | }
18 |
19 | infix operator fun Baslik.plus(b2:Baslik) : Baslik{ /* operator overloading */
20 |
21 | var gecici = Baslik(this.baslik + " " + b2.baslik)
22 |
23 | return gecici
24 |
25 | }
--------------------------------------------------------------------------------
/Kotlin Temel/src/KotlinOzelFonksiyonlar/Recusive.kt:
--------------------------------------------------------------------------------
1 | package KotlinOzelFonksiyonlar
2 |
3 | fun main(args: Array) {
4 |
5 | println(fak(5,1))
6 | }
7 |
8 | fun fak(a:Int,current:Int):Int
9 | {
10 | var toplam = 0
11 | if( a != 1)
12 | {
13 | toplam = fak(a-1,current * a)
14 |
15 | }else
16 | {
17 | return current
18 | }
19 |
20 | return toplam
21 | }
--------------------------------------------------------------------------------
/Kotlin Temel/src/Main.kt:
--------------------------------------------------------------------------------
1 | import KotlinException.ZUNDI
2 | import KotlinOOP.*
3 |
4 |
5 | fun main(args: Array) {
6 | //KotlinOOP.main()
7 |
8 | 6.ZUNDI()
9 | }
--------------------------------------------------------------------------------