├── .gitignore ├── .idea ├── .gitignore ├── compiler.xml ├── gradle.xml ├── kotlinc.xml ├── misc.xml └── vcs.xml ├── LICENSE ├── README.md ├── app ├── .gitignore ├── build.gradle.kts ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── ic_launcher-playstore.png │ ├── java │ └── com │ │ └── lukeneedham │ │ └── vibrator │ │ ├── MainActivity.kt │ │ ├── ui │ │ └── main │ │ │ ├── MainPage.kt │ │ │ └── MainPageContent.kt │ │ └── util │ │ └── Vibrator.kt │ └── res │ ├── drawable │ └── ic_launcher_foreground.xml │ ├── mipmap-anydpi-v26 │ ├── ic_launcher.xml │ └── ic_launcher_round.xml │ ├── mipmap-hdpi │ ├── ic_launcher.webp │ ├── ic_launcher_background.webp │ └── ic_launcher_round.webp │ ├── mipmap-mdpi │ ├── ic_launcher.webp │ ├── ic_launcher_background.webp │ └── ic_launcher_round.webp │ ├── mipmap-xhdpi │ ├── ic_launcher.webp │ ├── ic_launcher_background.webp │ └── ic_launcher_round.webp │ ├── mipmap-xxhdpi │ ├── ic_launcher.webp │ ├── ic_launcher_background.webp │ └── ic_launcher_round.webp │ ├── mipmap-xxxhdpi │ ├── ic_launcher.webp │ ├── ic_launcher_background.webp │ └── ic_launcher_round.webp │ ├── values │ ├── strings.xml │ └── themes.xml │ └── xml │ ├── backup_rules.xml │ └── data_extraction_rules.xml ├── branding └── logo │ ├── background-adjusted.png │ ├── background-raw.png │ └── foreground.svg ├── build.gradle.kts ├── docs └── AdditionalUses.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── metadata └── en-US │ ├── changelogs │ └── 1.txt │ ├── full_description.txt │ ├── images │ ├── icon.png │ └── phoneScreenshots │ │ └── 1.png │ ├── short_description.txt │ └── title.txt └── settings.gradle.kts /.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/caches 5 | /.idea/libraries 6 | /.idea/modules.xml 7 | /.idea/workspace.xml 8 | /.idea/navEditor.xml 9 | /.idea/assetWizardSettings.xml 10 | .DS_Store 11 | /build 12 | /captures 13 | .externalNativeBuild 14 | .cxx 15 | local.properties 16 | -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 19 | 20 | -------------------------------------------------------------------------------- /.idea/kotlinc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 9 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Creative Commons Legal Code 2 | 3 | CC0 1.0 Universal 4 | 5 | CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE 6 | LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN 7 | ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS 8 | INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES 9 | REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS 10 | PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM 11 | THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED 12 | HEREUNDER. 13 | 14 | Statement of Purpose 15 | 16 | The laws of most jurisdictions throughout the world automatically confer 17 | exclusive Copyright and Related Rights (defined below) upon the creator 18 | and subsequent owner(s) (each and all, an "owner") of an original work of 19 | authorship and/or a database (each, a "Work"). 20 | 21 | Certain owners wish to permanently relinquish those rights to a Work for 22 | the purpose of contributing to a commons of creative, cultural and 23 | scientific works ("Commons") that the public can reliably and without fear 24 | of later claims of infringement build upon, modify, incorporate in other 25 | works, reuse and redistribute as freely as possible in any form whatsoever 26 | and for any purposes, including without limitation commercial purposes. 27 | These owners may contribute to the Commons to promote the ideal of a free 28 | culture and the further production of creative, cultural and scientific 29 | works, or to gain reputation or greater distribution for their Work in 30 | part through the use and efforts of others. 31 | 32 | For these and/or other purposes and motivations, and without any 33 | expectation of additional consideration or compensation, the person 34 | associating CC0 with a Work (the "Affirmer"), to the extent that he or she 35 | is an owner of Copyright and Related Rights in the Work, voluntarily 36 | elects to apply CC0 to the Work and publicly distribute the Work under its 37 | terms, with knowledge of his or her Copyright and Related Rights in the 38 | Work and the meaning and intended legal effect of CC0 on those rights. 39 | 40 | 1. Copyright and Related Rights. A Work made available under CC0 may be 41 | protected by copyright and related or neighboring rights ("Copyright and 42 | Related Rights"). Copyright and Related Rights include, but are not 43 | limited to, the following: 44 | 45 | i. the right to reproduce, adapt, distribute, perform, display, 46 | communicate, and translate a Work; 47 | ii. moral rights retained by the original author(s) and/or performer(s); 48 | iii. publicity and privacy rights pertaining to a person's image or 49 | likeness depicted in a Work; 50 | iv. rights protecting against unfair competition in regards to a Work, 51 | subject to the limitations in paragraph 4(a), below; 52 | v. rights protecting the extraction, dissemination, use and reuse of data 53 | in a Work; 54 | vi. database rights (such as those arising under Directive 96/9/EC of the 55 | European Parliament and of the Council of 11 March 1996 on the legal 56 | protection of databases, and under any national implementation 57 | thereof, including any amended or successor version of such 58 | directive); and 59 | vii. other similar, equivalent or corresponding rights throughout the 60 | world based on applicable law or treaty, and any national 61 | implementations thereof. 62 | 63 | 2. Waiver. To the greatest extent permitted by, but not in contravention 64 | of, applicable law, Affirmer hereby overtly, fully, permanently, 65 | irrevocably and unconditionally waives, abandons, and surrenders all of 66 | Affirmer's Copyright and Related Rights and associated claims and causes 67 | of action, whether now known or unknown (including existing as well as 68 | future claims and causes of action), in the Work (i) in all territories 69 | worldwide, (ii) for the maximum duration provided by applicable law or 70 | treaty (including future time extensions), (iii) in any current or future 71 | medium and for any number of copies, and (iv) for any purpose whatsoever, 72 | including without limitation commercial, advertising or promotional 73 | purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each 74 | member of the public at large and to the detriment of Affirmer's heirs and 75 | successors, fully intending that such Waiver shall not be subject to 76 | revocation, rescission, cancellation, termination, or any other legal or 77 | equitable action to disrupt the quiet enjoyment of the Work by the public 78 | as contemplated by Affirmer's express Statement of Purpose. 79 | 80 | 3. Public License Fallback. Should any part of the Waiver for any reason 81 | be judged legally invalid or ineffective under applicable law, then the 82 | Waiver shall be preserved to the maximum extent permitted taking into 83 | account Affirmer's express Statement of Purpose. In addition, to the 84 | extent the Waiver is so judged Affirmer hereby grants to each affected 85 | person a royalty-free, non transferable, non sublicensable, non exclusive, 86 | irrevocable and unconditional license to exercise Affirmer's Copyright and 87 | Related Rights in the Work (i) in all territories worldwide, (ii) for the 88 | maximum duration provided by applicable law or treaty (including future 89 | time extensions), (iii) in any current or future medium and for any number 90 | of copies, and (iv) for any purpose whatsoever, including without 91 | limitation commercial, advertising or promotional purposes (the 92 | "License"). The License shall be deemed effective as of the date CC0 was 93 | applied by Affirmer to the Work. Should any part of the License for any 94 | reason be judged legally invalid or ineffective under applicable law, such 95 | partial invalidity or ineffectiveness shall not invalidate the remainder 96 | of the License, and in such case Affirmer hereby affirms that he or she 97 | will not (i) exercise any of his or her remaining Copyright and Related 98 | Rights in the Work or (ii) assert any associated claims and causes of 99 | action with respect to the Work, in either case contrary to Affirmer's 100 | express Statement of Purpose. 101 | 102 | 4. Limitations and Disclaimers. 103 | 104 | a. No trademark or patent rights held by Affirmer are waived, abandoned, 105 | surrendered, licensed or otherwise affected by this document. 106 | b. Affirmer offers the Work as-is and makes no representations or 107 | warranties of any kind concerning the Work, express, implied, 108 | statutory or otherwise, including without limitation warranties of 109 | title, merchantability, fitness for a particular purpose, non 110 | infringement, or the absence of latent or other defects, accuracy, or 111 | the present or absence of errors, whether or not discoverable, all to 112 | the greatest extent permissible under applicable law. 113 | c. Affirmer disclaims responsibility for clearing rights of other persons 114 | that may apply to the Work or any use thereof, including without 115 | limitation any person's Copyright and Related Rights in the Work. 116 | Further, Affirmer disclaims responsibility for obtaining any necessary 117 | consents, permissions or other rights required for any use of the 118 | Work. 119 | d. Affirmer understands and acknowledges that Creative Commons is not a 120 | party to this document and has no duty or obligation with respect to 121 | this CC0 or use of the Work. 122 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |
2 | 3 | # Vibrator 4 | 5 | ### Simple Android app for starting and stopping the system vibrator 6 | 7 |
8 | 9 | 10 | ## What is this? 11 | 12 | This is a very simple Android app for starting and stopping the system vibrator. 13 | Using this app it is possible to force your device to vibrate pretty much continuously. 14 | 15 | ## Why would you want this? 16 | 17 | I built this app for myself as a way to aid with battery calibration. 18 | After replacing the battery in your Android device, it is necessary to calibrate the new battery by charging it fully, then completely draining the battery, then charging it fully once again. 19 | In order to speed up the 'draining the battery' stage, you can perform energy-intensive tasks on your device - for example, activating the torch, turning on bluetooth, and of course running the hardware vibrator. 20 | 21 | ## How does it work? 22 | 23 | The app makes use of `android.os.Vibrator` and requests that it vibrate until the user manually stops it. 24 | 25 | ## What else can you use this app for? 26 | 27 | The potential uses of this app are limitless. If you're sick of calibrating batteries, here are some other ideas: 28 | - Make music! Listen to the smoothing sounds of your Androids vibrating in harmony 29 | - Play pranks! Hide your vibrating device in the wardrobe and tell your partner there's a wasp in the house 30 | - Vibe check! Invite all your friends around and throughly vibe check them 31 | 32 | For even more usages, see the full list [here](./docs/AdditionalUses.md). 33 | 34 | ## I'm sold - how do I download it? 35 | 36 | [Get it on F-Droid](https://f-droid.org/packages/com.lukeneedham.vibrator) 39 | -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/build.gradle.kts: -------------------------------------------------------------------------------- 1 | plugins { 2 | id("com.android.application") 3 | id("org.jetbrains.kotlin.android") 4 | } 5 | 6 | android { 7 | namespace = "com.lukeneedham.vibrator" 8 | compileSdk = 34 9 | 10 | defaultConfig { 11 | applicationId = "com.lukeneedham.vibrator" 12 | minSdk = 21 13 | targetSdk = 34 14 | versionCode = 3 15 | versionName = "1.0.2" 16 | 17 | testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" 18 | vectorDrawables { 19 | useSupportLibrary = true 20 | } 21 | } 22 | 23 | buildTypes { 24 | release { 25 | isMinifyEnabled = false 26 | proguardFiles( 27 | getDefaultProguardFile("proguard-android-optimize.txt"), 28 | "proguard-rules.pro" 29 | ) 30 | } 31 | } 32 | compileOptions { 33 | sourceCompatibility = JavaVersion.VERSION_1_8 34 | targetCompatibility = JavaVersion.VERSION_1_8 35 | } 36 | kotlinOptions { 37 | jvmTarget = "1.8" 38 | } 39 | buildFeatures { 40 | compose = true 41 | } 42 | composeOptions { 43 | kotlinCompilerExtensionVersion = "1.4.3" 44 | } 45 | packaging { 46 | resources { 47 | excludes += "/META-INF/{AL2.0,LGPL2.1}" 48 | } 49 | } 50 | } 51 | 52 | dependencies { 53 | /* Activity */ 54 | implementation("androidx.activity:activity-compose:1.8.2") 55 | 56 | /* Compose */ 57 | implementation(platform("androidx.compose:compose-bom:2023.10.01")) 58 | implementation("androidx.compose.material:material") 59 | implementation("androidx.compose.ui:ui-tooling-preview") 60 | } -------------------------------------------------------------------------------- /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 -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 17 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /app/src/main/ic_launcher-playstore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeNeedham/Vibrator/633132e87adc3ae577c20d9bb9b593b5f6a397f3/app/src/main/ic_launcher-playstore.png -------------------------------------------------------------------------------- /app/src/main/java/com/lukeneedham/vibrator/MainActivity.kt: -------------------------------------------------------------------------------- 1 | package com.lukeneedham.vibrator 2 | 3 | import android.os.Bundle 4 | import androidx.activity.ComponentActivity 5 | import androidx.activity.compose.setContent 6 | import com.lukeneedham.vibrator.ui.main.MainPage 7 | import com.lukeneedham.vibrator.util.Vibrator 8 | 9 | class MainActivity : ComponentActivity() { 10 | override fun onCreate(savedInstanceState: Bundle?) { 11 | super.onCreate(savedInstanceState) 12 | setContent { 13 | MainPage( 14 | setVibrating = ::setVibrating 15 | ) 16 | } 17 | } 18 | 19 | private fun setVibrating(isVibrating: Boolean) { 20 | val vibrator = Vibrator(this) 21 | if (isVibrating) { 22 | vibrator.start() 23 | } else { 24 | vibrator.stop() 25 | } 26 | } 27 | } -------------------------------------------------------------------------------- /app/src/main/java/com/lukeneedham/vibrator/ui/main/MainPage.kt: -------------------------------------------------------------------------------- 1 | package com.lukeneedham.vibrator.ui.main 2 | 3 | import androidx.compose.runtime.Composable 4 | 5 | @Composable 6 | fun MainPage( 7 | setVibrating: (isVibrating: Boolean) -> Unit, 8 | ) { 9 | MainPageContent( 10 | startVibration = { setVibrating(true) }, 11 | stopVibration = { setVibrating(false) }, 12 | ) 13 | } -------------------------------------------------------------------------------- /app/src/main/java/com/lukeneedham/vibrator/ui/main/MainPageContent.kt: -------------------------------------------------------------------------------- 1 | package com.lukeneedham.vibrator.ui.main 2 | 3 | import androidx.compose.foundation.background 4 | import androidx.compose.foundation.clickable 5 | import androidx.compose.foundation.layout.Box 6 | import androidx.compose.foundation.layout.Column 7 | import androidx.compose.foundation.layout.fillMaxWidth 8 | import androidx.compose.material.Text 9 | import androidx.compose.runtime.Composable 10 | import androidx.compose.ui.Alignment 11 | import androidx.compose.ui.Modifier 12 | import androidx.compose.ui.graphics.Color 13 | import androidx.compose.ui.res.stringResource 14 | import androidx.compose.ui.tooling.preview.Preview 15 | import androidx.compose.ui.unit.sp 16 | import com.lukeneedham.vibrator.R 17 | 18 | @Composable 19 | fun MainPageContent(startVibration: () -> Unit, stopVibration: () -> Unit) { 20 | val startColor = Color(0xFF5D9C59) 21 | val stopColor = Color(0xFFDF2E38) 22 | 23 | Column { 24 | @Composable 25 | fun Button(text: String, color: Color, onClick: () -> Unit) { 26 | Box( 27 | contentAlignment = Alignment.Center, 28 | modifier = Modifier 29 | .weight(1f) 30 | .fillMaxWidth() 31 | .background(color = color) 32 | .clickable { onClick() } 33 | ) { 34 | Text(text = text, color = Color.White, fontSize = 40.sp) 35 | } 36 | } 37 | 38 | Button( 39 | text = stringResource(id = R.string.vibration_start), 40 | color = startColor, 41 | onClick = startVibration, 42 | ) 43 | Button( 44 | text = stringResource(id = R.string.vibration_stop), 45 | color = stopColor, 46 | onClick = stopVibration, 47 | ) 48 | } 49 | } 50 | 51 | @Preview 52 | @Composable 53 | private fun PreviewMainPageContent() { 54 | MainPageContent( 55 | startVibration = {}, 56 | stopVibration = {}, 57 | ) 58 | } -------------------------------------------------------------------------------- /app/src/main/java/com/lukeneedham/vibrator/util/Vibrator.kt: -------------------------------------------------------------------------------- 1 | package com.lukeneedham.vibrator.util 2 | 3 | import android.content.Context 4 | import android.os.Build 5 | import android.os.VibrationEffect 6 | import android.os.Vibrator 7 | import android.os.VibratorManager 8 | import androidx.activity.ComponentActivity 9 | 10 | /** High-level util for using the system vibrator APIs. Abstracts away legacy and deprecated APIs */ 11 | class Vibrator(context: Context) { 12 | /** 13 | * The maximum amplitude (force) that a vibration can have. 14 | * Depends on the hardware being able to handle custom vibration amplitude. 15 | */ 16 | private val maxAmplitude = 255 17 | 18 | /** 19 | * The duration of each section of the pattern. 20 | * If this value is too large then at some point it seems the system will cut the vibration off. 21 | * So as a workaround we loop a short vibration forever. 22 | */ 23 | private val sectionDurationMillis = 1000L 24 | 25 | /** Repeat the pattern from index 0 so the whole pattern replays */ 26 | private val repeatAtIndex = 0 27 | 28 | private val vibrator = getVibrator(context) 29 | 30 | fun start() { 31 | if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) { 32 | val timings = longArrayOf(sectionDurationMillis) 33 | val amplitudes = intArrayOf(maxAmplitude) 34 | val effect = VibrationEffect.createWaveform(timings, amplitudes, repeatAtIndex) 35 | vibrator.vibrate(effect) 36 | } else { 37 | /** The amount of delay between requesting vibration and the vibration actually starting */ 38 | val initialDelay = 0L 39 | val pattern = longArrayOf(initialDelay, sectionDurationMillis) 40 | @Suppress("DEPRECATION") 41 | vibrator.vibrate(pattern, repeatAtIndex) 42 | } 43 | } 44 | 45 | fun stop() { 46 | vibrator.cancel() 47 | } 48 | 49 | private fun getVibrator(context: Context): Vibrator = 50 | if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.S) { 51 | val vibratorManager = 52 | context.getSystemService(Context.VIBRATOR_MANAGER_SERVICE) as VibratorManager 53 | vibratorManager.defaultVibrator 54 | } else { 55 | @Suppress("DEPRECATION") 56 | context.getSystemService(ComponentActivity.VIBRATOR_SERVICE) as Vibrator 57 | } 58 | } -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- 1 | 6 | 10 | 17 | 24 | 31 | 38 | 45 | 52 | 59 | 66 | 73 | 80 | 81 | 82 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeNeedham/Vibrator/633132e87adc3ae577c20d9bb9b593b5f6a397f3/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_background.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeNeedham/Vibrator/633132e87adc3ae577c20d9bb9b593b5f6a397f3/app/src/main/res/mipmap-hdpi/ic_launcher_background.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeNeedham/Vibrator/633132e87adc3ae577c20d9bb9b593b5f6a397f3/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeNeedham/Vibrator/633132e87adc3ae577c20d9bb9b593b5f6a397f3/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_background.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeNeedham/Vibrator/633132e87adc3ae577c20d9bb9b593b5f6a397f3/app/src/main/res/mipmap-mdpi/ic_launcher_background.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeNeedham/Vibrator/633132e87adc3ae577c20d9bb9b593b5f6a397f3/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeNeedham/Vibrator/633132e87adc3ae577c20d9bb9b593b5f6a397f3/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_background.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeNeedham/Vibrator/633132e87adc3ae577c20d9bb9b593b5f6a397f3/app/src/main/res/mipmap-xhdpi/ic_launcher_background.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeNeedham/Vibrator/633132e87adc3ae577c20d9bb9b593b5f6a397f3/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeNeedham/Vibrator/633132e87adc3ae577c20d9bb9b593b5f6a397f3/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_background.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeNeedham/Vibrator/633132e87adc3ae577c20d9bb9b593b5f6a397f3/app/src/main/res/mipmap-xxhdpi/ic_launcher_background.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeNeedham/Vibrator/633132e87adc3ae577c20d9bb9b593b5f6a397f3/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeNeedham/Vibrator/633132e87adc3ae577c20d9bb9b593b5f6a397f3/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_background.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeNeedham/Vibrator/633132e87adc3ae577c20d9bb9b593b5f6a397f3/app/src/main/res/mipmap-xxxhdpi/ic_launcher_background.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LukeNeedham/Vibrator/633132e87adc3ae577c20d9bb9b593b5f6a397f3/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Vibrator 3 | Start vibrating 4 | Stop vibrating 5 | -------------------------------------------------------------------------------- /app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |