├── .gitignore ├── LICENSE.txt ├── README.md ├── SaidIt.iml ├── SaidIt ├── SaidIt-SaidIt.iml ├── build.gradle ├── libs │ └── jcaki-1.0-Alpha.jar ├── proguard.cfg └── src │ └── main │ ├── AndroidManifest.xml │ ├── assets │ ├── Roboto-Bold.ttf │ ├── RobotoCondensed-Light.ttf │ ├── RobotoCondensed-Regular.ttf │ ├── RobotoCondensedBold.ttf │ └── public_key.der │ ├── java │ ├── eu │ │ └── mrogalski │ │ │ ├── StringFormat.java │ │ │ ├── android │ │ │ ├── TimeFormat.java │ │ │ └── Views.java │ │ │ └── saidit │ │ │ ├── AudioMemory.java │ │ │ ├── BroadcastReceiver.java │ │ │ ├── ErrorResponseDialog.java │ │ │ ├── IntentResult.java │ │ │ ├── RecordingDoneDialog.java │ │ │ ├── SaidIt.java │ │ │ ├── SaidItActivity.java │ │ │ ├── SaidItFragment.java │ │ │ ├── SaidItService.java │ │ │ ├── SettingsActivity.java │ │ │ ├── ThemedDialog.java │ │ │ ├── UserInfo.java │ │ │ └── WorkingDialog.java │ └── simplesound │ │ ├── dsp │ │ ├── Complex.java │ │ ├── DoubleVector.java │ │ ├── DoubleVectorFrameSource.java │ │ ├── DoubleVectorProcessingPipeline.java │ │ ├── DoubleVectorProcessor.java │ │ ├── MutableComplex.java │ │ ├── NormalizedFrameIterator.java │ │ └── WindowerFactory.java │ │ └── pcm │ │ ├── MonoWavFileReader.java │ │ ├── PcmAudioFormat.java │ │ ├── PcmAudioHelper.java │ │ ├── PcmMonoInputStream.java │ │ ├── PcmMonoOutputStream.java │ │ ├── RiffHeaderData.java │ │ ├── WavAudioFormat.java │ │ └── WavFileWriter.java │ └── res │ ├── anim │ └── pulse.xml │ ├── color │ └── button_text.xml │ ├── drawable-hdpi │ ├── btn_cling_normal.9.png │ ├── btn_cling_pressed.9.png │ ├── cling.png │ ├── hand.png │ ├── ic_action_collection.png │ ├── ic_action_email.png │ ├── ic_action_play.png │ ├── ic_action_qr.png │ ├── ic_action_replay.png │ ├── ic_action_send_now.png │ ├── ic_launcher.png │ ├── ic_star.png │ ├── ic_stat_notify_recorded.png │ └── ic_stat_notify_recording.png │ ├── drawable-ldpi │ ├── ic_launcher.png │ ├── ic_star.png │ ├── ic_stat_notify_recorded.png │ └── ic_stat_notify_recording.png │ ├── drawable-mdpi │ ├── btn_cling_normal.9.png │ ├── btn_cling_pressed.9.png │ ├── cling.png │ ├── hand.png │ ├── ic_action_collection.png │ ├── ic_action_email.png │ ├── ic_action_play.png │ ├── ic_action_qr.png │ ├── ic_action_replay.png │ ├── ic_action_send_now.png │ ├── ic_launcher.png │ ├── ic_star.png │ ├── ic_stat_notify_recorded.png │ └── ic_stat_notify_recording.png │ ├── drawable-xhdpi │ ├── btn_cling_normal.9.png │ ├── btn_cling_pressed.9.png │ ├── cling.png │ ├── cling_bleached.png │ ├── gwall_logo_hrz_fc_rgb_gry_pos.png │ ├── hand.png │ ├── ic_action_collection.png │ ├── ic_action_email.png │ ├── ic_action_play.png │ ├── ic_action_qr.png │ ├── ic_action_replay.png │ ├── ic_action_send_now.png │ ├── ic_launcher.png │ ├── ic_star.png │ ├── ic_stat_notify_recorded.png │ └── ic_stat_notify_recording.png │ ├── drawable-xxhdpi │ ├── btn_play.png │ ├── github_logo.png │ ├── google_play_button.png │ ├── ic_action_collection.png │ ├── ic_action_email.png │ ├── ic_action_play.png │ ├── ic_action_qr.png │ ├── ic_action_replay.png │ ├── ic_action_send_now.png │ ├── ic_launcher.png │ ├── ic_love.png │ ├── ic_stat_notify_recorded.png │ ├── ic_stat_notify_recording.png │ └── ticket.9.png │ ├── drawable-xxxhdpi │ ├── ic_launcher.png │ ├── ic_star.png │ ├── ic_stat_notify_recorded.png │ ├── ic_stat_notify_recording.png │ ├── paypal_logo.png │ ├── paypal_logo_large.jpg │ └── qr_logo.png │ ├── drawable │ ├── bg_et.xml │ ├── circle_button.xml │ ├── circle_button_normal.xml │ ├── circle_button_pressed.xml │ ├── cling_button_bg.xml │ ├── dashed_line.xml │ ├── dialog_content.xml │ ├── dialog_title.xml │ ├── error_dialog_title.xml │ ├── gold_button.xml │ ├── gold_button_normal.xml │ ├── gold_button_pressed.xml │ ├── gray_button.xml │ ├── gray_button_focused.xml │ ├── gray_button_normal.xml │ ├── gray_button_pressed.xml │ ├── green_button.xml │ ├── green_button_normal.xml │ ├── green_button_pressed.xml │ ├── red_circle_button.xml │ ├── red_circle_button_normal.xml │ ├── red_circle_button_pressed.xml │ ├── top_gray_button.xml │ ├── top_gray_button_normal.xml │ ├── top_gray_button_pressed.xml │ ├── top_green_button.xml │ ├── top_green_button_normal.xml │ ├── top_green_button_pressed.xml │ ├── white_button.xml │ ├── white_button_focused.xml │ ├── white_button_normal.xml │ ├── white_button_pressed.xml │ └── window_background.xml │ ├── layout │ ├── activity_background_recorder.xml │ ├── activity_settings.xml │ ├── dialog_save_recording.xml │ ├── fragment_background_recorder.xml │ ├── progress_dialog.xml │ └── recording_done_dialog.xml │ ├── values-land-v19 │ └── bools.xml │ ├── values-pl │ └── strings.xml │ ├── values-sw600dp-land-v19 │ └── bools.xml │ ├── values-v19 │ └── styles.xml │ ├── values │ ├── colors.xml │ ├── dimens.xml │ ├── paypal.xml │ ├── strings.xml │ └── styles.xml │ └── xml │ └── path_provider.xml ├── fastlane └── metadata │ └── android │ └── en-US │ ├── changelogs │ └── 15.txt │ ├── full_description.txt │ ├── images │ ├── icon.png │ └── phoneScreenshots │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ └── 4.png │ ├── short_description.txt │ └── title.txt ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/README.md -------------------------------------------------------------------------------- /SaidIt.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt.iml -------------------------------------------------------------------------------- /SaidIt/SaidIt-SaidIt.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/SaidIt-SaidIt.iml -------------------------------------------------------------------------------- /SaidIt/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/build.gradle -------------------------------------------------------------------------------- /SaidIt/libs/jcaki-1.0-Alpha.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/libs/jcaki-1.0-Alpha.jar -------------------------------------------------------------------------------- /SaidIt/proguard.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/proguard.cfg -------------------------------------------------------------------------------- /SaidIt/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /SaidIt/src/main/assets/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/assets/Roboto-Bold.ttf -------------------------------------------------------------------------------- /SaidIt/src/main/assets/RobotoCondensed-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/assets/RobotoCondensed-Light.ttf -------------------------------------------------------------------------------- /SaidIt/src/main/assets/RobotoCondensed-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/assets/RobotoCondensed-Regular.ttf -------------------------------------------------------------------------------- /SaidIt/src/main/assets/RobotoCondensedBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/assets/RobotoCondensedBold.ttf -------------------------------------------------------------------------------- /SaidIt/src/main/assets/public_key.der: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/assets/public_key.der -------------------------------------------------------------------------------- /SaidIt/src/main/java/eu/mrogalski/StringFormat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/java/eu/mrogalski/StringFormat.java -------------------------------------------------------------------------------- /SaidIt/src/main/java/eu/mrogalski/android/TimeFormat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/java/eu/mrogalski/android/TimeFormat.java -------------------------------------------------------------------------------- /SaidIt/src/main/java/eu/mrogalski/android/Views.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/java/eu/mrogalski/android/Views.java -------------------------------------------------------------------------------- /SaidIt/src/main/java/eu/mrogalski/saidit/AudioMemory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/java/eu/mrogalski/saidit/AudioMemory.java -------------------------------------------------------------------------------- /SaidIt/src/main/java/eu/mrogalski/saidit/BroadcastReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/java/eu/mrogalski/saidit/BroadcastReceiver.java -------------------------------------------------------------------------------- /SaidIt/src/main/java/eu/mrogalski/saidit/ErrorResponseDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/java/eu/mrogalski/saidit/ErrorResponseDialog.java -------------------------------------------------------------------------------- /SaidIt/src/main/java/eu/mrogalski/saidit/IntentResult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/java/eu/mrogalski/saidit/IntentResult.java -------------------------------------------------------------------------------- /SaidIt/src/main/java/eu/mrogalski/saidit/RecordingDoneDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/java/eu/mrogalski/saidit/RecordingDoneDialog.java -------------------------------------------------------------------------------- /SaidIt/src/main/java/eu/mrogalski/saidit/SaidIt.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/java/eu/mrogalski/saidit/SaidIt.java -------------------------------------------------------------------------------- /SaidIt/src/main/java/eu/mrogalski/saidit/SaidItActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/java/eu/mrogalski/saidit/SaidItActivity.java -------------------------------------------------------------------------------- /SaidIt/src/main/java/eu/mrogalski/saidit/SaidItFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/java/eu/mrogalski/saidit/SaidItFragment.java -------------------------------------------------------------------------------- /SaidIt/src/main/java/eu/mrogalski/saidit/SaidItService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/java/eu/mrogalski/saidit/SaidItService.java -------------------------------------------------------------------------------- /SaidIt/src/main/java/eu/mrogalski/saidit/SettingsActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/java/eu/mrogalski/saidit/SettingsActivity.java -------------------------------------------------------------------------------- /SaidIt/src/main/java/eu/mrogalski/saidit/ThemedDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/java/eu/mrogalski/saidit/ThemedDialog.java -------------------------------------------------------------------------------- /SaidIt/src/main/java/eu/mrogalski/saidit/UserInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/java/eu/mrogalski/saidit/UserInfo.java -------------------------------------------------------------------------------- /SaidIt/src/main/java/eu/mrogalski/saidit/WorkingDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/java/eu/mrogalski/saidit/WorkingDialog.java -------------------------------------------------------------------------------- /SaidIt/src/main/java/simplesound/dsp/Complex.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/java/simplesound/dsp/Complex.java -------------------------------------------------------------------------------- /SaidIt/src/main/java/simplesound/dsp/DoubleVector.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/java/simplesound/dsp/DoubleVector.java -------------------------------------------------------------------------------- /SaidIt/src/main/java/simplesound/dsp/DoubleVectorFrameSource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/java/simplesound/dsp/DoubleVectorFrameSource.java -------------------------------------------------------------------------------- /SaidIt/src/main/java/simplesound/dsp/DoubleVectorProcessingPipeline.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/java/simplesound/dsp/DoubleVectorProcessingPipeline.java -------------------------------------------------------------------------------- /SaidIt/src/main/java/simplesound/dsp/DoubleVectorProcessor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/java/simplesound/dsp/DoubleVectorProcessor.java -------------------------------------------------------------------------------- /SaidIt/src/main/java/simplesound/dsp/MutableComplex.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/java/simplesound/dsp/MutableComplex.java -------------------------------------------------------------------------------- /SaidIt/src/main/java/simplesound/dsp/NormalizedFrameIterator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/java/simplesound/dsp/NormalizedFrameIterator.java -------------------------------------------------------------------------------- /SaidIt/src/main/java/simplesound/dsp/WindowerFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/java/simplesound/dsp/WindowerFactory.java -------------------------------------------------------------------------------- /SaidIt/src/main/java/simplesound/pcm/MonoWavFileReader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/java/simplesound/pcm/MonoWavFileReader.java -------------------------------------------------------------------------------- /SaidIt/src/main/java/simplesound/pcm/PcmAudioFormat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/java/simplesound/pcm/PcmAudioFormat.java -------------------------------------------------------------------------------- /SaidIt/src/main/java/simplesound/pcm/PcmAudioHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/java/simplesound/pcm/PcmAudioHelper.java -------------------------------------------------------------------------------- /SaidIt/src/main/java/simplesound/pcm/PcmMonoInputStream.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/java/simplesound/pcm/PcmMonoInputStream.java -------------------------------------------------------------------------------- /SaidIt/src/main/java/simplesound/pcm/PcmMonoOutputStream.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/java/simplesound/pcm/PcmMonoOutputStream.java -------------------------------------------------------------------------------- /SaidIt/src/main/java/simplesound/pcm/RiffHeaderData.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/java/simplesound/pcm/RiffHeaderData.java -------------------------------------------------------------------------------- /SaidIt/src/main/java/simplesound/pcm/WavAudioFormat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/java/simplesound/pcm/WavAudioFormat.java -------------------------------------------------------------------------------- /SaidIt/src/main/java/simplesound/pcm/WavFileWriter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/java/simplesound/pcm/WavFileWriter.java -------------------------------------------------------------------------------- /SaidIt/src/main/res/anim/pulse.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/anim/pulse.xml -------------------------------------------------------------------------------- /SaidIt/src/main/res/color/button_text.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/color/button_text.xml -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable-hdpi/btn_cling_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable-hdpi/btn_cling_normal.9.png -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable-hdpi/btn_cling_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable-hdpi/btn_cling_pressed.9.png -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable-hdpi/cling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable-hdpi/cling.png -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable-hdpi/hand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable-hdpi/hand.png -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable-hdpi/ic_action_collection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable-hdpi/ic_action_collection.png -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable-hdpi/ic_action_email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable-hdpi/ic_action_email.png -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable-hdpi/ic_action_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable-hdpi/ic_action_play.png -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable-hdpi/ic_action_qr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable-hdpi/ic_action_qr.png -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable-hdpi/ic_action_replay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable-hdpi/ic_action_replay.png -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable-hdpi/ic_action_send_now.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable-hdpi/ic_action_send_now.png -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable-hdpi/ic_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable-hdpi/ic_star.png -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable-hdpi/ic_stat_notify_recorded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable-hdpi/ic_stat_notify_recorded.png -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable-hdpi/ic_stat_notify_recording.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable-hdpi/ic_stat_notify_recording.png -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable-ldpi/ic_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable-ldpi/ic_star.png -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable-ldpi/ic_stat_notify_recorded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable-ldpi/ic_stat_notify_recorded.png -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable-ldpi/ic_stat_notify_recording.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable-ldpi/ic_stat_notify_recording.png -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable-mdpi/btn_cling_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable-mdpi/btn_cling_normal.9.png -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable-mdpi/btn_cling_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable-mdpi/btn_cling_pressed.9.png -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable-mdpi/cling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable-mdpi/cling.png -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable-mdpi/hand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable-mdpi/hand.png -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable-mdpi/ic_action_collection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable-mdpi/ic_action_collection.png -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable-mdpi/ic_action_email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable-mdpi/ic_action_email.png -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable-mdpi/ic_action_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable-mdpi/ic_action_play.png -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable-mdpi/ic_action_qr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable-mdpi/ic_action_qr.png -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable-mdpi/ic_action_replay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable-mdpi/ic_action_replay.png -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable-mdpi/ic_action_send_now.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable-mdpi/ic_action_send_now.png -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable-mdpi/ic_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable-mdpi/ic_star.png -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable-mdpi/ic_stat_notify_recorded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable-mdpi/ic_stat_notify_recorded.png -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable-mdpi/ic_stat_notify_recording.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable-mdpi/ic_stat_notify_recording.png -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable-xhdpi/btn_cling_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable-xhdpi/btn_cling_normal.9.png -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable-xhdpi/btn_cling_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable-xhdpi/btn_cling_pressed.9.png -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable-xhdpi/cling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable-xhdpi/cling.png -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable-xhdpi/cling_bleached.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable-xhdpi/cling_bleached.png -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable-xhdpi/gwall_logo_hrz_fc_rgb_gry_pos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable-xhdpi/gwall_logo_hrz_fc_rgb_gry_pos.png -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable-xhdpi/hand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable-xhdpi/hand.png -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable-xhdpi/ic_action_collection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable-xhdpi/ic_action_collection.png -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable-xhdpi/ic_action_email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable-xhdpi/ic_action_email.png -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable-xhdpi/ic_action_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable-xhdpi/ic_action_play.png -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable-xhdpi/ic_action_qr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable-xhdpi/ic_action_qr.png -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable-xhdpi/ic_action_replay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable-xhdpi/ic_action_replay.png -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable-xhdpi/ic_action_send_now.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable-xhdpi/ic_action_send_now.png -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable-xhdpi/ic_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable-xhdpi/ic_star.png -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable-xhdpi/ic_stat_notify_recorded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable-xhdpi/ic_stat_notify_recorded.png -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable-xhdpi/ic_stat_notify_recording.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable-xhdpi/ic_stat_notify_recording.png -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable-xxhdpi/btn_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable-xxhdpi/btn_play.png -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable-xxhdpi/github_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable-xxhdpi/github_logo.png -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable-xxhdpi/google_play_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable-xxhdpi/google_play_button.png -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable-xxhdpi/ic_action_collection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable-xxhdpi/ic_action_collection.png -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable-xxhdpi/ic_action_email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable-xxhdpi/ic_action_email.png -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable-xxhdpi/ic_action_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable-xxhdpi/ic_action_play.png -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable-xxhdpi/ic_action_qr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable-xxhdpi/ic_action_qr.png -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable-xxhdpi/ic_action_replay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable-xxhdpi/ic_action_replay.png -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable-xxhdpi/ic_action_send_now.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable-xxhdpi/ic_action_send_now.png -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable-xxhdpi/ic_love.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable-xxhdpi/ic_love.png -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable-xxhdpi/ic_stat_notify_recorded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable-xxhdpi/ic_stat_notify_recorded.png -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable-xxhdpi/ic_stat_notify_recording.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable-xxhdpi/ic_stat_notify_recording.png -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable-xxhdpi/ticket.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable-xxhdpi/ticket.9.png -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable-xxxhdpi/ic_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable-xxxhdpi/ic_star.png -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable-xxxhdpi/ic_stat_notify_recorded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable-xxxhdpi/ic_stat_notify_recorded.png -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable-xxxhdpi/ic_stat_notify_recording.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable-xxxhdpi/ic_stat_notify_recording.png -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable-xxxhdpi/paypal_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable-xxxhdpi/paypal_logo.png -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable-xxxhdpi/paypal_logo_large.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable-xxxhdpi/paypal_logo_large.jpg -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable-xxxhdpi/qr_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable-xxxhdpi/qr_logo.png -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable/bg_et.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable/bg_et.xml -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable/circle_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable/circle_button.xml -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable/circle_button_normal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable/circle_button_normal.xml -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable/circle_button_pressed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable/circle_button_pressed.xml -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable/cling_button_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable/cling_button_bg.xml -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable/dashed_line.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable/dashed_line.xml -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable/dialog_content.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable/dialog_content.xml -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable/dialog_title.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable/dialog_title.xml -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable/error_dialog_title.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable/error_dialog_title.xml -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable/gold_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable/gold_button.xml -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable/gold_button_normal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable/gold_button_normal.xml -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable/gold_button_pressed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable/gold_button_pressed.xml -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable/gray_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable/gray_button.xml -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable/gray_button_focused.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable/gray_button_focused.xml -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable/gray_button_normal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable/gray_button_normal.xml -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable/gray_button_pressed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable/gray_button_pressed.xml -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable/green_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable/green_button.xml -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable/green_button_normal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable/green_button_normal.xml -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable/green_button_pressed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable/green_button_pressed.xml -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable/red_circle_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable/red_circle_button.xml -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable/red_circle_button_normal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable/red_circle_button_normal.xml -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable/red_circle_button_pressed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable/red_circle_button_pressed.xml -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable/top_gray_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable/top_gray_button.xml -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable/top_gray_button_normal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable/top_gray_button_normal.xml -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable/top_gray_button_pressed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable/top_gray_button_pressed.xml -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable/top_green_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable/top_green_button.xml -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable/top_green_button_normal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable/top_green_button_normal.xml -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable/top_green_button_pressed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable/top_green_button_pressed.xml -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable/white_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable/white_button.xml -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable/white_button_focused.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable/white_button_focused.xml -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable/white_button_normal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable/white_button_normal.xml -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable/white_button_pressed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable/white_button_pressed.xml -------------------------------------------------------------------------------- /SaidIt/src/main/res/drawable/window_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/drawable/window_background.xml -------------------------------------------------------------------------------- /SaidIt/src/main/res/layout/activity_background_recorder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/layout/activity_background_recorder.xml -------------------------------------------------------------------------------- /SaidIt/src/main/res/layout/activity_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/layout/activity_settings.xml -------------------------------------------------------------------------------- /SaidIt/src/main/res/layout/dialog_save_recording.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/layout/dialog_save_recording.xml -------------------------------------------------------------------------------- /SaidIt/src/main/res/layout/fragment_background_recorder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/layout/fragment_background_recorder.xml -------------------------------------------------------------------------------- /SaidIt/src/main/res/layout/progress_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/layout/progress_dialog.xml -------------------------------------------------------------------------------- /SaidIt/src/main/res/layout/recording_done_dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/layout/recording_done_dialog.xml -------------------------------------------------------------------------------- /SaidIt/src/main/res/values-land-v19/bools.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/values-land-v19/bools.xml -------------------------------------------------------------------------------- /SaidIt/src/main/res/values-pl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/values-pl/strings.xml -------------------------------------------------------------------------------- /SaidIt/src/main/res/values-sw600dp-land-v19/bools.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/values-sw600dp-land-v19/bools.xml -------------------------------------------------------------------------------- /SaidIt/src/main/res/values-v19/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/values-v19/styles.xml -------------------------------------------------------------------------------- /SaidIt/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /SaidIt/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /SaidIt/src/main/res/values/paypal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/values/paypal.xml -------------------------------------------------------------------------------- /SaidIt/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /SaidIt/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /SaidIt/src/main/res/xml/path_provider.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/SaidIt/src/main/res/xml/path_provider.xml -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/fastlane/metadata/android/en-US/changelogs/15.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/fastlane/metadata/android/en-US/full_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/fastlane/metadata/android/en-US/images/icon.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/1.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/2.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/3.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/4.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/short_description.txt: -------------------------------------------------------------------------------- 1 | Time travelling audio recorder for Android. -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/title.txt: -------------------------------------------------------------------------------- 1 | Echo -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafik/echo/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':SaidIt' 2 | --------------------------------------------------------------------------------