Skip to content

Commit 6d42f67

Browse files
committedJun 18, 2024··
installer ui 0.0.7-dev.7
1 parent aa46b1d commit 6d42f67

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+12678
-60
lines changed
 

‎android/app/capacitor.build.gradle

+3
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,11 @@ android {
99

1010
apply from: "../capacitor-cordova-android-plugins/cordova.variables.gradle"
1111
dependencies {
12+
implementation project(':capacitor-community-background-geolocation')
1213
implementation project(':capacitor-app')
14+
implementation project(':capacitor-device')
1315
implementation project(':capacitor-geolocation')
16+
implementation project(':capacitor-voice-recorder')
1417

1518
}
1619

‎android/app/src/main/res/values/strings.xml

+22
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,26 @@
44
<string name="title_activity_main">Deep</string>
55
<string name="package_name">com.deepfoundation.deep</string>
66
<string name="custom_url_scheme">com.deepfoundation.deep</string>
7+
8+
<!--
9+
The channel name for the background notification. This will be visible
10+
when the user presses & holds the notification. It defaults to
11+
"Background Tracking".
12+
-->
13+
<string name="capacitor_background_geolocation_notification_channel_name">
14+
Background Tracking
15+
</string>
16+
17+
<!--
18+
The icon to use for the background notification. Note the absence of a
19+
leading "@". It defaults to "mipmap/ic_launcher", the app's launch icon.
20+
21+
If a raster image is used to generate the icon (as opposed to a vector
22+
image), it must have a transparent background. To make sure your image
23+
is compatible, select "Notification Icons" as the Icon Type when
24+
creating the image asset in Android Studio.
25+
-->
26+
<string name="capacitor_background_geolocation_notification_icon">
27+
drawable/ic_tracking
28+
</string>
729
</resources>

0 commit comments

Comments
 (0)
Please sign in to comment.