Skip to content

Commit

Permalink
Initial commit to add the push notification permission and some cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
HarelM committed May 22, 2024
1 parent 0e989d1 commit aaf3f16
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 139 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:
publish-npm:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/setup-node@v2
- uses: actions/checkout@mv2
- uses: actions/setup-node@v4
with:
node-version: 12
node-version: 20
registry-url: https://registry.npmjs.org/

- run: npm install
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
<uses-permission android:name="android.permission.ACCESS_LOCATION_EXTRA_COMMANDS" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.POST_NOTIFICATIONS" />

<application android:label="@string/app_name">
</application>
Expand Down
83 changes: 0 additions & 83 deletions android/common/.circleci/config.yml

This file was deleted.

Binary file removed android/common/ci/res/dummy.apk
Binary file not shown.
52 changes: 0 additions & 52 deletions android/common/ci/scripts/google_cloud.sh

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,8 @@ public class BackgroundGeolocationFacade {

public static final String[] PERMISSIONS = {
Manifest.permission.ACCESS_COARSE_LOCATION,
Manifest.permission.ACCESS_FINE_LOCATION
Manifest.permission.ACCESS_FINE_LOCATION,
Manifest.permission.PUSH_NOTIFICATION
};

private boolean mServiceBroadcastReceiverRegistered = false;
Expand Down

0 comments on commit aaf3f16

Please sign in to comment.