mirror of
https://github.com/fankes/termux-app.git
synced 2025-09-09 20:14:04 +08:00
./gradlew lint complains about vibrations being used in termux-shared/src/main/java/com/termux/shared/terminal/io/BellHandler.java without the permission being declared.
6 lines
219 B
XML
6 lines
219 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.termux.shared">
|
|
<uses-permission android:name="android.permission.VIBRATE" />
|
|
</manifest>
|