Skip to content

Commit

Permalink
Extra configurations to handle location issues on Android (#4651)
Browse files Browse the repository at this point in the history
  • Loading branch information
jorelosorio authored Aug 8, 2024
1 parent 916cdea commit 99f2db2
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
2 changes: 1 addition & 1 deletion android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ dependencies {
implementation 'androidx.multidex:multidex:2.0.1'
implementation "androidx.core:core-splashscreen:1.0.0"

implementation 'com.kogenta.kettle:kettle-sdk:1.2.3'
implementation 'com.kogenta.kettle:kettle-sdk:1.2.6'

debugImplementation("com.facebook.react:flipper-integration")

Expand Down
13 changes: 13 additions & 0 deletions android/app/src/beacons/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -77,5 +77,18 @@
<action android:name="android.intent.action.BOOT_COMPLETED" tools:node="merge"/>
</intent-filter>
</receiver>
<!-- Added as part of https://github.com/AtB-AS/kundevendt/issues/18747 -->
<provider
android:name="androidx.startup.InitializationProvider"
android:authorities="${applicationId}.androidx-startup"
android:exported="false"
tools:node="merge">
<meta-data
android:name="androidx.work.WorkManagerInitializer"
android:value="androidx.startup"
tools:node="merge" />
</provider>
<meta-data android:name="com.kogenta.kettle.sdk.SKIP_AUTO_INIT" android:value="true" tools:node="merge"/>
<meta-data android:name="com.kogenta.kettle.sdk.SKIP_WM_INIT" android:value="true" tools:node="merge"/>
</application>
</manifest>

0 comments on commit 99f2db2

Please sign in to comment.