diff --git a/android/app/build.gradle b/android/app/build.gradle index 495a9503..151d2ce3 100755 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -175,6 +175,11 @@ dependencies { // The version of react-native is set by the React Native Gradle Plugin implementation("com.facebook.react:react-android") + // For push notifications for Android 12 > + implementation 'androidx.work:work-runtime:2.7.0' + implementation 'androidx.work:work-runtime-ktx:2.7.1' + + implementation("androidx.swiperefreshlayout:swiperefreshlayout:1.0.0") debugImplementation("com.facebook.flipper:flipper:${FLIPPER_VERSION}") diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml index 29177e2a..f4b38db7 100755 --- a/android/app/src/main/AndroidManifest.xml +++ b/android/app/src/main/AndroidManifest.xml @@ -15,6 +15,21 @@ android:theme="@style/AppTheme" android:networkSecurityConfig="@xml/network_security_config"> + + + + + + + + + + + + + + +