Skip to content

Commit

Permalink
Update project
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelbel committed Mar 31, 2024
1 parent 7949a79 commit 6ac6226
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 5 deletions.
4 changes: 0 additions & 4 deletions androidApp/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -239,10 +239,6 @@
android:name="org.michaelbel.movies.common.crashlytics.FirebaseCrashlyticsInitializer"
android:value="androidx.startup"/>-->

<meta-data
android:name="org.michaelbel.movies.network.flaker.FlakerInitializer"
android:value="androidx.startup" />

</provider>

</application>
Expand Down
19 changes: 18 additions & 1 deletion core/network-kmp/src/androidMain/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,24 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest
xmlns:android="http://schemas.android.com/apk/res/android">
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">

<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />

<application>

<provider
android:name="androidx.startup.InitializationProvider"
android:authorities="${applicationId}.androidx-startup"
android:exported="false"
tools:node="merge">

<meta-data
android:name="org.michaelbel.movies.network.flaker.FlakerInitializer"
android:value="androidx.startup" />

</provider>

</application>

</manifest>

0 comments on commit 6ac6226

Please sign in to comment.