Skip to content

Commit

Permalink
docs(README): do not use tools:node
Browse files Browse the repository at this point in the history
  • Loading branch information
ThibaultBee committed Feb 29, 2024
1 parent 296fef9 commit 7b33186
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,9 @@ In your `AndroidManifest.xml` file, add the following lines in the `<application

```xml
<service
android:name="androidx.work.impl.foreground.SystemForegroundService"
android:foregroundServiceType="location|dataSync"
tools:node="merge" />
android:name="androidx.work.impl.foreground.SystemForegroundService"
android:exported="false"
android:foregroundServiceType="dataSync" />
```

#### Notifications
Expand Down
7 changes: 3 additions & 4 deletions example/android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<manifest xmlns:android="http://schemas.android.com/apk/res/android">

<uses-feature
android:name="android.hardware.camera"
Expand Down Expand Up @@ -30,8 +29,8 @@

<service
android:name="androidx.work.impl.foreground.SystemForegroundService"
android:foregroundServiceType="location|dataSync"
tools:node="merge" />
android:exported="false"
android:foregroundServiceType="dataSync" />
</application>

</manifest>

0 comments on commit 7b33186

Please sign in to comment.