├── .editorconfig ├── .github └── FUNDING.yml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── app ├── .gitignore ├── build.gradle ├── fdroid │ └── release │ │ ├── dialer-fdroid-release.apk │ │ └── output-metadata.json ├── proguard-rules.pro ├── release │ ├── dialer-release.apk │ └── output-metadata.json └── src │ ├── debug │ └── res │ │ └── values │ │ └── strings.xml │ ├── fdroid │ └── res │ │ └── values │ │ └── bools.xml │ ├── main │ ├── AndroidManifest.xml │ ├── kotlin │ │ └── com │ │ │ └── simplemobiletools │ │ │ └── dialer │ │ │ ├── App.kt │ │ │ ├── activities │ │ │ ├── CallActivity.kt │ │ │ ├── ConferenceActivity.kt │ │ │ ├── DialerActivity.kt │ │ │ ├── DialpadActivity.kt │ │ │ ├── MainActivity.kt │ │ │ ├── ManageSpeedDialActivity.kt │ │ │ ├── SaveTrueCallerTokenActivity.kt │ │ │ ├── SettingsActivity.kt │ │ │ ├── SimpleActivity.kt │ │ │ └── SplashActivity.kt │ │ │ ├── adapters │ │ │ ├── ConferenceCallsAdapter.kt │ │ │ ├── ContactsAdapter.kt │ │ │ ├── FilterContactSourcesAdapter.kt │ │ │ ├── RecentCallsAdapter.kt │ │ │ ├── SpeedDialAdapter.kt │ │ │ └── ViewPagerAdapter.kt │ │ │ ├── dialogs │ │ │ ├── ChangeSortingDialog.kt │ │ │ ├── DynamicBottomSheetChooserDialog.kt │ │ │ ├── ExportCallHistoryDialog.kt │ │ │ ├── FilterContactSourcesDialog.kt │ │ │ ├── ManageVisibleTabsDialog.kt │ │ │ ├── SelectContactDialog.kt │ │ │ ├── SelectSIMDialog.kt │ │ │ └── ShowGroupedCallsDialog.kt │ │ │ ├── extensions │ │ │ ├── Activity.kt │ │ │ ├── Call.kt │ │ │ ├── Context.kt │ │ │ ├── EditText.kt │ │ │ ├── SharedPreferences.kt │ │ │ └── View.kt │ │ │ ├── fragments │ │ │ ├── ContactsFragment.kt │ │ │ ├── FavoritesFragment.kt │ │ │ ├── MyViewPagerFragment.kt │ │ │ └── RecentsFragment.kt │ │ │ ├── helpers │ │ │ ├── CallContactAvatarHelper.kt │ │ │ ├── CallContactHelper.kt │ │ │ ├── CallManager.kt │ │ │ ├── CallNotificationManager.kt │ │ │ ├── Config.kt │ │ │ ├── Constants.kt │ │ │ ├── Converters.kt │ │ │ ├── NetworkConnectionInterceptor.kt │ │ │ ├── RecentsHelper.kt │ │ │ ├── ToneGeneratorHelper.kt │ │ │ └── TruecallerNumberInfoHelper.kt │ │ │ ├── interfaces │ │ │ ├── RefreshItemsListener.kt │ │ │ ├── RemoveSpeedDialListener.kt │ │ │ └── TrueCallerApi.kt │ │ │ ├── models │ │ │ ├── AudioRoute.kt │ │ │ ├── CallContact.kt │ │ │ ├── PhoneAccountHandleModel.kt │ │ │ ├── RecentCall.kt │ │ │ ├── SIMAccount.kt │ │ │ ├── SpeedDial.kt │ │ │ └── truecaller │ │ │ │ ├── TrueCallerAddress.kt │ │ │ │ ├── TrueCallerDataResponse.kt │ │ │ │ ├── TrueCallerPhones.kt │ │ │ │ └── TrueCallerResponse.kt │ │ │ ├── receivers │ │ │ └── CallActionReceiver.kt │ │ │ ├── services │ │ │ ├── CallService.kt │ │ │ ├── SimpleCallScreeningService.kt │ │ │ └── TrueCallerService.kt │ │ │ └── truecaller │ │ │ ├── MainViewModel.kt │ │ │ └── MainViewModelFactory.kt │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ ├── circle_button_background_ripple.xml │ │ ├── ic_add_call_vector.xml │ │ ├── ic_bluetooth_audio_vector.xml │ │ ├── ic_call_accept.xml │ │ ├── ic_call_decline.xml │ │ ├── ic_call_merge_vector.xml │ │ ├── ic_call_split_vector.xml │ │ ├── ic_call_swap_vector.xml │ │ ├── ic_headset_vector.xml │ │ ├── ic_incoming_call_vector.xml │ │ ├── ic_launcher_background.xml │ │ ├── ic_launcher_monochrome.xml │ │ ├── ic_microphone_off_vector.xml │ │ ├── ic_outgoing_call_vector.xml │ │ ├── ic_phone_down_red_vector.xml │ │ ├── ic_phone_down_vector.xml │ │ ├── ic_phone_green_vector.xml │ │ ├── ic_volume_down_vector.xml │ │ ├── ic_volume_up_vector.xml │ │ ├── pulsing_background.xml │ │ ├── shortcut_dialpad.xml │ │ └── shortcut_image.xml │ │ ├── layout │ │ ├── activity_call.xml │ │ ├── activity_conference.xml │ │ ├── activity_dialpad.xml │ │ ├── activity_main.xml │ │ ├── activity_manage_speed_dial.xml │ │ ├── activity_settings.xml │ │ ├── activity_view_number_truecaller_info.xml │ │ ├── call_notification.xml │ │ ├── dialog_add_truecaller_token.xml │ │ ├── dialog_change_sorting.xml │ │ ├── dialog_export_call_history.xml │ │ ├── dialog_filter_contact_sources.xml │ │ ├── dialog_manage_visible_tabs.xml │ │ ├── dialog_select_contact.xml │ │ ├── dialog_select_sim.xml │ │ ├── dialog_show_grouped_calls.xml │ │ ├── dialpad.xml │ │ ├── fragment_contacts.xml │ │ ├── fragment_favorites.xml │ │ ├── fragment_letters_layout.xml │ │ ├── fragment_recents.xml │ │ ├── item_conference_call.xml │ │ ├── item_filter_contact_source.xml │ │ ├── item_recent_call.xml │ │ ├── item_speed_dial.xml │ │ └── layout_simple_recycler_view.xml │ │ ├── menu │ │ ├── cab_contacts.xml │ │ ├── cab_recent_calls.xml │ │ ├── menu.xml │ │ ├── menu_dialpad.xml │ │ └── menu_recent_item_options.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ ├── ic_launcher_amber.xml │ │ ├── ic_launcher_blue.xml │ │ ├── ic_launcher_blue_grey.xml │ │ ├── ic_launcher_brown.xml │ │ ├── ic_launcher_cyan.xml │ │ ├── ic_launcher_deep_orange.xml │ │ ├── ic_launcher_deep_purple.xml │ │ ├── ic_launcher_green.xml │ │ ├── ic_launcher_grey_black.xml │ │ ├── ic_launcher_indigo.xml │ │ ├── ic_launcher_light_blue.xml │ │ ├── ic_launcher_light_green.xml │ │ ├── ic_launcher_lime.xml │ │ ├── ic_launcher_pink.xml │ │ ├── ic_launcher_purple.xml │ │ ├── ic_launcher_red.xml │ │ ├── ic_launcher_teal.xml │ │ └── ic_launcher_yellow.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_amber.png │ │ ├── ic_launcher_blue.png │ │ ├── ic_launcher_blue_grey.png │ │ ├── ic_launcher_brown.png │ │ ├── ic_launcher_cyan.png │ │ ├── ic_launcher_deep_orange.png │ │ ├── ic_launcher_deep_purple.png │ │ ├── ic_launcher_foreground.png │ │ ├── ic_launcher_green.png │ │ ├── ic_launcher_grey_black.png │ │ ├── ic_launcher_indigo.png │ │ ├── ic_launcher_light_blue.png │ │ ├── ic_launcher_light_green.png │ │ ├── ic_launcher_lime.png │ │ ├── ic_launcher_pink.png │ │ ├── ic_launcher_purple.png │ │ ├── ic_launcher_red.png │ │ ├── ic_launcher_teal.png │ │ └── ic_launcher_yellow.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_amber.png │ │ ├── ic_launcher_blue.png │ │ ├── ic_launcher_blue_grey.png │ │ ├── ic_launcher_brown.png │ │ ├── ic_launcher_cyan.png │ │ ├── ic_launcher_deep_orange.png │ │ ├── ic_launcher_deep_purple.png │ │ ├── ic_launcher_foreground.png │ │ ├── ic_launcher_green.png │ │ ├── ic_launcher_grey_black.png │ │ ├── ic_launcher_indigo.png │ │ ├── ic_launcher_light_blue.png │ │ ├── ic_launcher_light_green.png │ │ ├── ic_launcher_lime.png │ │ ├── ic_launcher_pink.png │ │ ├── ic_launcher_purple.png │ │ ├── ic_launcher_red.png │ │ ├── ic_launcher_teal.png │ │ └── ic_launcher_yellow.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_amber.png │ │ ├── ic_launcher_blue.png │ │ ├── ic_launcher_blue_grey.png │ │ ├── ic_launcher_brown.png │ │ ├── ic_launcher_cyan.png │ │ ├── ic_launcher_deep_orange.png │ │ ├── ic_launcher_deep_purple.png │ │ ├── ic_launcher_foreground.png │ │ ├── ic_launcher_green.png │ │ ├── ic_launcher_grey_black.png │ │ ├── ic_launcher_indigo.png │ │ ├── ic_launcher_light_blue.png │ │ ├── ic_launcher_light_green.png │ │ ├── ic_launcher_lime.png │ │ ├── ic_launcher_pink.png │ │ ├── ic_launcher_purple.png │ │ ├── ic_launcher_red.png │ │ ├── ic_launcher_teal.png │ │ └── ic_launcher_yellow.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_amber.png │ │ ├── ic_launcher_blue.png │ │ ├── ic_launcher_blue_grey.png │ │ ├── ic_launcher_brown.png │ │ ├── ic_launcher_cyan.png │ │ ├── ic_launcher_deep_orange.png │ │ ├── ic_launcher_deep_purple.png │ │ ├── ic_launcher_foreground.png │ │ ├── ic_launcher_green.png │ │ ├── ic_launcher_grey_black.png │ │ ├── ic_launcher_indigo.png │ │ ├── ic_launcher_light_blue.png │ │ ├── ic_launcher_light_green.png │ │ ├── ic_launcher_lime.png │ │ ├── ic_launcher_pink.png │ │ ├── ic_launcher_purple.png │ │ ├── ic_launcher_red.png │ │ ├── ic_launcher_teal.png │ │ └── ic_launcher_yellow.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_amber.png │ │ ├── ic_launcher_blue.png │ │ ├── ic_launcher_blue_grey.png │ │ ├── ic_launcher_brown.png │ │ ├── ic_launcher_cyan.png │ │ ├── ic_launcher_deep_orange.png │ │ ├── ic_launcher_deep_purple.png │ │ ├── ic_launcher_foreground.png │ │ ├── ic_launcher_green.png │ │ ├── ic_launcher_grey_black.png │ │ ├── ic_launcher_indigo.png │ │ ├── ic_launcher_light_blue.png │ │ ├── ic_launcher_light_green.png │ │ ├── ic_launcher_lime.png │ │ ├── ic_launcher_pink.png │ │ ├── ic_launcher_purple.png │ │ ├── ic_launcher_red.png │ │ ├── ic_launcher_teal.png │ │ └── ic_launcher_yellow.png │ │ ├── values-ar │ │ └── strings.xml │ │ ├── values-az │ │ └── strings.xml │ │ ├── values-be │ │ └── strings.xml │ │ ├── values-bg │ │ └── strings.xml │ │ ├── values-ca │ │ └── strings.xml │ │ ├── values-cs │ │ └── strings.xml │ │ ├── values-da │ │ └── strings.xml │ │ ├── values-de │ │ └── strings.xml │ │ ├── values-el │ │ └── strings.xml │ │ ├── values-eo │ │ └── strings.xml │ │ ├── values-es │ │ └── strings.xml │ │ ├── values-et │ │ └── strings.xml │ │ ├── values-fi │ │ └── strings.xml │ │ ├── values-fr │ │ └── strings.xml │ │ ├── values-gl │ │ └── strings.xml │ │ ├── values-hr │ │ └── strings.xml │ │ ├── values-hu │ │ └── strings.xml │ │ ├── values-in │ │ └── strings.xml │ │ ├── values-it │ │ └── strings.xml │ │ ├── values-iw │ │ └── strings.xml │ │ ├── values-ja │ │ └── strings.xml │ │ ├── values-lt │ │ └── strings.xml │ │ ├── values-ml │ │ └── strings.xml │ │ ├── values-nb-rNO │ │ └── strings.xml │ │ ├── values-nl │ │ └── strings.xml │ │ ├── values-pa-rPK │ │ └── strings.xml │ │ ├── values-pl │ │ └── strings.xml │ │ ├── values-pt-rBR │ │ └── strings.xml │ │ ├── values-pt │ │ └── strings.xml │ │ ├── values-ro │ │ └── strings.xml │ │ ├── values-ru │ │ └── strings.xml │ │ ├── values-sk │ │ └── strings.xml │ │ ├── values-sl │ │ └── strings.xml │ │ ├── values-sr │ │ └── strings.xml │ │ ├── values-sv │ │ └── strings.xml │ │ ├── values-th │ │ └── strings.xml │ │ ├── values-tr │ │ └── strings.xml │ │ ├── values-uk │ │ └── strings.xml │ │ ├── values-vi │ │ └── strings.xml │ │ ├── values-zh-rCN │ │ └── strings.xml │ │ ├── values-zh-rTW │ │ └── strings.xml │ │ └── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── donottranslate.xml │ │ ├── integers.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── prepaid │ └── res │ └── values │ └── bools.xml ├── fastlane ├── Appfile ├── Fastfile └── metadata │ └── android │ ├── ar │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── bg │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── ca │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── cs-CZ │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── de-DE │ ├── full_description.txt │ ├── images │ │ └── phoneScreenshots │ │ │ ├── 1_de-DE.jpeg │ │ │ ├── 2_de-DE.jpeg │ │ │ ├── 3_de-DE.jpeg │ │ │ └── 4_de-DE.jpeg │ ├── short_description.txt │ └── title.txt │ ├── el-GR │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── en-GB │ ├── full_description.txt │ ├── images │ │ ├── featureGraphic.jpeg │ │ ├── phoneScreenshots │ │ │ ├── 1_en-GB.jpeg │ │ │ ├── 2_en-GB.jpeg │ │ │ ├── 3_en-GB.jpeg │ │ │ └── 4_en-GB.jpeg │ │ └── tvBanner.png │ ├── short_description.txt │ └── title.txt │ ├── en-IN │ ├── full_description.txt │ ├── images │ │ └── phoneScreenshots │ │ │ ├── 1_en-IN.jpeg │ │ │ ├── 2_en-IN.jpeg │ │ │ ├── 3_en-IN.jpeg │ │ │ └── 4_en-IN.jpeg │ ├── short_description.txt │ └── title.txt │ ├── en-US │ ├── changelogs │ │ ├── 44.txt │ │ ├── 45.txt │ │ ├── 46.txt │ │ ├── 47.txt │ │ ├── 48.txt │ │ ├── 49.txt │ │ ├── 50.txt │ │ ├── 51.txt │ │ ├── 52.txt │ │ ├── 53.txt │ │ ├── 54.txt │ │ ├── 55.txt │ │ └── 56.txt │ ├── full_description.txt │ ├── images │ │ ├── featureGraphic.jpeg │ │ ├── icon.png │ │ ├── phoneScreenshots │ │ │ ├── 1_en-US.jpeg │ │ │ ├── 2_en-US.jpeg │ │ │ ├── 3_en-US.jpeg │ │ │ └── 4_en-US.jpeg │ │ ├── raw_screenshots │ │ │ ├── app_5.png │ │ │ ├── search.png │ │ │ ├── truecaller_number_info_1.png │ │ │ └── truecaller_number_info_2.png │ │ └── tvBanner.png │ ├── short_description.txt │ └── title.txt │ ├── es-ES │ ├── full_description.txt │ ├── images │ │ └── phoneScreenshots │ │ │ ├── 1_es-ES.jpeg │ │ │ ├── 2_es-ES.jpeg │ │ │ ├── 3_es-ES.jpeg │ │ │ └── 4_es-ES.jpeg │ ├── short_description.txt │ └── title.txt │ ├── es-US │ ├── full_description.txt │ ├── images │ │ └── phoneScreenshots │ │ │ ├── 1_es-US.jpeg │ │ │ ├── 2_es-US.jpeg │ │ │ ├── 3_es-US.jpeg │ │ │ └── 4_es-US.jpeg │ ├── short_description.txt │ └── title.txt │ ├── et │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── fi-FI │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── fr-FR │ ├── full_description.txt │ ├── images │ │ ├── icon.png │ │ └── phoneScreenshots │ │ │ ├── 1_fr-FR.jpeg │ │ │ ├── 2_fr-FR.jpeg │ │ │ ├── 3_fr-FR.jpeg │ │ │ └── 4_fr-FR.jpeg │ ├── short_description.txt │ └── title.txt │ ├── gl-ES │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── hi-IN │ ├── full_description.txt │ ├── images │ │ └── phoneScreenshots │ │ │ ├── 1_hi-IN.jpeg │ │ │ ├── 2_hi-IN.jpeg │ │ │ ├── 3_hi-IN.jpeg │ │ │ └── 4_hi-IN.jpeg │ ├── short_description.txt │ └── title.txt │ ├── hr │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── hu-HU │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── id │ ├── full_description.txt │ ├── images │ │ └── phoneScreenshots │ │ │ ├── 1_id.jpeg │ │ │ ├── 2_id.jpeg │ │ │ ├── 3_id.jpeg │ │ │ └── 4_id.jpeg │ ├── short_description.txt │ └── title.txt │ ├── it-IT │ ├── full_description.txt │ ├── images │ │ └── phoneScreenshots │ │ │ ├── 1_it-IT.jpeg │ │ │ ├── 2_it-IT.jpeg │ │ │ ├── 3_it-IT.jpeg │ │ │ └── 4_it-IT.jpeg │ ├── short_description.txt │ └── title.txt │ ├── iw-IL │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── ja-JP │ ├── full_description.txt │ ├── images │ │ └── phoneScreenshots │ │ │ ├── 1_ja-JP.jpeg │ │ │ ├── 2_ja-JP.jpeg │ │ │ ├── 3_ja-JP.jpeg │ │ │ └── 4_ja-JP.jpeg │ ├── short_description.txt │ └── title.txt │ ├── ko-KR │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── nl-NL │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── no-NO │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── pl-PL │ ├── full_description.txt │ ├── images │ │ └── phoneScreenshots │ │ │ ├── 1_pl-PL.jpeg │ │ │ ├── 2_pl-PL.jpeg │ │ │ ├── 3_pl-PL.jpeg │ │ │ └── 4_pl-PL.jpeg │ ├── short_description.txt │ └── title.txt │ ├── pt-BR │ ├── full_description.txt │ ├── images │ │ └── phoneScreenshots │ │ │ ├── 1_pt-BR.jpeg │ │ │ ├── 2_pt-BR.jpeg │ │ │ ├── 3_pt-BR.jpeg │ │ │ └── 4_pt-BR.jpeg │ ├── short_description.txt │ └── title.txt │ ├── pt-PT │ ├── full_description.txt │ ├── images │ │ └── phoneScreenshots │ │ │ ├── 1_pt-PT.jpeg │ │ │ ├── 2_pt-PT.jpeg │ │ │ ├── 3_pt-PT.jpeg │ │ │ └── 4_pt-PT.jpeg │ ├── short_description.txt │ └── title.txt │ ├── ro │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── ru-RU │ ├── full_description.txt │ ├── images │ │ └── phoneScreenshots │ │ │ ├── 1_ru-RU.jpeg │ │ │ ├── 2_ru-RU.jpeg │ │ │ ├── 3_ru-RU.jpeg │ │ │ └── 4_ru-RU.jpeg │ ├── short_description.txt │ └── title.txt │ ├── sk │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── sl │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── sr │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── sv-SE │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── tr-TR │ ├── full_description.txt │ ├── images │ │ └── phoneScreenshots │ │ │ ├── 1_tr-TR.jpeg │ │ │ ├── 2_tr-TR.jpeg │ │ │ ├── 3_tr-TR.jpeg │ │ │ └── 4_tr-TR.jpeg │ ├── short_description.txt │ └── title.txt │ ├── uk │ ├── full_description.txt │ ├── images │ │ └── phoneScreenshots │ │ │ ├── 1_uk.jpeg │ │ │ ├── 2_uk.jpeg │ │ │ ├── 3_uk.jpeg │ │ │ └── 4_uk.jpeg │ ├── short_description.txt │ └── title.txt │ ├── zh-CN │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ └── zh-TW │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── graphics ├── app_icon.png ├── featureGraphic.jpg ├── featureGraphic.xcf ├── icon.png ├── icon_orange.jpg ├── promo_graphic.png ├── square.png ├── square.xcf └── tv_banner.png ├── keystore.properties_sample └── settings.gradle /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/fdroid/release/dialer-fdroid-release.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/fdroid/release/dialer-fdroid-release.apk -------------------------------------------------------------------------------- /app/fdroid/release/output-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/fdroid/release/output-metadata.json -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/release/dialer-release.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/release/dialer-release.apk -------------------------------------------------------------------------------- /app/release/output-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/release/output-metadata.json -------------------------------------------------------------------------------- /app/src/debug/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/debug/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/fdroid/res/values/bools.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/fdroid/res/values/bools.xml -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/dialer/App.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/kotlin/com/simplemobiletools/dialer/App.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/dialer/activities/CallActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/kotlin/com/simplemobiletools/dialer/activities/CallActivity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/dialer/activities/ConferenceActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/kotlin/com/simplemobiletools/dialer/activities/ConferenceActivity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/dialer/activities/DialerActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/kotlin/com/simplemobiletools/dialer/activities/DialerActivity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/dialer/activities/DialpadActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/kotlin/com/simplemobiletools/dialer/activities/DialpadActivity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/dialer/activities/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/kotlin/com/simplemobiletools/dialer/activities/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/dialer/activities/ManageSpeedDialActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/kotlin/com/simplemobiletools/dialer/activities/ManageSpeedDialActivity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/dialer/activities/SaveTrueCallerTokenActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/kotlin/com/simplemobiletools/dialer/activities/SaveTrueCallerTokenActivity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/dialer/activities/SettingsActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/kotlin/com/simplemobiletools/dialer/activities/SettingsActivity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/dialer/activities/SimpleActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/kotlin/com/simplemobiletools/dialer/activities/SimpleActivity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/dialer/activities/SplashActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/kotlin/com/simplemobiletools/dialer/activities/SplashActivity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/dialer/adapters/ConferenceCallsAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/kotlin/com/simplemobiletools/dialer/adapters/ConferenceCallsAdapter.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/dialer/adapters/ContactsAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/kotlin/com/simplemobiletools/dialer/adapters/ContactsAdapter.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/dialer/adapters/FilterContactSourcesAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/kotlin/com/simplemobiletools/dialer/adapters/FilterContactSourcesAdapter.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/dialer/adapters/RecentCallsAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/kotlin/com/simplemobiletools/dialer/adapters/RecentCallsAdapter.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/dialer/adapters/SpeedDialAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/kotlin/com/simplemobiletools/dialer/adapters/SpeedDialAdapter.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/dialer/adapters/ViewPagerAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/kotlin/com/simplemobiletools/dialer/adapters/ViewPagerAdapter.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/dialer/dialogs/ChangeSortingDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/kotlin/com/simplemobiletools/dialer/dialogs/ChangeSortingDialog.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/dialer/dialogs/DynamicBottomSheetChooserDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/kotlin/com/simplemobiletools/dialer/dialogs/DynamicBottomSheetChooserDialog.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/dialer/dialogs/ExportCallHistoryDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/kotlin/com/simplemobiletools/dialer/dialogs/ExportCallHistoryDialog.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/dialer/dialogs/FilterContactSourcesDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/kotlin/com/simplemobiletools/dialer/dialogs/FilterContactSourcesDialog.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/dialer/dialogs/ManageVisibleTabsDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/kotlin/com/simplemobiletools/dialer/dialogs/ManageVisibleTabsDialog.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/dialer/dialogs/SelectContactDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/kotlin/com/simplemobiletools/dialer/dialogs/SelectContactDialog.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/dialer/dialogs/SelectSIMDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/kotlin/com/simplemobiletools/dialer/dialogs/SelectSIMDialog.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/dialer/dialogs/ShowGroupedCallsDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/kotlin/com/simplemobiletools/dialer/dialogs/ShowGroupedCallsDialog.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/dialer/extensions/Activity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/kotlin/com/simplemobiletools/dialer/extensions/Activity.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/dialer/extensions/Call.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/kotlin/com/simplemobiletools/dialer/extensions/Call.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/dialer/extensions/Context.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/kotlin/com/simplemobiletools/dialer/extensions/Context.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/dialer/extensions/EditText.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/kotlin/com/simplemobiletools/dialer/extensions/EditText.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/dialer/extensions/SharedPreferences.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/kotlin/com/simplemobiletools/dialer/extensions/SharedPreferences.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/dialer/extensions/View.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/kotlin/com/simplemobiletools/dialer/extensions/View.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/dialer/fragments/ContactsFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/kotlin/com/simplemobiletools/dialer/fragments/ContactsFragment.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/dialer/fragments/FavoritesFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/kotlin/com/simplemobiletools/dialer/fragments/FavoritesFragment.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/dialer/fragments/MyViewPagerFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/kotlin/com/simplemobiletools/dialer/fragments/MyViewPagerFragment.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/dialer/fragments/RecentsFragment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/kotlin/com/simplemobiletools/dialer/fragments/RecentsFragment.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/dialer/helpers/CallContactAvatarHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/kotlin/com/simplemobiletools/dialer/helpers/CallContactAvatarHelper.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/dialer/helpers/CallContactHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/kotlin/com/simplemobiletools/dialer/helpers/CallContactHelper.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/dialer/helpers/CallManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/kotlin/com/simplemobiletools/dialer/helpers/CallManager.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/dialer/helpers/CallNotificationManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/kotlin/com/simplemobiletools/dialer/helpers/CallNotificationManager.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/dialer/helpers/Config.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/kotlin/com/simplemobiletools/dialer/helpers/Config.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/dialer/helpers/Constants.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/kotlin/com/simplemobiletools/dialer/helpers/Constants.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/dialer/helpers/Converters.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/kotlin/com/simplemobiletools/dialer/helpers/Converters.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/dialer/helpers/NetworkConnectionInterceptor.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/kotlin/com/simplemobiletools/dialer/helpers/NetworkConnectionInterceptor.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/dialer/helpers/RecentsHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/kotlin/com/simplemobiletools/dialer/helpers/RecentsHelper.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/dialer/helpers/ToneGeneratorHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/kotlin/com/simplemobiletools/dialer/helpers/ToneGeneratorHelper.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/dialer/helpers/TruecallerNumberInfoHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/kotlin/com/simplemobiletools/dialer/helpers/TruecallerNumberInfoHelper.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/dialer/interfaces/RefreshItemsListener.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/kotlin/com/simplemobiletools/dialer/interfaces/RefreshItemsListener.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/dialer/interfaces/RemoveSpeedDialListener.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/kotlin/com/simplemobiletools/dialer/interfaces/RemoveSpeedDialListener.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/dialer/interfaces/TrueCallerApi.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/kotlin/com/simplemobiletools/dialer/interfaces/TrueCallerApi.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/dialer/models/AudioRoute.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/kotlin/com/simplemobiletools/dialer/models/AudioRoute.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/dialer/models/CallContact.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/kotlin/com/simplemobiletools/dialer/models/CallContact.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/dialer/models/PhoneAccountHandleModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/kotlin/com/simplemobiletools/dialer/models/PhoneAccountHandleModel.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/dialer/models/RecentCall.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/kotlin/com/simplemobiletools/dialer/models/RecentCall.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/dialer/models/SIMAccount.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/kotlin/com/simplemobiletools/dialer/models/SIMAccount.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/dialer/models/SpeedDial.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/kotlin/com/simplemobiletools/dialer/models/SpeedDial.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/dialer/models/truecaller/TrueCallerAddress.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/kotlin/com/simplemobiletools/dialer/models/truecaller/TrueCallerAddress.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/dialer/models/truecaller/TrueCallerDataResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/kotlin/com/simplemobiletools/dialer/models/truecaller/TrueCallerDataResponse.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/dialer/models/truecaller/TrueCallerPhones.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/kotlin/com/simplemobiletools/dialer/models/truecaller/TrueCallerPhones.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/dialer/models/truecaller/TrueCallerResponse.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/kotlin/com/simplemobiletools/dialer/models/truecaller/TrueCallerResponse.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/dialer/receivers/CallActionReceiver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/kotlin/com/simplemobiletools/dialer/receivers/CallActionReceiver.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/dialer/services/CallService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/kotlin/com/simplemobiletools/dialer/services/CallService.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/dialer/services/SimpleCallScreeningService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/kotlin/com/simplemobiletools/dialer/services/SimpleCallScreeningService.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/dialer/services/TrueCallerService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/kotlin/com/simplemobiletools/dialer/services/TrueCallerService.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/dialer/truecaller/MainViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/kotlin/com/simplemobiletools/dialer/truecaller/MainViewModel.kt -------------------------------------------------------------------------------- /app/src/main/kotlin/com/simplemobiletools/dialer/truecaller/MainViewModelFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/kotlin/com/simplemobiletools/dialer/truecaller/MainViewModelFactory.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/circle_button_background_ripple.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/drawable/circle_button_background_ripple.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_add_call_vector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/drawable/ic_add_call_vector.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_bluetooth_audio_vector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/drawable/ic_bluetooth_audio_vector.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_call_accept.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/drawable/ic_call_accept.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_call_decline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/drawable/ic_call_decline.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_call_merge_vector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/drawable/ic_call_merge_vector.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_call_split_vector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/drawable/ic_call_split_vector.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_call_swap_vector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/drawable/ic_call_swap_vector.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_headset_vector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/drawable/ic_headset_vector.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_incoming_call_vector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/drawable/ic_incoming_call_vector.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_monochrome.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/drawable/ic_launcher_monochrome.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_microphone_off_vector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/drawable/ic_microphone_off_vector.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_outgoing_call_vector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/drawable/ic_outgoing_call_vector.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_phone_down_red_vector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/drawable/ic_phone_down_red_vector.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_phone_down_vector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/drawable/ic_phone_down_vector.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_phone_green_vector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/drawable/ic_phone_green_vector.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_volume_down_vector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/drawable/ic_volume_down_vector.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_volume_up_vector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/drawable/ic_volume_up_vector.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/pulsing_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/drawable/pulsing_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/shortcut_dialpad.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/drawable/shortcut_dialpad.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/shortcut_image.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/drawable/shortcut_image.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_call.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/layout/activity_call.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_conference.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/layout/activity_conference.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_dialpad.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/layout/activity_dialpad.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_manage_speed_dial.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/layout/activity_manage_speed_dial.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/layout/activity_settings.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_view_number_truecaller_info.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/layout/activity_view_number_truecaller_info.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/call_notification.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/layout/call_notification.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/dialog_add_truecaller_token.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/layout/dialog_add_truecaller_token.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/dialog_change_sorting.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/layout/dialog_change_sorting.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/dialog_export_call_history.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/layout/dialog_export_call_history.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/dialog_filter_contact_sources.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/layout/dialog_filter_contact_sources.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/dialog_manage_visible_tabs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/layout/dialog_manage_visible_tabs.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/dialog_select_contact.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/layout/dialog_select_contact.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/dialog_select_sim.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/layout/dialog_select_sim.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/dialog_show_grouped_calls.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/layout/dialog_show_grouped_calls.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/dialpad.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/layout/dialpad.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_contacts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/layout/fragment_contacts.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_favorites.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/layout/fragment_favorites.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_letters_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/layout/fragment_letters_layout.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_recents.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/layout/fragment_recents.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/item_conference_call.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/layout/item_conference_call.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/item_filter_contact_source.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/layout/item_filter_contact_source.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/item_recent_call.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/layout/item_recent_call.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/item_speed_dial.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/layout/item_speed_dial.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/layout_simple_recycler_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/layout/layout_simple_recycler_view.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/cab_contacts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/menu/cab_contacts.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/cab_recent_calls.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/menu/cab_recent_calls.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/menu/menu.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/menu_dialpad.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/menu/menu_dialpad.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/menu_recent_item_options.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/menu/menu_recent_item_options.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_amber.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_amber.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_blue.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_blue.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_blue_grey.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_blue_grey.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_brown.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_brown.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_cyan.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_cyan.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_deep_orange.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_deep_orange.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_deep_purple.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_deep_purple.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_green.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_green.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_grey_black.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_grey_black.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_indigo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_indigo.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_light_blue.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_light_blue.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_light_green.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_light_green.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_lime.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_lime.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_pink.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_pink.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_purple.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_purple.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_red.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_red.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_teal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_teal.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_yellow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_yellow.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_amber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_amber.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_blue.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_blue_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_blue_grey.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_brown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_brown.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_cyan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_cyan.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_deep_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_deep_orange.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_deep_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_deep_purple.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_green.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_grey_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_grey_black.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_indigo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_indigo.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_light_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_light_blue.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_light_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_light_green.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_lime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_lime.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_pink.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_purple.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_red.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_teal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_teal.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_yellow.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_amber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_amber.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_blue.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_blue_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_blue_grey.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_brown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_brown.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_cyan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_cyan.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_deep_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_deep_orange.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_deep_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_deep_purple.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_green.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_grey_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_grey_black.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_indigo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_indigo.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_light_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_light_blue.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_light_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_light_green.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_lime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_lime.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_pink.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_purple.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_red.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_teal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_teal.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_yellow.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_amber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_amber.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_blue.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_blue_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_blue_grey.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_brown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_brown.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_cyan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_cyan.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_deep_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_deep_orange.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_deep_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_deep_purple.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_green.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_grey_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_grey_black.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_indigo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_indigo.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_light_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_light_blue.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_light_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_light_green.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_lime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_lime.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_pink.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_purple.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_red.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_teal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_teal.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_yellow.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_amber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_amber.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_blue.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_blue_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_blue_grey.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_brown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_brown.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_cyan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_cyan.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_deep_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_deep_orange.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_deep_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_deep_purple.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_green.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_grey_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_grey_black.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_indigo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_indigo.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_light_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_light_blue.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_light_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_light_green.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_lime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_lime.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_pink.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_purple.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_red.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_teal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_teal.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_yellow.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_amber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_amber.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_blue.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_blue_grey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_blue_grey.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_brown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_brown.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_cyan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_cyan.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_deep_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_deep_orange.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_deep_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_deep_purple.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_green.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_grey_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_grey_black.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_indigo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_indigo.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_light_blue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_light_blue.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_light_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_light_green.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_lime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_lime.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_pink.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_purple.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_red.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_teal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_teal.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_yellow.png -------------------------------------------------------------------------------- /app/src/main/res/values-ar/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/values-ar/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-az/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/values-az/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-be/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/values-be/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-bg/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/values-bg/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ca/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/values-ca/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-cs/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/values-cs/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-da/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/values-da/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-de/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/values-de/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-el/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/values-el/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-eo/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/values-eo/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-es/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/values-es/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-et/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/values-et/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-fi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/values-fi/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-fr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/values-fr/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-gl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/values-gl/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-hr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/values-hr/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-hu/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/values-hu/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-in/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/values-in/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-it/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/values-it/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-iw/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/values-iw/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ja/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/values-ja/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-lt/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/values-lt/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ml/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/values-ml/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-nb-rNO/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/values-nb-rNO/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-nl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/values-nl/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-pa-rPK/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/values-pa-rPK/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-pl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/values-pl/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-pt-rBR/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/values-pt-rBR/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-pt/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/values-pt/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ro/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/values-ro/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-ru/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/values-ru/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-sk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/values-sk/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-sl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/values-sl/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-sr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/values-sr/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-sv/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/values-sv/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-th/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/values-th/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-tr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/values-tr/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-uk/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/values-uk/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-vi/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/values-vi/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-zh-rCN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/values-zh-rCN/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values-zh-rTW/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/values-zh-rTW/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/donottranslate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/values/donottranslate.xml -------------------------------------------------------------------------------- /app/src/main/res/values/integers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/values/integers.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/prepaid/res/values/bools.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/app/src/prepaid/res/values/bools.xml -------------------------------------------------------------------------------- /fastlane/Appfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/Appfile -------------------------------------------------------------------------------- /fastlane/Fastfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/Fastfile -------------------------------------------------------------------------------- /fastlane/metadata/android/ar/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/ar/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ar/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/ar/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ar/title.txt: -------------------------------------------------------------------------------- 1 | Simple Dialer 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/bg/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/bg/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/bg/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/bg/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/bg/title.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/bg/title.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ca/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/ca/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ca/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/ca/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ca/title.txt: -------------------------------------------------------------------------------- 1 | Simple Dialer 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/cs-CZ/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/cs-CZ/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/cs-CZ/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/cs-CZ/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/cs-CZ/title.txt: -------------------------------------------------------------------------------- 1 | Jednoduchý telefon 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/de-DE/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/de-DE/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/de-DE/images/phoneScreenshots/1_de-DE.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/de-DE/images/phoneScreenshots/1_de-DE.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/de-DE/images/phoneScreenshots/2_de-DE.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/de-DE/images/phoneScreenshots/2_de-DE.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/de-DE/images/phoneScreenshots/3_de-DE.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/de-DE/images/phoneScreenshots/3_de-DE.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/de-DE/images/phoneScreenshots/4_de-DE.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/de-DE/images/phoneScreenshots/4_de-DE.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/de-DE/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/de-DE/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/de-DE/title.txt: -------------------------------------------------------------------------------- 1 | Schlichtes Telefon 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/el-GR/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/el-GR/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/el-GR/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/el-GR/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/el-GR/title.txt: -------------------------------------------------------------------------------- 1 | Απλή κλήση -------------------------------------------------------------------------------- /fastlane/metadata/android/en-GB/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/en-GB/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-GB/images/featureGraphic.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/en-GB/images/featureGraphic.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/en-GB/images/phoneScreenshots/1_en-GB.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/en-GB/images/phoneScreenshots/1_en-GB.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/en-GB/images/phoneScreenshots/2_en-GB.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/en-GB/images/phoneScreenshots/2_en-GB.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/en-GB/images/phoneScreenshots/3_en-GB.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/en-GB/images/phoneScreenshots/3_en-GB.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/en-GB/images/phoneScreenshots/4_en-GB.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/en-GB/images/phoneScreenshots/4_en-GB.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/en-GB/images/tvBanner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/en-GB/images/tvBanner.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-GB/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/en-GB/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-GB/title.txt: -------------------------------------------------------------------------------- 1 | Simple Dialer -------------------------------------------------------------------------------- /fastlane/metadata/android/en-IN/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/en-IN/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-IN/images/phoneScreenshots/1_en-IN.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/en-IN/images/phoneScreenshots/1_en-IN.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/en-IN/images/phoneScreenshots/2_en-IN.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/en-IN/images/phoneScreenshots/2_en-IN.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/en-IN/images/phoneScreenshots/3_en-IN.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/en-IN/images/phoneScreenshots/3_en-IN.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/en-IN/images/phoneScreenshots/4_en-IN.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/en-IN/images/phoneScreenshots/4_en-IN.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/en-IN/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/en-IN/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-IN/title.txt: -------------------------------------------------------------------------------- 1 | Simple Dialer -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/44.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/en-US/changelogs/44.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/45.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/en-US/changelogs/45.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/46.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/en-US/changelogs/46.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/47.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/en-US/changelogs/47.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/48.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/en-US/changelogs/48.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/49.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/en-US/changelogs/49.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/50.txt: -------------------------------------------------------------------------------- 1 | * Fixed a search glitch on some devices 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/51.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/en-US/changelogs/51.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/52.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/en-US/changelogs/52.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/53.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/en-US/changelogs/53.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/54.txt: -------------------------------------------------------------------------------- 1 | * Added some stability, translation and UX improvements 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/55.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/en-US/changelogs/55.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/56.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/en-US/changelogs/56.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/en-US/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/featureGraphic.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/en-US/images/featureGraphic.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/en-US/images/icon.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/1_en-US.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/1_en-US.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/2_en-US.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/2_en-US.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/3_en-US.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/3_en-US.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/4_en-US.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/4_en-US.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/raw_screenshots/app_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/en-US/images/raw_screenshots/app_5.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/raw_screenshots/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/en-US/images/raw_screenshots/search.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/raw_screenshots/truecaller_number_info_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/en-US/images/raw_screenshots/truecaller_number_info_1.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/raw_screenshots/truecaller_number_info_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/en-US/images/raw_screenshots/truecaller_number_info_2.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/tvBanner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/en-US/images/tvBanner.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/en-US/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/title.txt: -------------------------------------------------------------------------------- 1 | Simple Dialer -------------------------------------------------------------------------------- /fastlane/metadata/android/es-ES/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/es-ES/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/es-ES/images/phoneScreenshots/1_es-ES.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/es-ES/images/phoneScreenshots/1_es-ES.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/es-ES/images/phoneScreenshots/2_es-ES.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/es-ES/images/phoneScreenshots/2_es-ES.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/es-ES/images/phoneScreenshots/3_es-ES.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/es-ES/images/phoneScreenshots/3_es-ES.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/es-ES/images/phoneScreenshots/4_es-ES.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/es-ES/images/phoneScreenshots/4_es-ES.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/es-ES/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/es-ES/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/es-ES/title.txt: -------------------------------------------------------------------------------- 1 | Marcador simple -------------------------------------------------------------------------------- /fastlane/metadata/android/es-US/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/es-US/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/es-US/images/phoneScreenshots/1_es-US.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/es-US/images/phoneScreenshots/1_es-US.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/es-US/images/phoneScreenshots/2_es-US.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/es-US/images/phoneScreenshots/2_es-US.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/es-US/images/phoneScreenshots/3_es-US.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/es-US/images/phoneScreenshots/3_es-US.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/es-US/images/phoneScreenshots/4_es-US.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/es-US/images/phoneScreenshots/4_es-US.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/es-US/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/es-US/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/es-US/title.txt: -------------------------------------------------------------------------------- 1 | Marcador simple: Illamadas -------------------------------------------------------------------------------- /fastlane/metadata/android/et/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/et/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/et/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/et/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/et/title.txt: -------------------------------------------------------------------------------- 1 | Lihtne telefon 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/fi-FI/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/fi-FI/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/fi-FI/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/fi-FI/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/fi-FI/title.txt: -------------------------------------------------------------------------------- 1 | Yksinkertainen puhelin 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/fr-FR/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/fr-FR/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/fr-FR/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/fr-FR/images/icon.png -------------------------------------------------------------------------------- /fastlane/metadata/android/fr-FR/images/phoneScreenshots/1_fr-FR.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/fr-FR/images/phoneScreenshots/1_fr-FR.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/fr-FR/images/phoneScreenshots/2_fr-FR.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/fr-FR/images/phoneScreenshots/2_fr-FR.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/fr-FR/images/phoneScreenshots/3_fr-FR.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/fr-FR/images/phoneScreenshots/3_fr-FR.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/fr-FR/images/phoneScreenshots/4_fr-FR.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/fr-FR/images/phoneScreenshots/4_fr-FR.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/fr-FR/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/fr-FR/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/fr-FR/title.txt: -------------------------------------------------------------------------------- 1 | Simple Composeur -------------------------------------------------------------------------------- /fastlane/metadata/android/gl-ES/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/gl-ES/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/gl-ES/short_description.txt: -------------------------------------------------------------------------------- 1 | Aplicativo para chamar e bloquear números, con soporte multi-SIM 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/gl-ES/title.txt: -------------------------------------------------------------------------------- 1 | Marcador Sinxelo 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/hi-IN/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/hi-IN/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/hi-IN/images/phoneScreenshots/1_hi-IN.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/hi-IN/images/phoneScreenshots/1_hi-IN.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/hi-IN/images/phoneScreenshots/2_hi-IN.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/hi-IN/images/phoneScreenshots/2_hi-IN.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/hi-IN/images/phoneScreenshots/3_hi-IN.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/hi-IN/images/phoneScreenshots/3_hi-IN.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/hi-IN/images/phoneScreenshots/4_hi-IN.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/hi-IN/images/phoneScreenshots/4_hi-IN.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/hi-IN/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/hi-IN/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/hi-IN/title.txt: -------------------------------------------------------------------------------- 1 | सरल डायलर -------------------------------------------------------------------------------- /fastlane/metadata/android/hr/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/hr/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/hr/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/hr/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/hr/title.txt: -------------------------------------------------------------------------------- 1 | Jednostavan birač 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/hu-HU/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/hu-HU/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/hu-HU/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/hu-HU/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/hu-HU/title.txt: -------------------------------------------------------------------------------- 1 | Egyszerű tárcsázó 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/id/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/id/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/id/images/phoneScreenshots/1_id.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/id/images/phoneScreenshots/1_id.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/id/images/phoneScreenshots/2_id.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/id/images/phoneScreenshots/2_id.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/id/images/phoneScreenshots/3_id.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/id/images/phoneScreenshots/3_id.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/id/images/phoneScreenshots/4_id.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/id/images/phoneScreenshots/4_id.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/id/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/id/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/id/title.txt: -------------------------------------------------------------------------------- 1 | Pemanggil Simpel 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/it-IT/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/it-IT/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/it-IT/images/phoneScreenshots/1_it-IT.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/it-IT/images/phoneScreenshots/1_it-IT.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/it-IT/images/phoneScreenshots/2_it-IT.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/it-IT/images/phoneScreenshots/2_it-IT.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/it-IT/images/phoneScreenshots/3_it-IT.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/it-IT/images/phoneScreenshots/3_it-IT.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/it-IT/images/phoneScreenshots/4_it-IT.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/it-IT/images/phoneScreenshots/4_it-IT.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/it-IT/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/it-IT/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/it-IT/title.txt: -------------------------------------------------------------------------------- 1 | Telefono Semplice 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/iw-IL/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/iw-IL/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/iw-IL/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/iw-IL/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/iw-IL/title.txt: -------------------------------------------------------------------------------- 1 | חייגן פשוט -------------------------------------------------------------------------------- /fastlane/metadata/android/ja-JP/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/ja-JP/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ja-JP/images/phoneScreenshots/1_ja-JP.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/ja-JP/images/phoneScreenshots/1_ja-JP.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/ja-JP/images/phoneScreenshots/2_ja-JP.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/ja-JP/images/phoneScreenshots/2_ja-JP.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/ja-JP/images/phoneScreenshots/3_ja-JP.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/ja-JP/images/phoneScreenshots/3_ja-JP.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/ja-JP/images/phoneScreenshots/4_ja-JP.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/ja-JP/images/phoneScreenshots/4_ja-JP.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/ja-JP/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/ja-JP/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ja-JP/title.txt: -------------------------------------------------------------------------------- 1 | シンプルダイヤラ -------------------------------------------------------------------------------- /fastlane/metadata/android/ko-KR/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/ko-KR/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ko-KR/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/ko-KR/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ko-KR/title.txt: -------------------------------------------------------------------------------- 1 | 단순 다이얼러 -------------------------------------------------------------------------------- /fastlane/metadata/android/nl-NL/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/nl-NL/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/nl-NL/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/nl-NL/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/nl-NL/title.txt: -------------------------------------------------------------------------------- 1 | Eenvoudige Telefoon -------------------------------------------------------------------------------- /fastlane/metadata/android/no-NO/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/no-NO/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/no-NO/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/no-NO/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/no-NO/title.txt: -------------------------------------------------------------------------------- 1 | Enkel oppringer -------------------------------------------------------------------------------- /fastlane/metadata/android/pl-PL/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/pl-PL/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/pl-PL/images/phoneScreenshots/1_pl-PL.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/pl-PL/images/phoneScreenshots/1_pl-PL.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/pl-PL/images/phoneScreenshots/2_pl-PL.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/pl-PL/images/phoneScreenshots/2_pl-PL.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/pl-PL/images/phoneScreenshots/3_pl-PL.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/pl-PL/images/phoneScreenshots/3_pl-PL.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/pl-PL/images/phoneScreenshots/4_pl-PL.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/pl-PL/images/phoneScreenshots/4_pl-PL.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/pl-PL/short_description.txt: -------------------------------------------------------------------------------- 1 | Poręczny menedżer połączeń z kontaktami, blokowaniem i obsługą wielu kart SIM 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/pl-PL/title.txt: -------------------------------------------------------------------------------- 1 | Prosty telefon 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-BR/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/pt-BR/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-BR/images/phoneScreenshots/1_pt-BR.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/pt-BR/images/phoneScreenshots/1_pt-BR.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-BR/images/phoneScreenshots/2_pt-BR.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/pt-BR/images/phoneScreenshots/2_pt-BR.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-BR/images/phoneScreenshots/3_pt-BR.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/pt-BR/images/phoneScreenshots/3_pt-BR.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-BR/images/phoneScreenshots/4_pt-BR.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/pt-BR/images/phoneScreenshots/4_pt-BR.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-BR/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/pt-BR/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-BR/title.txt: -------------------------------------------------------------------------------- 1 | Discador simples: Ligações -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-PT/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/pt-PT/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-PT/images/phoneScreenshots/1_pt-PT.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/pt-PT/images/phoneScreenshots/1_pt-PT.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-PT/images/phoneScreenshots/2_pt-PT.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/pt-PT/images/phoneScreenshots/2_pt-PT.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-PT/images/phoneScreenshots/3_pt-PT.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/pt-PT/images/phoneScreenshots/3_pt-PT.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-PT/images/phoneScreenshots/4_pt-PT.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/pt-PT/images/phoneScreenshots/4_pt-PT.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-PT/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/pt-PT/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-PT/title.txt: -------------------------------------------------------------------------------- 1 | Discador simples: Ligações -------------------------------------------------------------------------------- /fastlane/metadata/android/ro/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/ro/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ro/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/ro/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ro/title.txt: -------------------------------------------------------------------------------- 1 | Dialer simplu 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/ru-RU/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/ru-RU/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ru-RU/images/phoneScreenshots/1_ru-RU.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/ru-RU/images/phoneScreenshots/1_ru-RU.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/ru-RU/images/phoneScreenshots/2_ru-RU.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/ru-RU/images/phoneScreenshots/2_ru-RU.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/ru-RU/images/phoneScreenshots/3_ru-RU.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/ru-RU/images/phoneScreenshots/3_ru-RU.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/ru-RU/images/phoneScreenshots/4_ru-RU.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/ru-RU/images/phoneScreenshots/4_ru-RU.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/ru-RU/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/ru-RU/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ru-RU/title.txt: -------------------------------------------------------------------------------- 1 | Простой телефон 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/sk/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/sk/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/sk/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/sk/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/sk/title.txt: -------------------------------------------------------------------------------- 1 | Jednoduchý telefón: Hovory -------------------------------------------------------------------------------- /fastlane/metadata/android/sl/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/sl/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/sl/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/sl/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/sl/title.txt: -------------------------------------------------------------------------------- 1 | Enostavno klicanje 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/sr/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/sr/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/sr/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/sr/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/sr/title.txt: -------------------------------------------------------------------------------- 1 | Једноставан бројчаник 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/sv-SE/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/sv-SE/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/sv-SE/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/sv-SE/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/sv-SE/title.txt: -------------------------------------------------------------------------------- 1 | Simpel telefon -------------------------------------------------------------------------------- /fastlane/metadata/android/tr-TR/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/tr-TR/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/tr-TR/images/phoneScreenshots/1_tr-TR.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/tr-TR/images/phoneScreenshots/1_tr-TR.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/tr-TR/images/phoneScreenshots/2_tr-TR.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/tr-TR/images/phoneScreenshots/2_tr-TR.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/tr-TR/images/phoneScreenshots/3_tr-TR.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/tr-TR/images/phoneScreenshots/3_tr-TR.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/tr-TR/images/phoneScreenshots/4_tr-TR.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/tr-TR/images/phoneScreenshots/4_tr-TR.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/tr-TR/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/tr-TR/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/tr-TR/title.txt: -------------------------------------------------------------------------------- 1 | Basit Çevirici 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/uk/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/uk/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/uk/images/phoneScreenshots/1_uk.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/uk/images/phoneScreenshots/1_uk.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/uk/images/phoneScreenshots/2_uk.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/uk/images/phoneScreenshots/2_uk.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/uk/images/phoneScreenshots/3_uk.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/uk/images/phoneScreenshots/3_uk.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/uk/images/phoneScreenshots/4_uk.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/uk/images/phoneScreenshots/4_uk.jpeg -------------------------------------------------------------------------------- /fastlane/metadata/android/uk/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/uk/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/uk/title.txt: -------------------------------------------------------------------------------- 1 | Простий набирач 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-CN/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/zh-CN/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-CN/short_description.txt: -------------------------------------------------------------------------------- 1 | 易于上手的通话管理器,包含电话本、号码阻止和多 SIM 卡支持 -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-CN/title.txt: -------------------------------------------------------------------------------- 1 | 简单拨号器 -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-TW/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/fastlane/metadata/android/zh-TW/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-TW/short_description.txt: -------------------------------------------------------------------------------- 1 | 使用此簡易電話撥號應用程式並搭配通訊錄管理電話通話 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-TW/title.txt: -------------------------------------------------------------------------------- 1 | 簡易電話 2 | -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/gradlew.bat -------------------------------------------------------------------------------- /graphics/app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/graphics/app_icon.png -------------------------------------------------------------------------------- /graphics/featureGraphic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/graphics/featureGraphic.jpg -------------------------------------------------------------------------------- /graphics/featureGraphic.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/graphics/featureGraphic.xcf -------------------------------------------------------------------------------- /graphics/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/graphics/icon.png -------------------------------------------------------------------------------- /graphics/icon_orange.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/graphics/icon_orange.jpg -------------------------------------------------------------------------------- /graphics/promo_graphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/graphics/promo_graphic.png -------------------------------------------------------------------------------- /graphics/square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/graphics/square.png -------------------------------------------------------------------------------- /graphics/square.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/graphics/square.xcf -------------------------------------------------------------------------------- /graphics/tv_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/graphics/tv_banner.png -------------------------------------------------------------------------------- /keystore.properties_sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DreadedLama/Simple-Dialer/HEAD/keystore.properties_sample -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name='Simple-Dialer' 2 | include ':app' 3 | --------------------------------------------------------------------------------