Skip to content

Commit abc7551

Browse files
committed
Fix for "Press the 2 horizontal bars on the right of an author crashes the app". Closes zotero#114
Speeding up local dev builds.
1 parent fc0d892 commit abc7551

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

Diff for: app/src/main/AndroidManifest.xml

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
xmlns:tools="http://schemas.android.com/tools">
44

55
<uses-permission android:name="android.permission.INTERNET" />
6+
<uses-permission android:name="android.permission.VIBRATE" />
67
<uses-permission
78
android:name="android.permission.READ_EXTERNAL_STORAGE"
89
tools:node="remove" />

Diff for: gradle.properties

+6-1
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,9 @@ kotlin.code.style=official
2020
# Enables namespacing of each library's R class so that its R class includes only the
2121
# resources declared in the library itself and none from the library's dependencies,
2222
# thereby reducing the size of the R class for that library
23-
android.nonTransitiveRClass=true
23+
android.nonTransitiveRClass=true
24+
25+
org.gradle.parallel=true
26+
org.gradle.daemon=true
27+
org.gradle.configuration-cache=true
28+
org.gradle.caching=true

0 commit comments

Comments
 (0)