From 66180d604e4202e665eb94a88444690e8455cab8 Mon Sep 17 00:00:00 2001 From: Inzmam ul haq khan Date: Tue, 14 Nov 2017 06:32:35 +0500 Subject: [PATCH 1/8] Fix visibilty of pause button just added a simple code to fix visibility of pause button --- .gitignore | 1 + .idea/compiler.xml | 23 - .idea/copyright/profiles_settings.xml | 3 - .idea/encodings.xml | 5 - .idea/inspectionProfiles/Project_Default.xml | 11 - .../inspectionProfiles/profiles_settings.xml | 7 - .idea/misc.xml | 65 +- .idea/modules.xml | 9 - .idea/scopes/scope_settings.xml | 5 - .idea/vcs.xml | 9 - SoundRecorder.iml | 2 +- app/.idea/.name | 1 + app/.idea/dictionaries/Inam.xml | 3 + {.idea => app/.idea}/gradle.xml | 5 +- ...om_android_support_appcompat_v7_21_0_3.xml | 10 + ...com_android_support_cardview_v7_21_0_3.xml | 14 + ...android_support_recyclerview_v7_21_0_3.xml | 14 + ...support_support_annotations_21_0_3_jar.xml | 13 + .../com_android_support_support_v4_21_0_3.xml | 15 + ...pardogo_materialtabstrip_library_1_0_6.xml | 12 + ...om_melnykov_floatingactionbutton_1_1_0.xml | 12 + .../com_nineoldandroids_library_2_4_0_jar.xml | 11 + app/.idea/misc.xml | 68 + app/.idea/modules.xml | 9 + {.idea => app/.idea}/runConfigurations.xml | 0 app/.idea/vcs.xml | 6 + app/.idea/workspace.xml | 2632 +++++++++++++++++ app/app.iml | 40 +- app/gradle/wrapper/gradle-wrapper.jar | Bin 0 -> 53636 bytes app/gradlew.bat | 90 + .../fragments/RecordFragment.java | 8 + 31 files changed, 2976 insertions(+), 127 deletions(-) delete mode 100644 .idea/compiler.xml delete mode 100644 .idea/copyright/profiles_settings.xml delete mode 100644 .idea/encodings.xml delete mode 100644 .idea/inspectionProfiles/Project_Default.xml delete mode 100644 .idea/inspectionProfiles/profiles_settings.xml delete mode 100644 .idea/modules.xml delete mode 100644 .idea/scopes/scope_settings.xml delete mode 100644 .idea/vcs.xml create mode 100644 app/.idea/.name create mode 100644 app/.idea/dictionaries/Inam.xml rename {.idea => app/.idea}/gradle.xml (70%) create mode 100644 app/.idea/libraries/com_android_support_appcompat_v7_21_0_3.xml create mode 100644 app/.idea/libraries/com_android_support_cardview_v7_21_0_3.xml create mode 100644 app/.idea/libraries/com_android_support_recyclerview_v7_21_0_3.xml create mode 100644 app/.idea/libraries/com_android_support_support_annotations_21_0_3_jar.xml create mode 100644 app/.idea/libraries/com_android_support_support_v4_21_0_3.xml create mode 100644 app/.idea/libraries/com_jpardogo_materialtabstrip_library_1_0_6.xml create mode 100644 app/.idea/libraries/com_melnykov_floatingactionbutton_1_1_0.xml create mode 100644 app/.idea/libraries/com_nineoldandroids_library_2_4_0_jar.xml create mode 100644 app/.idea/misc.xml create mode 100644 app/.idea/modules.xml rename {.idea => app/.idea}/runConfigurations.xml (100%) create mode 100644 app/.idea/vcs.xml create mode 100644 app/.idea/workspace.xml create mode 100644 app/gradle/wrapper/gradle-wrapper.jar create mode 100644 app/gradlew.bat diff --git a/.gitignore b/.gitignore index afbdab33..79da7d71 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ /.idea/libraries .DS_Store /build +*.properties diff --git a/.idea/compiler.xml b/.idea/compiler.xml deleted file mode 100644 index 217af471..00000000 --- a/.idea/compiler.xml +++ /dev/null @@ -1,23 +0,0 @@ - - - - - - diff --git a/.idea/copyright/profiles_settings.xml b/.idea/copyright/profiles_settings.xml deleted file mode 100644 index e7bedf33..00000000 --- a/.idea/copyright/profiles_settings.xml +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/.idea/encodings.xml b/.idea/encodings.xml deleted file mode 100644 index e206d70d..00000000 --- a/.idea/encodings.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml deleted file mode 100644 index 2071d1a6..00000000 --- a/.idea/inspectionProfiles/Project_Default.xml +++ /dev/null @@ -1,11 +0,0 @@ - - - - \ No newline at end of file diff --git a/.idea/inspectionProfiles/profiles_settings.xml b/.idea/inspectionProfiles/profiles_settings.xml deleted file mode 100644 index 3b312839..00000000 --- a/.idea/inspectionProfiles/profiles_settings.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - - \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml index b0a270f5..c665c8fe 100644 --- a/.idea/misc.xml +++ b/.idea/misc.xml @@ -1,36 +1,45 @@ - - + + - - - - - - + + + + + + + + + Spelling + + + + + SpellCheckingInspection + + + + + + + + + + 1.8 + + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml deleted file mode 100644 index eb3197b3..00000000 --- a/.idea/modules.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/.idea/scopes/scope_settings.xml b/.idea/scopes/scope_settings.xml deleted file mode 100644 index 922003b8..00000000 --- a/.idea/scopes/scope_settings.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml deleted file mode 100644 index c63efbb2..00000000 --- a/.idea/vcs.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/SoundRecorder.iml b/SoundRecorder.iml index 40b8fc4a..b24f32f9 100644 --- a/SoundRecorder.iml +++ b/SoundRecorder.iml @@ -1,5 +1,5 @@ - + diff --git a/app/.idea/.name b/app/.idea/.name new file mode 100644 index 00000000..5a046d03 --- /dev/null +++ b/app/.idea/.name @@ -0,0 +1 @@ +SoundRecorder \ No newline at end of file diff --git a/app/.idea/dictionaries/Inam.xml b/app/.idea/dictionaries/Inam.xml new file mode 100644 index 00000000..02215030 --- /dev/null +++ b/app/.idea/dictionaries/Inam.xml @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/.idea/gradle.xml b/app/.idea/gradle.xml similarity index 70% rename from .idea/gradle.xml rename to app/.idea/gradle.xml index 2a7f5bfc..d417c89f 100644 --- a/.idea/gradle.xml +++ b/app/.idea/gradle.xml @@ -3,13 +3,12 @@