File tree Expand file tree Collapse file tree 2 files changed +28
-0
lines changed
play-services-core/src/main
kotlin/com/google/android/gms/wearable/consent Expand file tree Collapse file tree 2 files changed +28
-0
lines changed Original file line number Diff line number Diff line change 441441 </intent-filter >
442442 </service >
443443
444+ <activity
445+ android : name =" com.google.android.gms.wearable.consent.TermsOfServiceActivity"
446+ android : process =" :ui"
447+ android : configChanges =" screenSize|orientation|keyboardHidden" >
448+ <intent-filter >
449+ <action android : name =" com.google.android.gms.wearable.TOS" />
450+ <category android : name =" android.intent.category.DEFAULT" />
451+ </intent-filter >
452+ </activity >
453+
444454 <!-- Auth -->
445455
446456 <service android : name =" org.microg.gms.auth.loginservice.GoogleLoginService" >
Original file line number Diff line number Diff line change 1+ /* *
2+ * SPDX-FileCopyrightText: 2025 microG Project Team
3+ * SPDX-License-Identifier: Apache-2.0
4+ */
5+
6+ package com.google.android.gms.wearable.consent
7+
8+ import android.os.Bundle
9+ import androidx.appcompat.app.AppCompatActivity
10+
11+ class TermsOfServiceActivity : AppCompatActivity () {
12+
13+ override fun onCreate (savedInstanceState : Bundle ? ) {
14+ super .onCreate(savedInstanceState)
15+ setResult(RESULT_CANCELED )
16+ finish()
17+ }
18+ }
You can’t perform that action at this time.
0 commit comments