Skip to content

Commit

Permalink
Override the GeoPackage library usesCleartextTraffic to be false and …
Browse files Browse the repository at this point in the history
…moved the Cellular signal chart up one card

I am not sure why the GeoPackage library has usesCleartextTraffic=true, but I don't like that so I changed it to false. I really want to get rid of the GeoPackage library but people are still using the GeoPackage files.
  • Loading branch information
christianrowlands committed Jan 15, 2024
1 parent 63d4c47 commit 809d80b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
4 changes: 3 additions & 1 deletion networksurvey/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,9 @@
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/NetworkSurveyTheme"
tools:ignore="GoogleAppIndexingWarning">
tools:ignore="GoogleAppIndexingWarning"
tools:replace="android:usesCleartextTraffic"
android:usesCleartextTraffic="false">

<activity
android:name=".NetworkSurveyActivity"
Expand Down
11 changes: 5 additions & 6 deletions networksurvey/src/main/res/layout/fragment_network_details.xml
Original file line number Diff line number Diff line change
Expand Up @@ -644,6 +644,11 @@

</androidx.cardview.widget.CardView>

<androidx.compose.ui.platform.ComposeView
android:id="@+id/compose_view"
android:layout_width="match_parent"
android:layout_height="match_parent" />

<androidx.cardview.widget.CardView
android:id="@+id/neighbors_card_view"
style="?attr/cardStyle"
Expand Down Expand Up @@ -878,12 +883,6 @@

</androidx.cardview.widget.CardView>

<androidx.compose.ui.platform.ComposeView
android:id="@+id/compose_view"
android:layout_width="match_parent"
android:layout_height="match_parent" />


</LinearLayout>

</androidx.core.widget.NestedScrollView>

0 comments on commit 809d80b

Please sign in to comment.