Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion play-services-core/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1419,7 +1419,6 @@
<action android:name="com.google.android.gms.plus.service.image.INTENT" />
<action android:name="com.google.android.gms.plus.service.internal.START" />
<action android:name="com.google.android.gms.plus.service.START" />
<action android:name="com.google.android.gms.rcs.START" />
<action android:name="com.google.android.gms.romanesco.MODULE_BACKUP_AGENT" />
<action android:name="com.google.android.gms.romanesco.service.START" />
<action android:name="com.google.android.gms.search.service.SEARCH_AUTH_START" />
Expand Down Expand Up @@ -1474,6 +1473,13 @@
tools:ignore="WearableBindListener" />
</intent-filter>
</service>
<service android:name="org.microg.gms.rcs.RcsService"
android:process=":persistent"
android:exported="true">
<intent-filter>
<action android:name="com.google.android.gms.rcs.START" />
</intent-filter>
</service>
</application>

</manifest>
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
package org.microg.gms.rcs;

import android.app.Service;
import android.content.Intent;
import android.os.IBinder;
import android.util.Log;

public class RcsService extends Service {
private static final String TAG = "GmsRcsService";

@Override
public void onCreate() {
super.onCreate();
Log.d(TAG, "RCS Subsystem Initialized");
}

@Override
public IBinder onBind(Intent intent) {
Log.d(TAG, "Google Messages binding to RCS layer");
return null;
}
}