├── .gitignore ├── CODE_OF_CONDUCT.md ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── PRIVACY_POLICY.md ├── README.md ├── _config.yml ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── ic_launcher-playstore.png │ ├── java │ └── me │ │ └── hackerchick │ │ └── raisetoanswer │ │ ├── MainActivity.kt │ │ ├── RaiseToAnswerCallReceiver.kt │ │ ├── RaiseToAnswerSensorEventListener.kt │ │ └── Util.kt │ └── res │ ├── drawable │ └── ic_launcher_foreground.xml │ ├── layout │ └── activity_main.xml │ ├── menu │ └── main_menu.xml │ ├── mipmap-anydpi-v26 │ ├── ic_launcher.xml │ └── ic_launcher_round.xml │ ├── mipmap-hdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-mdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xxhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xxxhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── values-de │ └── strings.xml │ ├── values-fr │ └── strings.xml │ ├── values-hi │ └── strings.xml │ ├── values-hu │ └── strings.xml │ ├── values-id │ └── strings.xml │ ├── values-it │ └── strings.xml │ ├── values-lt │ └── strings.xml │ ├── values-nb │ └── strings.xml │ ├── values-nl │ └── strings.xml │ ├── values-or │ └── strings.xml │ ├── values-pl │ └── strings.xml │ ├── values-ru │ └── strings.xml │ ├── values-ta │ └── strings.xml │ ├── values-tr │ └── strings.xml │ ├── values-vi │ └── strings.xml │ ├── values-zh-rCN │ └── strings.xml │ └── values │ ├── colors.xml │ ├── ic_launcher_background.xml │ ├── strings.xml │ └── styles.xml ├── build.gradle ├── build.sh ├── fastlane ├── Appfile ├── Fastfile └── metadata │ └── android │ ├── de-DE │ ├── changelogs │ │ ├── 1.0.txt │ │ ├── 17.txt │ │ ├── 24.txt │ │ ├── 25.txt │ │ ├── 26.txt │ │ ├── 27.txt │ │ ├── 28.txt │ │ ├── 29.txt │ │ ├── 30.txt │ │ ├── 8.txt │ │ └── 9.txt │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── en-US │ ├── changelogs │ │ ├── 1.0.txt │ │ ├── 1.1.1.txt │ │ ├── 1.1.txt │ │ ├── 1.2.txt │ │ ├── 1.3.1.txt │ │ ├── 1.3.2.txt │ │ ├── 1.3.txt │ │ ├── 10.txt │ │ ├── 11.txt │ │ ├── 12.txt │ │ ├── 13.txt │ │ ├── 14.txt │ │ ├── 15.txt │ │ ├── 16.txt │ │ ├── 17.txt │ │ ├── 18.txt │ │ ├── 19.txt │ │ ├── 20.txt │ │ ├── 21.txt │ │ ├── 22.txt │ │ ├── 23.txt │ │ ├── 24.txt │ │ ├── 25.txt │ │ ├── 26.txt │ │ ├── 27.txt │ │ ├── 28.txt │ │ ├── 29.txt │ │ ├── 30.txt │ │ ├── 31.txt │ │ ├── 32.txt │ │ ├── 33.txt │ │ ├── 8.txt │ │ └── 9.txt │ ├── full_description.txt │ ├── images │ │ ├── featureGraphic.png │ │ ├── icon.png │ │ └── phoneScreenshots │ │ │ ├── 1_en-US.png │ │ │ ├── 2_en-US.png │ │ │ └── 3_en-US.png │ ├── short_description.txt │ └── title.txt │ ├── fr-FR │ ├── changelogs │ │ ├── 1.0.txt │ │ ├── 1.1.1.txt │ │ ├── 1.1.txt │ │ ├── 1.2.txt │ │ ├── 1.3.1.txt │ │ ├── 1.3.2.txt │ │ ├── 1.3.txt │ │ ├── 10.txt │ │ ├── 11.txt │ │ ├── 12.txt │ │ ├── 13.txt │ │ ├── 14.txt │ │ ├── 15.txt │ │ ├── 16.txt │ │ ├── 17.txt │ │ ├── 18.txt │ │ ├── 19.txt │ │ ├── 20.txt │ │ ├── 21.txt │ │ ├── 22.txt │ │ ├── 23.txt │ │ ├── 24.txt │ │ ├── 25.txt │ │ ├── 26.txt │ │ ├── 27.txt │ │ ├── 28.txt │ │ ├── 29.txt │ │ ├── 30.txt │ │ ├── 31.txt │ │ ├── 32.txt │ │ ├── 8.txt │ │ └── 9.txt │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── hi-IN │ ├── changelogs │ │ ├── 1.0.txt │ │ ├── 1.1.1.txt │ │ ├── 1.1.txt │ │ ├── 1.2.txt │ │ ├── 1.3.1.txt │ │ ├── 1.3.2.txt │ │ ├── 1.3.txt │ │ ├── 10.txt │ │ ├── 11.txt │ │ ├── 12.txt │ │ ├── 13.txt │ │ ├── 14.txt │ │ ├── 15.txt │ │ ├── 16.txt │ │ ├── 17.txt │ │ ├── 18.txt │ │ ├── 19.txt │ │ ├── 20.txt │ │ ├── 21.txt │ │ ├── 22.txt │ │ ├── 23.txt │ │ ├── 24.txt │ │ ├── 25.txt │ │ ├── 26.txt │ │ ├── 27.txt │ │ ├── 28.txt │ │ ├── 29.txt │ │ ├── 30.txt │ │ ├── 31.txt │ │ ├── 32.txt │ │ ├── 33.txt │ │ ├── 8.txt │ │ └── 9.txt │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── id │ ├── changelogs │ │ ├── 1.0.txt │ │ ├── 1.1.1.txt │ │ ├── 1.1.txt │ │ ├── 1.2.txt │ │ ├── 1.3.1.txt │ │ ├── 1.3.2.txt │ │ ├── 1.3.txt │ │ ├── 10.txt │ │ ├── 11.txt │ │ ├── 12.txt │ │ ├── 13.txt │ │ ├── 14.txt │ │ ├── 15.txt │ │ ├── 16.txt │ │ ├── 17.txt │ │ ├── 18.txt │ │ ├── 19.txt │ │ ├── 20.txt │ │ ├── 21.txt │ │ ├── 22.txt │ │ ├── 23.txt │ │ ├── 24.txt │ │ ├── 25.txt │ │ ├── 26.txt │ │ ├── 27.txt │ │ ├── 28.txt │ │ ├── 29.txt │ │ ├── 30.txt │ │ ├── 31.txt │ │ ├── 32.txt │ │ ├── 8.txt │ │ └── 9.txt │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── lt │ ├── changelogs │ │ ├── 1.0.txt │ │ ├── 1.1.1.txt │ │ ├── 1.1.txt │ │ ├── 1.2.txt │ │ ├── 1.3.1.txt │ │ ├── 1.3.2.txt │ │ ├── 1.3.txt │ │ ├── 10.txt │ │ ├── 11.txt │ │ ├── 12.txt │ │ ├── 13.txt │ │ ├── 14.txt │ │ ├── 15.txt │ │ ├── 16.txt │ │ ├── 17.txt │ │ ├── 18.txt │ │ ├── 19.txt │ │ ├── 20.txt │ │ ├── 21.txt │ │ ├── 22.txt │ │ ├── 23.txt │ │ ├── 24.txt │ │ ├── 25.txt │ │ ├── 26.txt │ │ ├── 27.txt │ │ ├── 28.txt │ │ ├── 29.txt │ │ ├── 30.txt │ │ ├── 31.txt │ │ ├── 32.txt │ │ ├── 8.txt │ │ └── 9.txt │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── nb-NO │ ├── short_description.txt │ └── title.txt │ ├── nl-NL │ ├── changelogs │ │ ├── 1.0.txt │ │ ├── 1.1.1.txt │ │ ├── 1.1.txt │ │ ├── 1.2.txt │ │ ├── 1.3.1.txt │ │ ├── 1.3.2.txt │ │ ├── 1.3.txt │ │ ├── 10.txt │ │ ├── 11.txt │ │ ├── 12.txt │ │ ├── 13.txt │ │ ├── 14.txt │ │ ├── 15.txt │ │ ├── 16.txt │ │ ├── 8.txt │ │ └── 9.txt │ ├── full_description.txt │ ├── short_description.txt │ ├── title.txt │ └── video.txt │ ├── pl-PL │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── pt-BR │ ├── changelogs │ │ ├── 1.0.txt │ │ ├── 1.1.1.txt │ │ ├── 1.1.txt │ │ ├── 1.2.txt │ │ ├── 1.3.1.txt │ │ ├── 1.3.2.txt │ │ ├── 1.3.txt │ │ ├── 10.txt │ │ ├── 11.txt │ │ ├── 12.txt │ │ └── 13.txt │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── ru-RU │ ├── changelogs │ │ ├── 1.0.txt │ │ ├── 1.1.1.txt │ │ ├── 1.1.txt │ │ ├── 1.2.txt │ │ ├── 1.3.1.txt │ │ ├── 1.3.2.txt │ │ ├── 1.3.txt │ │ ├── 10.txt │ │ ├── 11.txt │ │ ├── 12.txt │ │ ├── 13.txt │ │ ├── 14.txt │ │ ├── 15.txt │ │ ├── 16.txt │ │ ├── 17.txt │ │ ├── 18.txt │ │ ├── 19.txt │ │ ├── 20.txt │ │ ├── 21.txt │ │ ├── 22.txt │ │ ├── 23.txt │ │ ├── 24.txt │ │ ├── 25.txt │ │ ├── 26.txt │ │ ├── 27.txt │ │ ├── 28.txt │ │ ├── 29.txt │ │ ├── 30.txt │ │ ├── 31.txt │ │ ├── 32.txt │ │ ├── 33.txt │ │ ├── 8.txt │ │ └── 9.txt │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── ta-IN │ ├── changelogs │ │ ├── 1.0.txt │ │ ├── 1.1.1.txt │ │ ├── 1.1.txt │ │ ├── 1.2.txt │ │ ├── 1.3.1.txt │ │ ├── 1.3.2.txt │ │ ├── 1.3.txt │ │ ├── 10.txt │ │ ├── 11.txt │ │ ├── 12.txt │ │ ├── 13.txt │ │ ├── 14.txt │ │ ├── 15.txt │ │ ├── 16.txt │ │ ├── 17.txt │ │ ├── 18.txt │ │ ├── 19.txt │ │ ├── 20.txt │ │ ├── 21.txt │ │ ├── 22.txt │ │ ├── 23.txt │ │ ├── 24.txt │ │ ├── 25.txt │ │ ├── 26.txt │ │ ├── 27.txt │ │ ├── 28.txt │ │ ├── 29.txt │ │ ├── 30.txt │ │ ├── 31.txt │ │ ├── 32.txt │ │ ├── 33.txt │ │ ├── 8.txt │ │ └── 9.txt │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── tr-TR │ ├── changelogs │ │ ├── 1.0.txt │ │ ├── 1.1.1.txt │ │ ├── 1.1.txt │ │ ├── 1.2.txt │ │ ├── 1.3.1.txt │ │ ├── 1.3.2.txt │ │ ├── 1.3.txt │ │ ├── 10.txt │ │ ├── 11.txt │ │ ├── 12.txt │ │ ├── 13.txt │ │ ├── 14.txt │ │ ├── 15.txt │ │ ├── 16.txt │ │ ├── 17.txt │ │ ├── 18.txt │ │ ├── 19.txt │ │ ├── 20.txt │ │ ├── 21.txt │ │ ├── 22.txt │ │ ├── 23.txt │ │ ├── 24.txt │ │ ├── 25.txt │ │ ├── 26.txt │ │ ├── 27.txt │ │ ├── 28.txt │ │ ├── 29.txt │ │ ├── 30.txt │ │ ├── 31.txt │ │ ├── 32.txt │ │ ├── 33.txt │ │ ├── 8.txt │ │ └── 9.txt │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ ├── vi │ ├── changelogs │ │ ├── 1.0.txt │ │ ├── 1.1.1.txt │ │ ├── 1.1.txt │ │ ├── 1.2.txt │ │ ├── 1.3.1.txt │ │ ├── 1.3.2.txt │ │ ├── 1.3.txt │ │ ├── 10.txt │ │ ├── 11.txt │ │ ├── 12.txt │ │ ├── 13.txt │ │ ├── 14.txt │ │ ├── 15.txt │ │ ├── 16.txt │ │ ├── 17.txt │ │ ├── 18.txt │ │ ├── 19.txt │ │ ├── 20.txt │ │ ├── 21.txt │ │ ├── 22.txt │ │ ├── 23.txt │ │ ├── 24.txt │ │ ├── 25.txt │ │ ├── 26.txt │ │ ├── 8.txt │ │ └── 9.txt │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt │ └── zh-CN │ ├── changelogs │ ├── 1.0.txt │ ├── 1.1.1.txt │ ├── 1.1.txt │ ├── 1.2.txt │ ├── 1.3.1.txt │ ├── 1.3.2.txt │ ├── 1.3.txt │ ├── 10.txt │ ├── 11.txt │ ├── 12.txt │ ├── 13.txt │ ├── 14.txt │ ├── 15.txt │ ├── 16.txt │ ├── 17.txt │ ├── 18.txt │ ├── 19.txt │ ├── 20.txt │ ├── 21.txt │ ├── 22.txt │ ├── 23.txt │ ├── 24.txt │ ├── 25.txt │ ├── 26.txt │ ├── 27.txt │ ├── 28.txt │ ├── 29.txt │ ├── 30.txt │ ├── 31.txt │ ├── 8.txt │ └── 9.txt │ ├── full_description.txt │ ├── short_description.txt │ └── title.txt ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── logo.svg └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- 1 | # Android Studio 2 | *.iml 3 | .gradle 4 | /local.properties 5 | /.idea 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | .cxx 11 | 12 | /app/release 13 | 14 | # Fastlane 15 | # fastlane specific 16 | **/fastlane/report.xml 17 | 18 | # deliver temporary files 19 | **/fastlane/Preview.html 20 | 21 | # snapshot generated screenshots 22 | **/fastlane/screenshots 23 | 24 | # scan temporary files 25 | **/fastlane/test_output 26 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | We as members, contributors, and leaders pledge to make participation in our 6 | community a harassment-free experience for everyone, regardless of age, body 7 | size, visible or invisible disability, ethnicity, sex characteristics, gender 8 | identity and expression, level of experience, education, socio-economic status, 9 | nationality, personal appearance, race, religion, or sexual identity 10 | and orientation. 11 | 12 | We pledge to act and interact in ways that contribute to an open, welcoming, 13 | diverse, inclusive, and healthy community. 14 | 15 | ## Our Standards 16 | 17 | Examples of behavior that contributes to a positive environment for our 18 | community include: 19 | 20 | * Demonstrating empathy and kindness toward other people 21 | * Being respectful of differing opinions, viewpoints, and experiences 22 | * Giving and gracefully accepting constructive feedback 23 | * Accepting responsibility and apologizing to those affected by our mistakes, 24 | and learning from the experience 25 | * Focusing on what is best not just for us as individuals, but for the 26 | overall community 27 | 28 | Examples of unacceptable behavior include: 29 | 30 | * The use of sexualized language or imagery, and sexual attention or 31 | advances of any kind 32 | * Trolling, insulting or derogatory comments, and personal or political attacks 33 | * Public or private harassment 34 | * Publishing others' private information, such as a physical or email 35 | address, without their explicit permission 36 | * Other conduct which could reasonably be considered inappropriate in a 37 | professional setting 38 | 39 | ## Enforcement Responsibilities 40 | 41 | Community leaders are responsible for clarifying and enforcing our standards of 42 | acceptable behavior and will take appropriate and fair corrective action in 43 | response to any behavior that they deem inappropriate, threatening, offensive, 44 | or harmful. 45 | 46 | Community leaders have the right and responsibility to remove, edit, or reject 47 | comments, commits, code, wiki edits, issues, and other contributions that are 48 | not aligned to this Code of Conduct, and will communicate reasons for moderation 49 | decisions when appropriate. 50 | 51 | ## Scope 52 | 53 | This Code of Conduct applies within all community spaces, and also applies when 54 | an individual is officially representing the community in public spaces. 55 | Examples of representing our community include using an official e-mail address, 56 | posting via an official social media account, or acting as an appointed 57 | representative at an online or offline event. 58 | 59 | ## Enforcement 60 | 61 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 62 | reported to the community leaders responsible for enforcement at 63 | raisetoanswer.geuct@hackerchick.me. 64 | All complaints will be reviewed and investigated promptly and fairly. 65 | 66 | All community leaders are obligated to respect the privacy and security of the 67 | reporter of any incident. 68 | 69 | ## Enforcement Guidelines 70 | 71 | Community leaders will follow these Community Impact Guidelines in determining 72 | the consequences for any action they deem in violation of this Code of Conduct: 73 | 74 | ### 1. Correction 75 | 76 | **Community Impact**: Use of inappropriate language or other behavior deemed 77 | unprofessional or unwelcome in the community. 78 | 79 | **Consequence**: A private, written warning from community leaders, providing 80 | clarity around the nature of the violation and an explanation of why the 81 | behavior was inappropriate. A public apology may be requested. 82 | 83 | ### 2. Warning 84 | 85 | **Community Impact**: A violation through a single incident or series 86 | of actions. 87 | 88 | **Consequence**: A warning with consequences for continued behavior. No 89 | interaction with the people involved, including unsolicited interaction with 90 | those enforcing the Code of Conduct, for a specified period of time. This 91 | includes avoiding interactions in community spaces as well as external channels 92 | like social media. Violating these terms may lead to a temporary or 93 | permanent ban. 94 | 95 | ### 3. Temporary Ban 96 | 97 | **Community Impact**: A serious violation of community standards, including 98 | sustained inappropriate behavior. 99 | 100 | **Consequence**: A temporary ban from any sort of interaction or public 101 | communication with the community for a specified period of time. No public or 102 | private interaction with the people involved, including unsolicited interaction 103 | with those enforcing the Code of Conduct, is allowed during this period. 104 | Violating these terms may lead to a permanent ban. 105 | 106 | ### 4. Permanent Ban 107 | 108 | **Community Impact**: Demonstrating a pattern of violation of community 109 | standards, including sustained inappropriate behavior, harassment of an 110 | individual, or aggression toward or disparagement of classes of individuals. 111 | 112 | **Consequence**: A permanent ban from any sort of public interaction within 113 | the community. 114 | 115 | ## Attribution 116 | 117 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], 118 | version 2.0, available at 119 | https://www.contributor-covenant.org/version/2/0/code_of_conduct.html. 120 | 121 | Community Impact Guidelines were inspired by [Mozilla's code of conduct 122 | enforcement ladder](https://github.com/mozilla/diversity). 123 | 124 | [homepage]: https://www.contributor-covenant.org 125 | 126 | For answers to common questions about this code of conduct, see the FAQ at 127 | https://www.contributor-covenant.org/faq. Translations are available at 128 | https://www.contributor-covenant.org/translations. 129 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gem "fastlane" 4 | -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- 1 | GEM 2 | remote: https://rubygems.org/ 3 | specs: 4 | CFPropertyList (3.0.7) 5 | base64 6 | nkf 7 | rexml 8 | addressable (2.8.6) 9 | public_suffix (>= 2.0.2, < 6.0) 10 | artifactory (3.0.17) 11 | atomos (0.1.3) 12 | aws-eventstream (1.3.0) 13 | aws-partitions (1.930.0) 14 | aws-sdk-core (3.196.1) 15 | aws-eventstream (~> 1, >= 1.3.0) 16 | aws-partitions (~> 1, >= 1.651.0) 17 | aws-sigv4 (~> 1.8) 18 | jmespath (~> 1, >= 1.6.1) 19 | aws-sdk-kms (1.81.0) 20 | aws-sdk-core (~> 3, >= 3.193.0) 21 | aws-sigv4 (~> 1.1) 22 | aws-sdk-s3 (1.151.0) 23 | aws-sdk-core (~> 3, >= 3.194.0) 24 | aws-sdk-kms (~> 1) 25 | aws-sigv4 (~> 1.8) 26 | aws-sigv4 (1.8.0) 27 | aws-eventstream (~> 1, >= 1.0.2) 28 | babosa (1.0.4) 29 | base64 (0.2.0) 30 | claide (1.1.0) 31 | colored (1.2) 32 | colored2 (3.1.2) 33 | commander (4.6.0) 34 | highline (~> 2.0.0) 35 | declarative (0.0.20) 36 | digest-crc (0.6.5) 37 | rake (>= 12.0.0, < 14.0.0) 38 | domain_name (0.6.20240107) 39 | dotenv (2.8.1) 40 | emoji_regex (3.2.3) 41 | excon (0.110.0) 42 | faraday (1.10.3) 43 | faraday-em_http (~> 1.0) 44 | faraday-em_synchrony (~> 1.0) 45 | faraday-excon (~> 1.1) 46 | faraday-httpclient (~> 1.0) 47 | faraday-multipart (~> 1.0) 48 | faraday-net_http (~> 1.0) 49 | faraday-net_http_persistent (~> 1.0) 50 | faraday-patron (~> 1.0) 51 | faraday-rack (~> 1.0) 52 | faraday-retry (~> 1.0) 53 | ruby2_keywords (>= 0.0.4) 54 | faraday-cookie_jar (0.0.7) 55 | faraday (>= 0.8.0) 56 | http-cookie (~> 1.0.0) 57 | faraday-em_http (1.0.0) 58 | faraday-em_synchrony (1.0.0) 59 | faraday-excon (1.1.0) 60 | faraday-httpclient (1.0.1) 61 | faraday-multipart (1.0.4) 62 | multipart-post (~> 2) 63 | faraday-net_http (1.0.1) 64 | faraday-net_http_persistent (1.2.0) 65 | faraday-patron (1.0.0) 66 | faraday-rack (1.0.0) 67 | faraday-retry (1.0.3) 68 | faraday_middleware (1.2.0) 69 | faraday (~> 1.0) 70 | fastimage (2.3.1) 71 | fastlane (2.220.0) 72 | CFPropertyList (>= 2.3, < 4.0.0) 73 | addressable (>= 2.8, < 3.0.0) 74 | artifactory (~> 3.0) 75 | aws-sdk-s3 (~> 1.0) 76 | babosa (>= 1.0.3, < 2.0.0) 77 | bundler (>= 1.12.0, < 3.0.0) 78 | colored (~> 1.2) 79 | commander (~> 4.6) 80 | dotenv (>= 2.1.1, < 3.0.0) 81 | emoji_regex (>= 0.1, < 4.0) 82 | excon (>= 0.71.0, < 1.0.0) 83 | faraday (~> 1.0) 84 | faraday-cookie_jar (~> 0.0.6) 85 | faraday_middleware (~> 1.0) 86 | fastimage (>= 2.1.0, < 3.0.0) 87 | gh_inspector (>= 1.1.2, < 2.0.0) 88 | google-apis-androidpublisher_v3 (~> 0.3) 89 | google-apis-playcustomapp_v1 (~> 0.1) 90 | google-cloud-env (>= 1.6.0, < 2.0.0) 91 | google-cloud-storage (~> 1.31) 92 | highline (~> 2.0) 93 | http-cookie (~> 1.0.5) 94 | json (< 3.0.0) 95 | jwt (>= 2.1.0, < 3) 96 | mini_magick (>= 4.9.4, < 5.0.0) 97 | multipart-post (>= 2.0.0, < 3.0.0) 98 | naturally (~> 2.2) 99 | optparse (>= 0.1.1, < 1.0.0) 100 | plist (>= 3.1.0, < 4.0.0) 101 | rubyzip (>= 2.0.0, < 3.0.0) 102 | security (= 0.1.5) 103 | simctl (~> 1.6.3) 104 | terminal-notifier (>= 2.0.0, < 3.0.0) 105 | terminal-table (~> 3) 106 | tty-screen (>= 0.6.3, < 1.0.0) 107 | tty-spinner (>= 0.8.0, < 1.0.0) 108 | word_wrap (~> 1.0.0) 109 | xcodeproj (>= 1.13.0, < 2.0.0) 110 | xcpretty (~> 0.3.0) 111 | xcpretty-travis-formatter (>= 0.0.3, < 2.0.0) 112 | gh_inspector (1.1.3) 113 | google-apis-androidpublisher_v3 (0.54.0) 114 | google-apis-core (>= 0.11.0, < 2.a) 115 | google-apis-core (0.11.3) 116 | addressable (~> 2.5, >= 2.5.1) 117 | googleauth (>= 0.16.2, < 2.a) 118 | httpclient (>= 2.8.1, < 3.a) 119 | mini_mime (~> 1.0) 120 | representable (~> 3.0) 121 | retriable (>= 2.0, < 4.a) 122 | rexml 123 | google-apis-iamcredentials_v1 (0.17.0) 124 | google-apis-core (>= 0.11.0, < 2.a) 125 | google-apis-playcustomapp_v1 (0.13.0) 126 | google-apis-core (>= 0.11.0, < 2.a) 127 | google-apis-storage_v1 (0.31.0) 128 | google-apis-core (>= 0.11.0, < 2.a) 129 | google-cloud-core (1.7.0) 130 | google-cloud-env (>= 1.0, < 3.a) 131 | google-cloud-errors (~> 1.0) 132 | google-cloud-env (1.6.0) 133 | faraday (>= 0.17.3, < 3.0) 134 | google-cloud-errors (1.4.0) 135 | google-cloud-storage (1.47.0) 136 | addressable (~> 2.8) 137 | digest-crc (~> 0.4) 138 | google-apis-iamcredentials_v1 (~> 0.1) 139 | google-apis-storage_v1 (~> 0.31.0) 140 | google-cloud-core (~> 1.6) 141 | googleauth (>= 0.16.2, < 2.a) 142 | mini_mime (~> 1.0) 143 | googleauth (1.8.1) 144 | faraday (>= 0.17.3, < 3.a) 145 | jwt (>= 1.4, < 3.0) 146 | multi_json (~> 1.11) 147 | os (>= 0.9, < 2.0) 148 | signet (>= 0.16, < 2.a) 149 | highline (2.0.3) 150 | http-cookie (1.0.5) 151 | domain_name (~> 0.5) 152 | httpclient (2.8.3) 153 | jmespath (1.6.2) 154 | json (2.7.2) 155 | jwt (2.8.1) 156 | base64 157 | mini_magick (4.12.0) 158 | mini_mime (1.1.5) 159 | multi_json (1.15.0) 160 | multipart-post (2.4.1) 161 | nanaimo (0.3.0) 162 | naturally (2.2.1) 163 | nkf (0.2.0) 164 | optparse (0.5.0) 165 | os (1.1.4) 166 | plist (3.7.1) 167 | public_suffix (5.0.5) 168 | rake (13.2.1) 169 | representable (3.2.0) 170 | declarative (< 0.1.0) 171 | trailblazer-option (>= 0.1.1, < 0.2.0) 172 | uber (< 0.2.0) 173 | retriable (3.1.2) 174 | rexml (3.2.8) 175 | strscan (>= 3.0.9) 176 | rouge (2.0.7) 177 | ruby2_keywords (0.0.5) 178 | rubyzip (2.3.2) 179 | security (0.1.5) 180 | signet (0.19.0) 181 | addressable (~> 2.8) 182 | faraday (>= 0.17.5, < 3.a) 183 | jwt (>= 1.5, < 3.0) 184 | multi_json (~> 1.10) 185 | simctl (1.6.10) 186 | CFPropertyList 187 | naturally 188 | strscan (3.1.0) 189 | terminal-notifier (2.0.0) 190 | terminal-table (3.0.2) 191 | unicode-display_width (>= 1.1.1, < 3) 192 | trailblazer-option (0.1.2) 193 | tty-cursor (0.7.1) 194 | tty-screen (0.8.2) 195 | tty-spinner (0.9.3) 196 | tty-cursor (~> 0.7) 197 | uber (0.1.0) 198 | unicode-display_width (2.5.0) 199 | word_wrap (1.0.0) 200 | xcodeproj (1.24.0) 201 | CFPropertyList (>= 2.3.3, < 4.0) 202 | atomos (~> 0.1.3) 203 | claide (>= 1.0.2, < 2.0) 204 | colored2 (~> 3.1) 205 | nanaimo (~> 0.3.0) 206 | rexml (~> 3.2.4) 207 | xcpretty (0.3.0) 208 | rouge (~> 2.0.7) 209 | xcpretty-travis-formatter (1.0.1) 210 | xcpretty (~> 0.2, >= 0.0.7) 211 | 212 | PLATFORMS 213 | x86_64-linux 214 | 215 | DEPENDENCIES 216 | fastlane 217 | 218 | BUNDLED WITH 219 | 2.2.24 220 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright 2020 Sylvia van Os 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 4 | 5 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 6 | 7 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 8 | -------------------------------------------------------------------------------- /PRIVACY_POLICY.md: -------------------------------------------------------------------------------- 1 | # Privacy Policy 2 | 3 | Raise To Answer does not collect or transmit any personal information. We require the following permissions: 4 | 5 | `READ_PHONE_STATE`: This permission is required to detect an incoming call being received. It is not used for any other purpose. 6 | `ANSWER_PHONE_CALLS`: This permission is required to be able to answer an incoming phone call when you hold the app to your ear. 7 | `FOREGROUND_SERVICE`: This permission is required to be able to read sensor data on Android 9 and newer during an incoming call, so that it can be detected when the phone is near your ear. 8 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Raise To Answer (Android) 2 | 3 | ![Raise To Answer logo](app/src/main/res/mipmap-hdpi/ic_launcher.png) 4 | 5 | *Logo by [Rose (TangentFoxy)](http://github.com/TangentFoxy)* 6 | 7 | Simply hold your phone to your ear to answer an incoming call. When the app detects the phone is near your ear during an incoming call, it will beep 5 times and then answer the call. 8 | 9 | No ads, no unnecessary permissions and no unnecessary battery drain. Easy to enable and disable. Doesn't replace your incoming call screen, so you don't need to learn anything new. 10 | 11 | [Get it on IzzyOnDroid](https://apt.izzysoft.de/fdroid/index/apk/me.hackerchick.raisetoanswer) 14 | [Get it on Google Play](https://play.google.com/store/apps/details?id=me.hackerchick.raisetoanswer) 17 | 18 | ![Screenshot](fastlane/metadata/android/en-US/images/phoneScreenshots/1_en-US.png) 19 | 20 | ## How to build 21 | 22 | Building can either be done through Android Studio (not reproducible!) or the build.sh script in this repository (reproducible with OpenJDK 17). This script can also sign the build. 23 | 24 | Build without signing: 25 | ``` 26 | ./build.sh 27 | ``` 28 | 29 | Build with signing: 30 | ``` 31 | KEYSTORE=/path/to/keystore KEYSTORE_ALIAS=raisetoanswer ./build.sh 32 | ``` 33 | 34 | ### Translations 35 | 36 | 37 | Translation status 38 | 39 | 40 | ## License 41 | 42 | MIT 43 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | theme: jekyll-theme-cayman -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- 1 | apply plugin: 'com.android.application' 2 | apply plugin: 'kotlin-android' 3 | 4 | android { 5 | defaultConfig { 6 | applicationId "me.hackerchick.raisetoanswer" 7 | minSdkVersion 26 8 | compileSdk 34 9 | //noinspection ExpiredTargetSdkVersion 10 | targetSdkVersion 30 11 | versionCode 33 12 | versionName "3.6.6" 13 | 14 | testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" 15 | } 16 | 17 | buildTypes { 18 | release { 19 | minifyEnabled false 20 | proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' 21 | } 22 | } 23 | buildFeatures { 24 | viewBinding true 25 | } 26 | compileOptions { 27 | sourceCompatibility JavaVersion.VERSION_1_8 28 | targetCompatibility JavaVersion.VERSION_1_8 29 | } 30 | kotlinOptions { 31 | jvmTarget = "1.8" 32 | } 33 | namespace 'me.hackerchick.raisetoanswer' 34 | } 35 | 36 | dependencies { 37 | implementation fileTree(dir: 'libs', include: ['*.jar']) 38 | implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version" 39 | implementation 'androidx.appcompat:appcompat:1.6.1' 40 | implementation 'androidx.core:core-ktx:1.13.0' 41 | implementation 'androidx.constraintlayout:constraintlayout:2.1.4' 42 | testImplementation 'junit:junit:4.13.2' 43 | androidTestImplementation 'androidx.test.ext:junit:1.1.5' 44 | androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1' 45 | debugImplementation 'com.squareup.leakcanary:leakcanary-android:2.3' 46 | } 47 | -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Add project specific ProGuard rules here. 2 | # You can control the set of applied configuration files using the 3 | # proguardFiles setting in build.gradle. 4 | # 5 | # For more details, see 6 | # http://developer.android.com/guide/developing/tools/proguard.html 7 | 8 | # If your project uses WebView with JS, uncomment the following 9 | # and specify the fully qualified class name to the JavaScript interface 10 | # class: 11 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 12 | # public *; 13 | #} 14 | 15 | # Uncomment this to preserve the line number information for 16 | # debugging stack traces. 17 | #-keepattributes SourceFile,LineNumberTable 18 | 19 | # If you keep the line number information, uncomment this to 20 | # hide the original source file name. 21 | #-renamesourcefileattribute SourceFile 22 | -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 19 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLastProject/RaiseToAnswer/606c71184fb75eeab076ff240c3a04db8474c65b/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /app/src/main/java/me/hackerchick/raisetoanswer/RaiseToAnswerCallReceiver.kt: -------------------------------------------------------------------------------- 1 | package me.hackerchick.raisetoanswer 2 | 3 | import android.annotation.SuppressLint 4 | import android.content.BroadcastReceiver 5 | import android.content.Context 6 | import android.content.Intent 7 | import android.media.AudioManager 8 | import android.telephony.TelephonyManager 9 | 10 | class RaiseToAnswerCallReceiver : BroadcastReceiver() { 11 | @SuppressLint("MissingPermission", "NewApi") 12 | override fun onReceive(context: Context, intent: Intent?) { 13 | val state = intent!!.getStringExtra(TelephonyManager.EXTRA_STATE) 14 | 15 | val audioManager = context.getSystemService(Context.AUDIO_SERVICE) as AudioManager 16 | 17 | if (TelephonyManager.EXTRA_STATE_RINGING == state && audioManager.mode != AudioManager.MODE_IN_CALL) { 18 | Util.startSensorListener(context, false) 19 | } else { 20 | Util.stopSensorListener(context) 21 | } 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- 1 | 6 | 10 | 17 | 24 | 32 | 37 | 38 | 39 | -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- 1 | 2 | 10 | 11 | 17 | 18 | 25 | 26 | 32 | 33 | 39 | 40 | 46 | 47 | 55 | 56 | 65 | 66 | 75 | 76 | 77 | 83 | 84 | 93 | 94 | 102 | 103 | 104 | 110 | 111 | 119 | 120 | 129 | 130 | 139 | 140 | 141 |