1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2024-10-22 22:43:22 +00:00

Use cleartext traffic in beta

This commit is contained in:
Pierre HUBERT 2021-03-13 18:37:39 +01:00
parent a994d9978c
commit bc0dcbdbb1
2 changed files with 7 additions and 2 deletions

View File

@ -1,6 +1,9 @@
beta_online_release:
flutter build apk --flavor beta -t lib/main_online.dart
beta_dev_release:
flutter build apk --flavor beta -t lib/main_dev.dart
beta_online_release_split_per_abi:
flutter build apk --flavor beta -t lib/main_online.dart --target-platform android-arm,android-arm64,android-x64 --split-per-abi

View File

@ -3,7 +3,9 @@
package="org.communiquons.comunic">
<application
tools:replace="android:label"
android:label="Comunic Beta" />
android:label="Comunic Beta"
android:usesCleartextTraffic="true"
tools:replace="android:label" />
</manifest>