- Implemented ShareRoomPicker component to allow users to pick a room for sharing content received from Android intents. - Integrated search functionality to filter rooms and directs. - Added virtualized list for efficient rendering of room options. - Created utility functions for handling Android share payloads, including fetching and clearing pending shares. Co-authored-by: Copilot <copilot@github.com>
13 lines
365 B
Java
13 lines
365 B
Java
package com.paarrot.app;
|
|
|
|
import android.os.Bundle;
|
|
import com.getcapacitor.BridgeActivity;
|
|
|
|
public class MainActivity extends BridgeActivity {
|
|
@Override
|
|
protected void onCreate(Bundle savedInstanceState) {
|
|
registerPlugin(SyncServicePlugin.class);
|
|
registerPlugin(ShareHandlerPlugin.class);
|
|
super.onCreate(savedInstanceState);
|
|
}
|
|
} |