Skip to content

Commit

Permalink
Deduplicate work account service declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
fynngodau committed Sep 13, 2024
1 parent edd5a2f commit 6aa34a1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 11 deletions.
10 changes: 7 additions & 3 deletions play-services-auth-workaccount/core/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,13 @@

<application>

<service
android:name="org.microg.gms.auth.workaccount.WorkAccountService"
android:exported="true" />
<service android:name="org.microg.gms.auth.workaccount.WorkAccountService"
android:exported="true">
<intent-filter>
<action android:name="com.google.android.gms.auth.account.workaccount.START" />
</intent-filter>
</service>

<service
android:name="com.google.android.gms.auth.account.authenticator.WorkAccountAuthenticatorService"
android:process=":persistent"
Expand Down
8 changes: 0 additions & 8 deletions play-services-core/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -493,14 +493,6 @@
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<service android:name="org.microg.gms.auth.workaccount.WorkAccountService">
<intent-filter>
<action android:name="com.google.android.gms.auth.account.workaccount.START" />
</intent-filter>
</service>

<!-- Games -->


<service android:name="org.microg.gms.signin.SignInService">
<intent-filter>
Expand Down

0 comments on commit 6aa34a1

Please sign in to comment.