Skip to content

Commit

Permalink
No hardcoded application name in setting permission names
Browse files Browse the repository at this point in the history
  • Loading branch information
fynngodau committed Dec 16, 2023
1 parent 1df2962 commit 0631558
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions play-services-base/core/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android">

<permission android:name="org.microg.gms.permission.READ_SETTINGS"
<permission android:name="${applicationId}.permission.READ_SETTINGS"
android:protectionLevel="signature" />
<permission android:name="org.microg.gms.permission.WRITE_SETTINGS"
<permission android:name="${applicationId}.permission.WRITE_SETTINGS"
android:protectionLevel="signature" />

<application>
Expand Down

0 comments on commit 0631558

Please sign in to comment.