Skip to content

Commit

Permalink
fix: 修正 service 權限
Browse files Browse the repository at this point in the history
- MoBSF描述: A Service is found to be shared with other apps on the device therefore
leaving it accessible to any other application on the device.
- true: 所以 app 都可以操作
- false: 只限定在同名 app 底下才可以操作
  • Loading branch information
toto850105 authored and haukepribnow committed Jun 1, 2022
1 parent 264acf5 commit b258772
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion android/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
android:name=".LocationUpdatesService"
android:foregroundServiceType="location"
android:enabled="true"
android:exported="true"
android:exported="false"
android:permission="" />
</application>
</manifest>

0 comments on commit b258772

Please sign in to comment.