Skip to content
Draft
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
1 change: 1 addition & 0 deletions apps/mobile/app.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,7 @@ const config: ExpoConfig = {
"expo-router",
"expo-asset",
"expo-font",
["expo-notifications", { defaultChannel: "agent-activity" }],
"expo-secure-store",
["@clerk/expo", { theme: "./clerk-theme.json", appleSignIn: !isIosPersonalTeamBuild }],
"expo-web-browser",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,6 @@ android {
}

dependencies {
implementation 'androidx.core:core:1.18.0'
implementation project(':expo-modules-core')
}
Original file line number Diff line number Diff line change
@@ -1 +1,18 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android" />
<manifest xmlns:android="http://schemas.android.com/apk/res/android">
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
<uses-permission android:name="android.permission.FOREGROUND_SERVICE_DATA_SYNC" />
<uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
<uses-permission android:name="android.permission.POST_PROMOTED_NOTIFICATIONS" />

<application>
<receiver
android:name="expo.modules.t3nativecontrols.T3AgentActivityNotificationActionReceiver"
android:exported="false" />

<service
android:name="expo.modules.t3nativecontrols.T3AgentActivityForegroundService"
android:exported="false"
android:foregroundServiceType="dataSync"
android:stopWithTask="true" />
</application>
</manifest>
Loading
Loading