Auto-sync: 20260308_190000
This commit is contained in:
parent
fcd16597ec
commit
d00bb4d3b1
5 changed files with 96 additions and 64 deletions
|
|
@ -46,6 +46,12 @@
|
|||
android:requestLegacyExternalStorage="true"
|
||||
android:usesCleartextTraffic="true">
|
||||
|
||||
<meta-data
|
||||
android:name="com.facebook.sdk.ApplicationId"
|
||||
android:value="@string/facebook_app_id"/>
|
||||
<meta-data
|
||||
android:name="com.facebook.sdk.ClientToken"
|
||||
android:value="@string/facebook_client_token"/>
|
||||
<activity
|
||||
android:name=".MainActivity"
|
||||
android:exported="true"
|
||||
|
|
|
|||
5
android/app/src/main/res/values/strings.xml
Normal file
5
android/app/src/main/res/values/strings.xml
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<resources>
|
||||
<string name="facebook_app_id">123456789012345</string>
|
||||
<string name="facebook_client_token">abcdef1234567890abcdef1234567890</string>
|
||||
</resources>
|
||||
|
|
@ -29,6 +29,8 @@
|
|||
<key>LSApplicationQueriesSchemes</key>
|
||||
<array>
|
||||
<string>mailto</string>
|
||||
<string>fbapi</string>
|
||||
<string>fb-messenger-share-api</string>
|
||||
</array>
|
||||
<key>LSRequiresIPhoneOS</key>
|
||||
<true/>
|
||||
|
|
@ -44,6 +46,16 @@
|
|||
<string>Serve per salvare il modulo PDF o i disegni dei danni nel rullino.</string>
|
||||
<key>NSPhotoLibraryUsageDescription</key>
|
||||
<string>Serve per allegare le foto dei danni al veicolo.</string>
|
||||
|
||||
<key>FacebookAppID</key>
|
||||
<string>INSERISCI_QUI_IL_TUO_APP_ID</string>
|
||||
<key>FacebookClientToken</key>
|
||||
<string>INSERISCI_QUI_IL_TUO_CLIENT_TOKEN</string>
|
||||
<key>FacebookDisplayName</key>
|
||||
<string>CAI Facile</string>
|
||||
|
||||
<key>NSUserTrackingUsageDescription</key>
|
||||
<string>Utilizziamo questi dati per fornirti annunci personalizzati e migliorare l'app.</string>
|
||||
<key>UIApplicationSupportsIndirectInputEvents</key>
|
||||
<true/>
|
||||
<key>UIFileSharingEnabled</key>
|
||||
|
|
|
|||
|
|
@ -241,6 +241,14 @@ packages:
|
|||
url: "https://pub.dev"
|
||||
source: hosted
|
||||
version: "5.0.3"
|
||||
facebook_app_events:
|
||||
dependency: "direct main"
|
||||
description:
|
||||
name: facebook_app_events
|
||||
sha256: "3658a3e6983c23c1c1a52eb553b1be84816abd57c186aabe9bc538a4bfac2ed6"
|
||||
url: "https://pub.dev"
|
||||
source: hosted
|
||||
version: "0.24.0"
|
||||
fake_async:
|
||||
dependency: transitive
|
||||
description:
|
||||
|
|
|
|||
|
|
@ -67,6 +67,7 @@ dependencies:
|
|||
device_info_plus: ^12.3.0
|
||||
flutter_localizations:
|
||||
sdk: flutter
|
||||
facebook_app_events: ^0.24.0
|
||||
|
||||
dev_dependencies:
|
||||
flutter_test:
|
||||
|
|
|
|||
Loading…
Reference in a new issue