2026-02-28-1
This commit is contained in:
@@ -100,4 +100,5 @@ dependencies {
|
|||||||
implementation 'com.stripe:paymentsheet:21.4.2'
|
implementation 'com.stripe:paymentsheet:21.4.2'
|
||||||
implementation 'com.scottyab:rootbeer-lib:0.1.0'
|
implementation 'com.scottyab:rootbeer-lib:0.1.0'
|
||||||
implementation 'com.google.android.gms:play-services-safetynet:18.1.0'
|
implementation 'com.google.android.gms:play-services-safetynet:18.1.0'
|
||||||
|
implementation 'com.google.android.gms:play-services-location:21.3.0'
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
package="com.your.package.name">
|
package="com.Intaleq.intaleq">
|
||||||
|
|
||||||
<!-- Permissions -->
|
<!-- Permissions -->
|
||||||
<uses-permission android:name="android.permission.INTERNET" />
|
<uses-permission android:name="android.permission.INTERNET" />
|
||||||
@@ -14,6 +14,9 @@
|
|||||||
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
||||||
<uses-permission android:name="android.permission.SCHEDULE_EXACT_ALARM" />
|
<uses-permission android:name="android.permission.SCHEDULE_EXACT_ALARM" />
|
||||||
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
||||||
|
<uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
|
||||||
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
|
||||||
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE_LOCATION" />
|
||||||
|
|
||||||
<uses-feature android:name="android.hardware.camera" />
|
<uses-feature android:name="android.hardware.camera" />
|
||||||
<uses-feature android:name="android.hardware.camera.autofocus" />
|
<uses-feature android:name="android.hardware.camera.autofocus" />
|
||||||
@@ -27,6 +30,11 @@
|
|||||||
android:usesCleartextTraffic="false"
|
android:usesCleartextTraffic="false"
|
||||||
android:networkSecurityConfig="@xml/network_security_config">
|
android:networkSecurityConfig="@xml/network_security_config">
|
||||||
|
|
||||||
|
<!-- ✅ مهم جداً: تعريف أن المشروع يستخدم V2 Embedding -->
|
||||||
|
<meta-data
|
||||||
|
android:name="flutterEmbedding"
|
||||||
|
android:value="2" />
|
||||||
|
|
||||||
<activity
|
<activity
|
||||||
android:name=".MainActivity"
|
android:name=".MainActivity"
|
||||||
android:exported="true"
|
android:exported="true"
|
||||||
@@ -47,7 +55,7 @@
|
|||||||
<category android:name="android.intent.category.LAUNCHER" />
|
<category android:name="android.intent.category.LAUNCHER" />
|
||||||
</intent-filter>
|
</intent-filter>
|
||||||
|
|
||||||
<!-- ✅ App Links (Verified Domain Only) -->
|
<!-- 🔗 App Links -->
|
||||||
<intent-filter android:autoVerify="true">
|
<intent-filter android:autoVerify="true">
|
||||||
<action android:name="android.intent.action.VIEW" />
|
<action android:name="android.intent.action.VIEW" />
|
||||||
<category android:name="android.intent.category.DEFAULT" />
|
<category android:name="android.intent.category.DEFAULT" />
|
||||||
@@ -64,7 +72,7 @@
|
|||||||
android:pathPrefix="/" />
|
android:pathPrefix="/" />
|
||||||
</intent-filter>
|
</intent-filter>
|
||||||
|
|
||||||
<!-- ✅ Custom Scheme -->
|
<!-- 🔗 Custom Scheme -->
|
||||||
<intent-filter>
|
<intent-filter>
|
||||||
<action android:name="android.intent.action.VIEW" />
|
<action android:name="android.intent.action.VIEW" />
|
||||||
<category android:name="android.intent.category.DEFAULT" />
|
<category android:name="android.intent.category.DEFAULT" />
|
||||||
@@ -98,7 +106,11 @@
|
|||||||
<action android:name="android.intent.action.MY_PACKAGE_REPLACED" />
|
<action android:name="android.intent.action.MY_PACKAGE_REPLACED" />
|
||||||
</intent-filter>
|
</intent-filter>
|
||||||
</receiver>
|
</receiver>
|
||||||
|
<service
|
||||||
|
android:name=".RideTrackingService"
|
||||||
|
android:enabled="true"
|
||||||
|
android:exported="false"
|
||||||
|
android:foregroundServiceType="location" />
|
||||||
<!-- UCrop -->
|
<!-- UCrop -->
|
||||||
<activity
|
<activity
|
||||||
android:name="com.yalantis.ucrop.UCropActivity"
|
android:name="com.yalantis.ucrop.UCropActivity"
|
||||||
|
|||||||
@@ -17,35 +17,89 @@ import kotlin.concurrent.schedule
|
|||||||
|
|
||||||
class MainActivity : FlutterFragmentActivity() {
|
class MainActivity : FlutterFragmentActivity() {
|
||||||
|
|
||||||
// The channel name is updated to use your new package name.
|
// قناة الأمان (كما هي)
|
||||||
private val CHANNEL_NAME = "com.Intaleq.intaleq/security"
|
private val SECURITY_CHANNEL_NAME = "com.Intaleq.intaleq/security"
|
||||||
private lateinit var channel: MethodChannel
|
private lateinit var securityChannel: MethodChannel
|
||||||
|
|
||||||
|
// قناة تتبّع الرحلة (Live Activity على أندرويد)
|
||||||
|
private val RIDE_TRACKING_CHANNEL = "intaleq/ride_tracking"
|
||||||
|
|
||||||
override fun configureFlutterEngine(flutterEngine: FlutterEngine) {
|
override fun configureFlutterEngine(flutterEngine: FlutterEngine) {
|
||||||
super.configureFlutterEngine(flutterEngine)
|
super.configureFlutterEngine(flutterEngine)
|
||||||
|
|
||||||
// Initialize the MethodChannel with the new name
|
// -------- 1) قناة الأمان --------
|
||||||
channel = MethodChannel(flutterEngine.dartExecutor.binaryMessenger, CHANNEL_NAME)
|
securityChannel =
|
||||||
|
MethodChannel(flutterEngine.dartExecutor.binaryMessenger, SECURITY_CHANNEL_NAME)
|
||||||
|
|
||||||
// Set a MethodCallHandler to handle method calls from Flutter
|
securityChannel.setMethodCallHandler { call, result ->
|
||||||
channel.setMethodCallHandler { call, result ->
|
|
||||||
when (call.method) {
|
when (call.method) {
|
||||||
"isNativeRooted" -> {
|
"isNativeRooted" -> {
|
||||||
val isCompromised = isDeviceCompromised()
|
val isCompromised = isDeviceCompromised()
|
||||||
result.success(isCompromised) // Send the result back to Flutter
|
result.success(isCompromised)
|
||||||
}
|
}
|
||||||
else -> {
|
else -> {
|
||||||
result.notImplemented() // Handle unknown method calls
|
result.notImplemented()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// -------- 2) قناة تتبع الرحلة (Ride Tracking) --------
|
||||||
|
MethodChannel(flutterEngine.dartExecutor.binaryMessenger, RIDE_TRACKING_CHANNEL)
|
||||||
|
.setMethodCallHandler { call, result ->
|
||||||
|
when (call.method) {
|
||||||
|
"updateRideTracking" -> {
|
||||||
|
val driverName = call.argument<String>("driverName") ?: "السائق"
|
||||||
|
val driverPhone = call.argument<String>("driverPhone") ?: ""
|
||||||
|
val carDetails = call.argument<String>("carDetails") ?: ""
|
||||||
|
|
||||||
|
val driverLat = call.argument<Double>("driverLat") ?: 0.0
|
||||||
|
val driverLng = call.argument<Double>("driverLng") ?: 0.0
|
||||||
|
val passengerLat = call.argument<Double>("passengerLat") ?: 0.0
|
||||||
|
val passengerLng = call.argument<Double>("passengerLng") ?: 0.0
|
||||||
|
val destLat = call.argument<Double>("destLat") ?: 0.0
|
||||||
|
val destLng = call.argument<Double>("destLng") ?: 0.0
|
||||||
|
|
||||||
|
val rideState =
|
||||||
|
call.argument<String>("rideState")
|
||||||
|
?: "waiting" // "waiting" أو "inProgress"
|
||||||
|
val estimatedTime = call.argument<Int>("estimatedTime") ?: 5 // بالدقائق
|
||||||
|
val totalDistance =
|
||||||
|
call.argument<Double>("totalDistance") ?: 0.0 // بالمتر
|
||||||
|
|
||||||
|
RideTrackingService.startOrUpdate(
|
||||||
|
context = this,
|
||||||
|
driverName = driverName,
|
||||||
|
driverPhone = driverPhone,
|
||||||
|
carDetails = carDetails,
|
||||||
|
driverLat = driverLat,
|
||||||
|
driverLng = driverLng,
|
||||||
|
passengerLat = passengerLat,
|
||||||
|
passengerLng = passengerLng,
|
||||||
|
destLat = destLat,
|
||||||
|
destLng = destLng,
|
||||||
|
rideState = rideState,
|
||||||
|
estimatedTime = estimatedTime,
|
||||||
|
totalDistance = totalDistance
|
||||||
|
)
|
||||||
|
|
||||||
|
result.success(null)
|
||||||
|
}
|
||||||
|
"stopRideTracking" -> {
|
||||||
|
RideTrackingService.stop(this)
|
||||||
|
result.success(null)
|
||||||
|
}
|
||||||
|
else -> {
|
||||||
|
result.notImplemented()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ---------------- أمن الجهاز (كما عندك تقريباً) ----------------
|
||||||
|
|
||||||
override fun onCreate(savedInstanceState: Bundle?) {
|
override fun onCreate(savedInstanceState: Bundle?) {
|
||||||
super.onCreate(savedInstanceState)
|
super.onCreate(savedInstanceState)
|
||||||
|
|
||||||
// Perform all checks. The order can matter; you might want to prioritize
|
|
||||||
// the faster checks first.
|
|
||||||
if (isDeviceCompromised()) {
|
if (isDeviceCompromised()) {
|
||||||
showSecurityWarningDialog()
|
showSecurityWarningDialog()
|
||||||
}
|
}
|
||||||
@@ -53,24 +107,22 @@ class MainActivity : FlutterFragmentActivity() {
|
|||||||
|
|
||||||
private fun isDeviceCompromised(): Boolean {
|
private fun isDeviceCompromised(): Boolean {
|
||||||
return try {
|
return try {
|
||||||
// NOTE: The SafetyNet check is commented out, just like in your old code.
|
|
||||||
nativeRootCheck() || rootBeerCheck() // || !safetyNetCheck()
|
nativeRootCheck() || rootBeerCheck() // || !safetyNetCheck()
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
Log.e("SecurityCheck", "Error during security checks: ${e.message}", e)
|
Log.e("SecurityCheck", "Error during security checks: ${e.message}", e)
|
||||||
true // Consider the device compromised on error
|
true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun nativeRootCheck(): Boolean {
|
private fun nativeRootCheck(): Boolean {
|
||||||
Log.d("SecurityCheck", "Starting native root detection...")
|
Log.d("SecurityCheck", "Starting native root detection...")
|
||||||
return try {
|
return try {
|
||||||
// This assumes you have a 'RootDetection' object/class in your project.
|
|
||||||
val isNativeRooted = RootDetection.isNativeRooted()
|
val isNativeRooted = RootDetection.isNativeRooted()
|
||||||
Log.d("SecurityCheck", "Native root detection result: $isNativeRooted")
|
Log.d("SecurityCheck", "Native root detection result: $isNativeRooted")
|
||||||
isNativeRooted
|
isNativeRooted
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
Log.e("SecurityCheck", "Error in native root detection: ${e.message}", e)
|
Log.e("SecurityCheck", "Error in native root detection: ${e.message}", e)
|
||||||
true // Consider rooted on exception
|
true
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -82,38 +134,36 @@ class MainActivity : FlutterFragmentActivity() {
|
|||||||
return isRooted
|
return isRooted
|
||||||
}
|
}
|
||||||
|
|
||||||
// IMPORTANT: The SafetyNet API is deprecated. It's recommended to migrate to the Play Integrity
|
// SafetyNet (معلّق كما هو)
|
||||||
// API.
|
|
||||||
// This function is kept here from your old code for reference.
|
|
||||||
private fun safetyNetCheck(): Boolean {
|
private fun safetyNetCheck(): Boolean {
|
||||||
Log.d("SecurityCheck", "Starting SafetyNet check...")
|
Log.d("SecurityCheck", "Starting SafetyNet check...")
|
||||||
var isSafe = false // Initialize a variable to store result
|
var isSafe = false
|
||||||
val semaphore = java.util.concurrent.Semaphore(0) // Create a semaphore
|
val semaphore = java.util.concurrent.Semaphore(0)
|
||||||
|
|
||||||
SafetyNetCheck.checkSafetyNet(this, getString(R.string.api_key_safety)) { result ->
|
SafetyNetCheck.checkSafetyNet(this, getString(R.string.api_key_safety)) { result ->
|
||||||
isSafe = result
|
isSafe = result
|
||||||
Log.d("SecurityCheck", "SafetyNet check result: $isSafe")
|
Log.d("SecurityCheck", "SafetyNet check result: $isSafe")
|
||||||
semaphore.release() // Release the semaphore when the callback is executed
|
semaphore.release()
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
semaphore.acquire() // Wait for the callback to complete
|
semaphore.acquire()
|
||||||
} catch (e: InterruptedException) {
|
} catch (e: InterruptedException) {
|
||||||
Log.e("SecurityCheck", "Interrupted while waiting for SafetyNet check", e)
|
Log.e("SecurityCheck", "Interrupted while waiting for SafetyNet check", e)
|
||||||
return false // Or handle as appropriate for your app
|
return false
|
||||||
}
|
}
|
||||||
return isSafe
|
return isSafe
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun showSecurityWarningDialog() {
|
private fun showSecurityWarningDialog() {
|
||||||
var secondsRemaining = 10 // Start at 10 seconds
|
var secondsRemaining = 10
|
||||||
|
|
||||||
// Create views programmatically
|
|
||||||
val progressBar = ProgressBar(this, null, android.R.attr.progressBarStyleHorizontal)
|
val progressBar = ProgressBar(this, null, android.R.attr.progressBarStyleHorizontal)
|
||||||
progressBar.max = 10 // Set max to 10 for 10 seconds
|
progressBar.max = 10
|
||||||
progressBar.progress = 10 // Start full
|
progressBar.progress = 10
|
||||||
|
|
||||||
val textView = TextView(this)
|
val textView = TextView(this)
|
||||||
textView.text = getString(R.string.security_warning_message) // Your message
|
textView.text = getString(R.string.security_warning_message)
|
||||||
textView.textAlignment = TextView.TEXT_ALIGNMENT_CENTER
|
textView.textAlignment = TextView.TEXT_ALIGNMENT_CENTER
|
||||||
|
|
||||||
val layout = LinearLayout(this)
|
val layout = LinearLayout(this)
|
||||||
@@ -124,26 +174,22 @@ class MainActivity : FlutterFragmentActivity() {
|
|||||||
|
|
||||||
val dialog =
|
val dialog =
|
||||||
AlertDialog.Builder(this)
|
AlertDialog.Builder(this)
|
||||||
.setTitle(getString(R.string.security_warning_title)) // Your title
|
.setTitle(getString(R.string.security_warning_title))
|
||||||
.setView(layout) // Set the custom layout
|
.setView(layout)
|
||||||
.setCancelable(
|
.setCancelable(false)
|
||||||
false
|
|
||||||
) // Prevent dismissing by tapping outside or back button
|
|
||||||
.create()
|
.create()
|
||||||
|
|
||||||
dialog.show()
|
dialog.show()
|
||||||
|
|
||||||
// Use a Timer to update the progress bar and countdown
|
|
||||||
val timer = Timer()
|
val timer = Timer()
|
||||||
timer.schedule(0, 1000) { // Update every 1000ms (1 second)
|
timer.schedule(0, 1000) {
|
||||||
secondsRemaining--
|
secondsRemaining--
|
||||||
runOnUiThread { // Update UI on the main thread
|
runOnUiThread {
|
||||||
progressBar.progress =
|
progressBar.progress = secondsRemaining
|
||||||
secondsRemaining // Set the progress bar to show remaining seconds
|
|
||||||
if (secondsRemaining <= 0) {
|
if (secondsRemaining <= 0) {
|
||||||
timer.cancel() // Stop the timer
|
timer.cancel()
|
||||||
dialog.dismiss() // Dismiss the dialog
|
dialog.dismiss()
|
||||||
clearAppDataAndExit() // Clear data and exit
|
clearAppDataAndExit()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -151,19 +197,16 @@ class MainActivity : FlutterFragmentActivity() {
|
|||||||
|
|
||||||
private fun clearAppDataAndExit() {
|
private fun clearAppDataAndExit() {
|
||||||
try {
|
try {
|
||||||
// Note: This command often requires system permissions and may fail on user apps.
|
|
||||||
// The fallback methods below will be used if it fails.
|
|
||||||
val packageName = applicationContext.packageName
|
val packageName = applicationContext.packageName
|
||||||
val runtime = Runtime.getRuntime()
|
val runtime = Runtime.getRuntime()
|
||||||
runtime.exec("pm clear $packageName") // Clear app data
|
runtime.exec("pm clear $packageName")
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
// Fallback to manual deletion if 'pm clear' fails
|
|
||||||
clearCache()
|
clearCache()
|
||||||
clearAppData()
|
clearAppData()
|
||||||
}
|
}
|
||||||
|
|
||||||
finishAffinity() // Finish all activities from this app
|
finishAffinity()
|
||||||
System.exit(0) // Terminate the app's process
|
System.exit(0)
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun clearCache() {
|
private fun clearCache() {
|
||||||
@@ -177,7 +220,6 @@ class MainActivity : FlutterFragmentActivity() {
|
|||||||
|
|
||||||
private fun clearAppData() {
|
private fun clearAppData() {
|
||||||
try {
|
try {
|
||||||
// Be careful with this, as it deletes everything in the app's data directory.
|
|
||||||
deleteDir(applicationContext.dataDir)
|
deleteDir(applicationContext.dataDir)
|
||||||
} catch (e: Exception) {
|
} catch (e: Exception) {
|
||||||
Log.e("SecurityCheck", "Error clearing app data: ${e.message}", e)
|
Log.e("SecurityCheck", "Error clearing app data: ${e.message}", e)
|
||||||
|
|||||||
@@ -0,0 +1,373 @@
|
|||||||
|
package com.Intaleq.intaleq
|
||||||
|
|
||||||
|
import android.app.Notification
|
||||||
|
import android.app.NotificationChannel
|
||||||
|
import android.app.NotificationManager
|
||||||
|
import android.app.PendingIntent
|
||||||
|
import android.app.Service
|
||||||
|
import android.content.Context
|
||||||
|
import android.content.Intent
|
||||||
|
import android.os.Build
|
||||||
|
import android.os.IBinder
|
||||||
|
import android.os.Looper
|
||||||
|
import android.util.Log
|
||||||
|
import android.view.View
|
||||||
|
import android.widget.RemoteViews
|
||||||
|
import androidx.core.app.NotificationCompat
|
||||||
|
import com.google.android.gms.location.FusedLocationProviderClient
|
||||||
|
import com.google.android.gms.location.LocationCallback
|
||||||
|
import com.google.android.gms.location.LocationRequest
|
||||||
|
import com.google.android.gms.location.LocationResult
|
||||||
|
import com.google.android.gms.location.LocationServices
|
||||||
|
import com.google.android.gms.location.Priority
|
||||||
|
import kotlin.math.*
|
||||||
|
|
||||||
|
class RideTrackingService : Service() {
|
||||||
|
|
||||||
|
companion object {
|
||||||
|
private const val TAG = "RideTrackingService"
|
||||||
|
|
||||||
|
const val CHANNEL_ID = "TRIP_LIVE_ACTIVITY_CHANNEL"
|
||||||
|
const val NOTIFICATION_ID = 1001
|
||||||
|
|
||||||
|
fun startOrUpdate(
|
||||||
|
context: Context,
|
||||||
|
driverName: String,
|
||||||
|
driverPhone: String,
|
||||||
|
carDetails: String,
|
||||||
|
driverLat: Double,
|
||||||
|
driverLng: Double,
|
||||||
|
passengerLat: Double,
|
||||||
|
passengerLng: Double,
|
||||||
|
destLat: Double,
|
||||||
|
destLng: Double,
|
||||||
|
rideState: String,
|
||||||
|
estimatedTime: Int,
|
||||||
|
totalDistance: Double
|
||||||
|
) {
|
||||||
|
val intent =
|
||||||
|
Intent(context, RideTrackingService::class.java).apply {
|
||||||
|
putExtra("driverName", driverName)
|
||||||
|
putExtra("driverPhone", driverPhone)
|
||||||
|
putExtra("carDetails", carDetails)
|
||||||
|
|
||||||
|
putExtra("driverLat", driverLat)
|
||||||
|
putExtra("driverLng", driverLng)
|
||||||
|
putExtra("passengerLat", passengerLat)
|
||||||
|
putExtra("passengerLng", passengerLng)
|
||||||
|
putExtra("destLat", destLat)
|
||||||
|
putExtra("destLng", destLng)
|
||||||
|
|
||||||
|
putExtra("rideState", rideState)
|
||||||
|
putExtra("estimatedTime", estimatedTime)
|
||||||
|
putExtra("totalDistance", totalDistance)
|
||||||
|
}
|
||||||
|
|
||||||
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
|
||||||
|
context.startForegroundService(intent)
|
||||||
|
} else {
|
||||||
|
context.startService(intent)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fun stop(context: Context) {
|
||||||
|
val intent = Intent(context, RideTrackingService::class.java)
|
||||||
|
context.stopService(intent)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private lateinit var fusedLocationClient: FusedLocationProviderClient
|
||||||
|
private lateinit var locationCallback: LocationCallback
|
||||||
|
private lateinit var notificationManager: NotificationManager
|
||||||
|
|
||||||
|
private var driverLatitude = 0.0
|
||||||
|
private var driverLongitude = 0.0
|
||||||
|
private var passengerLatitude = 0.0
|
||||||
|
private var passengerLongitude = 0.0
|
||||||
|
private var destinationLatitude = 0.0
|
||||||
|
private var destinationLongitude = 0.0
|
||||||
|
|
||||||
|
private var rideState: String = "waiting"
|
||||||
|
private var driverName: String = "السائق"
|
||||||
|
private var driverPhone: String = ""
|
||||||
|
private var carDetails: String = ""
|
||||||
|
private var estimatedTimeMinutes: Int = 0
|
||||||
|
private var totalDistanceMeters: Double = 0.0
|
||||||
|
private var distanceCoveredMeters: Double = 0.0
|
||||||
|
|
||||||
|
private var initialDriverDistanceToPassenger: Double = -1.0
|
||||||
|
|
||||||
|
override fun onCreate() {
|
||||||
|
super.onCreate()
|
||||||
|
|
||||||
|
fusedLocationClient = LocationServices.getFusedLocationProviderClient(this)
|
||||||
|
notificationManager = getSystemService(Context.NOTIFICATION_SERVICE) as NotificationManager
|
||||||
|
|
||||||
|
setupLocationCallback()
|
||||||
|
createNotificationChannel()
|
||||||
|
|
||||||
|
Log.d(TAG, "Service Created")
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onStartCommand(intent: Intent?, flags: Int, startId: Int): Int {
|
||||||
|
Log.d(TAG, "Service Started")
|
||||||
|
|
||||||
|
intent?.let {
|
||||||
|
driverName = it.getStringExtra("driverName") ?: "السائق"
|
||||||
|
driverPhone = it.getStringExtra("driverPhone") ?: ""
|
||||||
|
carDetails = it.getStringExtra("carDetails") ?: ""
|
||||||
|
|
||||||
|
driverLatitude = it.getDoubleExtra("driverLat", 0.0)
|
||||||
|
driverLongitude = it.getDoubleExtra("driverLng", 0.0)
|
||||||
|
passengerLatitude = it.getDoubleExtra("passengerLat", 0.0)
|
||||||
|
passengerLongitude = it.getDoubleExtra("passengerLng", 0.0)
|
||||||
|
destinationLatitude = it.getDoubleExtra("destLat", 0.0)
|
||||||
|
destinationLongitude = it.getDoubleExtra("destLng", 0.0)
|
||||||
|
|
||||||
|
rideState = it.getStringExtra("rideState") ?: "waiting"
|
||||||
|
estimatedTimeMinutes = it.getIntExtra("estimatedTime", 5)
|
||||||
|
totalDistanceMeters = it.getDoubleExtra("totalDistance", 0.0)
|
||||||
|
}
|
||||||
|
|
||||||
|
if (rideState == "waiting" && initialDriverDistanceToPassenger < 0) {
|
||||||
|
val currentDist =
|
||||||
|
calculateDistance(
|
||||||
|
passengerLatitude,
|
||||||
|
passengerLongitude,
|
||||||
|
driverLatitude,
|
||||||
|
driverLongitude
|
||||||
|
)
|
||||||
|
initialDriverDistanceToPassenger =
|
||||||
|
if (totalDistanceMeters > currentDist) totalDistanceMeters else currentDist
|
||||||
|
}
|
||||||
|
|
||||||
|
startForeground(NOTIFICATION_ID, createNotification())
|
||||||
|
startLocationUpdates()
|
||||||
|
|
||||||
|
return START_STICKY
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun setupLocationCallback() {
|
||||||
|
locationCallback =
|
||||||
|
object : LocationCallback() {
|
||||||
|
override fun onLocationResult(locationResult: LocationResult) {
|
||||||
|
for (location in locationResult.locations) {
|
||||||
|
passengerLatitude = location.latitude
|
||||||
|
passengerLongitude = location.longitude
|
||||||
|
|
||||||
|
if (rideState == "inProgress" && totalDistanceMeters > 0) {
|
||||||
|
val remainingToDest =
|
||||||
|
calculateDistance(
|
||||||
|
passengerLatitude,
|
||||||
|
passengerLongitude,
|
||||||
|
destinationLatitude,
|
||||||
|
destinationLongitude
|
||||||
|
)
|
||||||
|
distanceCoveredMeters =
|
||||||
|
(totalDistanceMeters - remainingToDest).coerceAtLeast(0.0)
|
||||||
|
}
|
||||||
|
|
||||||
|
updateNotification()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun startLocationUpdates() {
|
||||||
|
val locationRequest =
|
||||||
|
LocationRequest.Builder(Priority.PRIORITY_HIGH_ACCURACY, 5000L)
|
||||||
|
.setMinUpdateIntervalMillis(2000L)
|
||||||
|
.build()
|
||||||
|
|
||||||
|
try {
|
||||||
|
fusedLocationClient.requestLocationUpdates(
|
||||||
|
locationRequest,
|
||||||
|
locationCallback,
|
||||||
|
Looper.getMainLooper()
|
||||||
|
)
|
||||||
|
} catch (e: SecurityException) {
|
||||||
|
Log.e(TAG, "Location permission denied: ${e.message}")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun createNotification(): Notification {
|
||||||
|
val contentText = buildContentText()
|
||||||
|
|
||||||
|
// 1. جلب التصميم المخصص
|
||||||
|
val layoutId = resources.getIdentifier("notification_ride_live", "layout", packageName)
|
||||||
|
|
||||||
|
// إذا لم يجد الملف، سيطبع خطأ أحمر في اللوج
|
||||||
|
if (layoutId == 0) {
|
||||||
|
Log.e(TAG, "❌ خطأ فادح: ملف notification_ride_live.xml غير موجود!")
|
||||||
|
}
|
||||||
|
|
||||||
|
val remoteViews = RemoteViews(packageName, layoutId)
|
||||||
|
|
||||||
|
// 2. تعبئة النصوص
|
||||||
|
val subtitleId = resources.getIdentifier("tv_subtitle", "id", packageName)
|
||||||
|
val etaId = resources.getIdentifier("tv_eta", "id", packageName)
|
||||||
|
val titleId = resources.getIdentifier("tv_title", "id", packageName)
|
||||||
|
|
||||||
|
if (subtitleId != 0) remoteViews.setTextViewText(subtitleId, "$driverName • $carDetails")
|
||||||
|
if (etaId != 0) remoteViews.setTextViewText(etaId, contentText)
|
||||||
|
if (titleId != 0)
|
||||||
|
remoteViews.setTextViewText(
|
||||||
|
titleId,
|
||||||
|
if (rideState == "waiting") "السائق في الطريق إليك"
|
||||||
|
else "رحلة Intaleq جارية"
|
||||||
|
)
|
||||||
|
|
||||||
|
// 3. حساب التقدم (موقع السيارة على الشارع)
|
||||||
|
var progressIndex = 0
|
||||||
|
if (rideState == "inProgress" && totalDistanceMeters > 0) {
|
||||||
|
val percent = (distanceCoveredMeters / totalDistanceMeters).coerceIn(0.0, 1.0)
|
||||||
|
progressIndex = (percent * 9).toInt()
|
||||||
|
} else if (rideState == "waiting") {
|
||||||
|
val remainingToPassenger =
|
||||||
|
calculateDistance(
|
||||||
|
passengerLatitude,
|
||||||
|
passengerLongitude,
|
||||||
|
driverLatitude,
|
||||||
|
driverLongitude
|
||||||
|
)
|
||||||
|
val total =
|
||||||
|
if (initialDriverDistanceToPassenger > 0) initialDriverDistanceToPassenger
|
||||||
|
else remainingToPassenger.coerceAtLeast(1.0)
|
||||||
|
val percent = 1.0 - (remainingToPassenger / total).coerceIn(0.0, 1.0)
|
||||||
|
progressIndex = (percent * 9).toInt()
|
||||||
|
}
|
||||||
|
|
||||||
|
// 4. إظهار السيارة في الموضع الصحيح وإخفائها من الباقي
|
||||||
|
for (i in 0..9) {
|
||||||
|
val resId = resources.getIdentifier("car_slot_$i", "id", packageName)
|
||||||
|
if (resId != 0) {
|
||||||
|
remoteViews.setViewVisibility(
|
||||||
|
resId,
|
||||||
|
if (i == progressIndex) View.VISIBLE else View.INVISIBLE
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
val intent = Intent(this, MainActivity::class.java)
|
||||||
|
val pendingIntent =
|
||||||
|
PendingIntent.getActivity(
|
||||||
|
this,
|
||||||
|
0,
|
||||||
|
intent,
|
||||||
|
PendingIntent.FLAG_UPDATE_CURRENT or PendingIntent.FLAG_IMMUTABLE
|
||||||
|
)
|
||||||
|
|
||||||
|
// 5. بناء الإشعار (بدون استخدام setProgress نهائياً لكي لا يظهر الخط الأزرق)
|
||||||
|
val builder =
|
||||||
|
NotificationCompat.Builder(this, CHANNEL_ID)
|
||||||
|
.setSmallIcon(android.R.drawable.ic_dialog_map) // أيقونة التطبيق الصغيرة
|
||||||
|
.setStyle(
|
||||||
|
NotificationCompat.DecoratedCustomViewStyle()
|
||||||
|
) // إجباري للتصميم المخصص
|
||||||
|
.setCustomContentView(remoteViews) // التصميم عند طي الإشعار
|
||||||
|
.setCustomBigContentView(remoteViews) // التصميم عند سحب الإشعار للأسفل
|
||||||
|
.setContentIntent(pendingIntent)
|
||||||
|
.setOngoing(true)
|
||||||
|
.setPriority(NotificationCompat.PRIORITY_MAX)
|
||||||
|
.setVisibility(NotificationCompat.VISIBILITY_PUBLIC)
|
||||||
|
|
||||||
|
return builder.build()
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun buildContentText(): String {
|
||||||
|
return when (rideState) {
|
||||||
|
"waiting" -> {
|
||||||
|
val distanceToPassenger =
|
||||||
|
calculateDistance(
|
||||||
|
passengerLatitude,
|
||||||
|
passengerLongitude,
|
||||||
|
driverLatitude,
|
||||||
|
driverLongitude
|
||||||
|
)
|
||||||
|
|
||||||
|
val etaMinutes =
|
||||||
|
if (distanceToPassenger > 0) {
|
||||||
|
(distanceToPassenger / 250.0).toInt().coerceAtLeast(1)
|
||||||
|
} else {
|
||||||
|
estimatedTimeMinutes
|
||||||
|
}
|
||||||
|
|
||||||
|
"وصول خلال $etaMinutes د • ${String.format("%.1f", distanceToPassenger / 1000)} كم"
|
||||||
|
}
|
||||||
|
"inProgress" -> {
|
||||||
|
if (totalDistanceMeters > 0) {
|
||||||
|
val remaining = (totalDistanceMeters - distanceCoveredMeters).coerceAtLeast(0.0)
|
||||||
|
val progressPercent =
|
||||||
|
((distanceCoveredMeters / totalDistanceMeters) * 100)
|
||||||
|
.toInt()
|
||||||
|
.coerceIn(0, 100)
|
||||||
|
|
||||||
|
val etaMinutes =
|
||||||
|
if (estimatedTimeMinutes > 0) {
|
||||||
|
((remaining / totalDistanceMeters) * estimatedTimeMinutes)
|
||||||
|
.toInt()
|
||||||
|
.coerceAtLeast(1)
|
||||||
|
} else {
|
||||||
|
5
|
||||||
|
}
|
||||||
|
|
||||||
|
"المتبقي: ${String.format("%.1f", remaining / 1000)} كم • ~$etaMinutes د"
|
||||||
|
} else {
|
||||||
|
"الرحلة قيد التنفيذ..."
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else -> "جاري تحديث موقع الرحلة..."
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun updateNotification() {
|
||||||
|
val notification = createNotification()
|
||||||
|
notificationManager.notify(NOTIFICATION_ID, notification)
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun createNotificationChannel() {
|
||||||
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
|
||||||
|
val channel =
|
||||||
|
NotificationChannel(
|
||||||
|
CHANNEL_ID,
|
||||||
|
"تتبع الرحلة",
|
||||||
|
NotificationManager.IMPORTANCE_HIGH
|
||||||
|
)
|
||||||
|
.apply {
|
||||||
|
description = "إخطارات حية لتقدم الرحلة"
|
||||||
|
lockscreenVisibility = Notification.VISIBILITY_PUBLIC
|
||||||
|
setSound(null, null)
|
||||||
|
}
|
||||||
|
|
||||||
|
notificationManager.createNotificationChannel(channel)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun calculateDistance(lat1: Double, lng1: Double, lat2: Double, lng2: Double): Double {
|
||||||
|
val r = 6371000.0
|
||||||
|
val dLat = Math.toRadians(lat2 - lat1)
|
||||||
|
val dLng = Math.toRadians(lng2 - lng1)
|
||||||
|
|
||||||
|
val a =
|
||||||
|
sin(dLat / 2) * sin(dLat / 2) +
|
||||||
|
cos(Math.toRadians(lat1)) *
|
||||||
|
cos(Math.toRadians(lat2)) *
|
||||||
|
sin(dLng / 2) *
|
||||||
|
sin(dLng / 2)
|
||||||
|
|
||||||
|
val c = 2 * atan2(sqrt(a), sqrt(1 - a))
|
||||||
|
return r * c
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onDestroy() {
|
||||||
|
super.onDestroy()
|
||||||
|
try {
|
||||||
|
fusedLocationClient.removeLocationUpdates(locationCallback)
|
||||||
|
} catch (e: Exception) {
|
||||||
|
Log.e(TAG, "Error removing location updates: ${e.message}")
|
||||||
|
}
|
||||||
|
Log.d(TAG, "Service Destroyed")
|
||||||
|
}
|
||||||
|
|
||||||
|
override fun onBind(intent: Intent?): IBinder? = null
|
||||||
|
}
|
||||||
BIN
android/app/src/main/res/drawable/car_icon.png
Normal file
BIN
android/app/src/main/res/drawable/car_icon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 11 KiB |
18
android/app/src/main/res/drawable/road_bg.xml
Normal file
18
android/app/src/main/res/drawable/road_bg.xml
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
<item>
|
||||||
|
<shape android:shape="rectangle">
|
||||||
|
<solid android:color="#2C2C2C" />
|
||||||
|
<corners android:radius="8dp" />
|
||||||
|
</shape>
|
||||||
|
</item>
|
||||||
|
<item android:top="15dp" android:bottom="15dp">
|
||||||
|
<shape android:shape="line">
|
||||||
|
<stroke
|
||||||
|
android:color="#FFFFFF"
|
||||||
|
android:width="2dp"
|
||||||
|
android:dashWidth="10dp"
|
||||||
|
android:dashGap="10dp" />
|
||||||
|
</shape>
|
||||||
|
</item>
|
||||||
|
</layer-list>
|
||||||
157
android/app/src/main/res/layout/notification_ride_live.xml
Normal file
157
android/app/src/main/res/layout/notification_ride_live.xml
Normal file
@@ -0,0 +1,157 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:orientation="vertical"
|
||||||
|
android:padding="8dp"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content">
|
||||||
|
|
||||||
|
<!-- العنوان الرئيسي -->
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/tv_title"
|
||||||
|
android:text="رحلة Intaleq"
|
||||||
|
android:textStyle="bold"
|
||||||
|
android:textSize="14sp"
|
||||||
|
android:textColor="#FFFFFF"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content" />
|
||||||
|
|
||||||
|
<!-- سطر بيانات السائق / السيارة -->
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/tv_subtitle"
|
||||||
|
android:text="أحمد محمد • أبيض • ABC 123"
|
||||||
|
android:textSize="12sp"
|
||||||
|
android:textColor="#DDDDDD"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:paddingTop="2dp" />
|
||||||
|
|
||||||
|
<!-- خط الطريق + سلوطات السيارة -->
|
||||||
|
<FrameLayout
|
||||||
|
android:layout_marginTop="6dp"
|
||||||
|
android:layout_marginBottom="4dp"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="32dp">
|
||||||
|
|
||||||
|
<!-- خلفية الطريق -->
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/img_road"
|
||||||
|
android:src="@drawable/road_bg"
|
||||||
|
android:scaleType="fitXY"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent" />
|
||||||
|
|
||||||
|
<!-- شريط سلوطات السيارة -->
|
||||||
|
<LinearLayout
|
||||||
|
android:id="@+id/ll_car_slots"
|
||||||
|
android:orientation="horizontal"
|
||||||
|
android:gravity="center_vertical"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent"
|
||||||
|
android:paddingLeft="8dp"
|
||||||
|
android:paddingRight="8dp">
|
||||||
|
|
||||||
|
<!-- 10 سلوطات للسيارة -->
|
||||||
|
<!-- كل Slot عبارة عن ImageView، نخلي واحد بس منهم ظاهر حسب الـ progress -->
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/car_slot_0"
|
||||||
|
android:src="@drawable/car_icon"
|
||||||
|
android:layout_width="0dp"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_weight="1"
|
||||||
|
android:visibility="invisible"
|
||||||
|
android:layout_gravity="center_vertical" />
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/car_slot_1"
|
||||||
|
android:src="@drawable/car_icon"
|
||||||
|
android:layout_width="0dp"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_weight="1"
|
||||||
|
android:visibility="invisible"
|
||||||
|
android:layout_gravity="center_vertical" />
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/car_slot_2"
|
||||||
|
android:src="@drawable/car_icon"
|
||||||
|
android:layout_width="0dp"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_weight="1"
|
||||||
|
android:visibility="invisible"
|
||||||
|
android:layout_gravity="center_vertical" />
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/car_slot_3"
|
||||||
|
android:src="@drawable/car_icon"
|
||||||
|
android:layout_width="0dp"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_weight="1"
|
||||||
|
android:visibility="invisible"
|
||||||
|
android:layout_gravity="center_vertical" />
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/car_slot_4"
|
||||||
|
android:src="@drawable/car_icon"
|
||||||
|
android:layout_width="0dp"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_weight="1"
|
||||||
|
android:visibility="invisible"
|
||||||
|
android:layout_gravity="center_vertical" />
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/car_slot_5"
|
||||||
|
android:src="@drawable/car_icon"
|
||||||
|
android:layout_width="0dp"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_weight="1"
|
||||||
|
android:visibility="invisible"
|
||||||
|
android:layout_gravity="center_vertical" />
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/car_slot_6"
|
||||||
|
android:src="@drawable/car_icon"
|
||||||
|
android:layout_width="0dp"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_weight="1"
|
||||||
|
android:visibility="invisible"
|
||||||
|
android:layout_gravity="center_vertical" />
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/car_slot_7"
|
||||||
|
android:src="@drawable/car_icon"
|
||||||
|
android:layout_width="0dp"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_weight="1"
|
||||||
|
android:visibility="invisible"
|
||||||
|
android:layout_gravity="center_vertical" />
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/car_slot_8"
|
||||||
|
android:src="@drawable/car_icon"
|
||||||
|
android:layout_width="0dp"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_weight="1"
|
||||||
|
android:visibility="invisible"
|
||||||
|
android:layout_gravity="center_vertical" />
|
||||||
|
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/car_slot_9"
|
||||||
|
android:src="@drawable/car_icon"
|
||||||
|
android:layout_width="0dp"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_weight="1"
|
||||||
|
android:visibility="visible"
|
||||||
|
android:layout_gravity="center_vertical" />
|
||||||
|
</LinearLayout>
|
||||||
|
</FrameLayout>
|
||||||
|
|
||||||
|
<!-- سطر الوقت/المسافة المتبقية -->
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/tv_eta"
|
||||||
|
android:text="المتبقي: 8 كم • 12 دقيقة"
|
||||||
|
android:textSize="12sp"
|
||||||
|
android:textColor="#CCCCCC"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content" />
|
||||||
|
|
||||||
|
</LinearLayout>
|
||||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
|
|||||||
|
{"buildConfigurations":[{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98fb7fd2d39a103a30c97d1d6dfd552327","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GTMSessionFetcher","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"GTMSessionFetcher","INFOPLIST_FILE":"Target Support Files/GTMSessionFetcher/ResourceBundle-GTMSessionFetcher_Core_Privacy-GTMSessionFetcher-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","ONLY_ACTIVE_ARCH":"NO","PRODUCT_NAME":"GTMSessionFetcher_Core_Privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98bdba30ab7538b9a046098f4a8e07b232","name":"Debug"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e986be0ec9ce711d23fcbf4d19f23a8bea3","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CLANG_ENABLE_OBJC_WEAK":"NO","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GTMSessionFetcher","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"GTMSessionFetcher","INFOPLIST_FILE":"Target Support Files/GTMSessionFetcher/ResourceBundle-GTMSessionFetcher_Core_Privacy-GTMSessionFetcher-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","PRODUCT_NAME":"GTMSessionFetcher_Core_Privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e987fac791e677857f97ad80b781835dc85","name":"Profile"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e986be0ec9ce711d23fcbf4d19f23a8bea3","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GTMSessionFetcher","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"GTMSessionFetcher","INFOPLIST_FILE":"Target Support Files/GTMSessionFetcher/ResourceBundle-GTMSessionFetcher_Core_Privacy-GTMSessionFetcher-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","PRODUCT_NAME":"GTMSessionFetcher_Core_Privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98e1176cad3f04197317406a333109ac3d","name":"Release"}],"buildPhases":[{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e983d9f57c605bc10550427b76980b83d17","type":"com.apple.buildphase.sources"},{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e9827fb88eee666029907b3f6f06b3b3f44","type":"com.apple.buildphase.frameworks"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e9887721b8e1a9a202331633b08aa0b3c01","guid":"bfdfe7dc352907fc980b868725387e9853c746a424a45b4a465e6e4d3abd9826"}],"guid":"bfdfe7dc352907fc980b868725387e98d0f0a92a6af05fdaeda8abae5ca99809","type":"com.apple.buildphase.resources"}],"buildRules":[],"dependencies":[],"guid":"bfdfe7dc352907fc980b868725387e9801af34ddea6be97d757786022edb34b1","name":"GTMSessionFetcher-GTMSessionFetcher_Core_Privacy","productReference":{"guid":"bfdfe7dc352907fc980b868725387e984eb2bec9e96ca1b7af92c0697fc4108d","name":"GTMSessionFetcher_Core_Privacy.bundle","type":"product"},"productTypeIdentifier":"com.apple.product-type.bundle","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Debug","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Profile","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Release","provisioningStyle":0}],"type":"standard"}
|
||||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
|
|||||||
|
{"buildConfigurations":[{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e984d571a885c6e0b4e002a1d9b8e438a00","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/FirebaseCoreExtension","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"FirebaseCoreExtension","INFOPLIST_FILE":"Target Support Files/FirebaseCoreExtension/ResourceBundle-FirebaseCoreExtension_Privacy-FirebaseCoreExtension-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","ONLY_ACTIVE_ARCH":"NO","PRODUCT_NAME":"FirebaseCoreExtension_Privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98c1a0fbb0b457d653b4776f098c9568f9","name":"Debug"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e9870dc4cbfdb4dd4c38e028be062f436df","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CLANG_ENABLE_OBJC_WEAK":"NO","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/FirebaseCoreExtension","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"FirebaseCoreExtension","INFOPLIST_FILE":"Target Support Files/FirebaseCoreExtension/ResourceBundle-FirebaseCoreExtension_Privacy-FirebaseCoreExtension-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","PRODUCT_NAME":"FirebaseCoreExtension_Privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98d67c00d6228addace3f9c2bf1b0c2aa8","name":"Profile"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e9870dc4cbfdb4dd4c38e028be062f436df","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/FirebaseCoreExtension","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"FirebaseCoreExtension","INFOPLIST_FILE":"Target Support Files/FirebaseCoreExtension/ResourceBundle-FirebaseCoreExtension_Privacy-FirebaseCoreExtension-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","PRODUCT_NAME":"FirebaseCoreExtension_Privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e982b5bed90491abc4a83d332d454fe6350","name":"Release"}],"buildPhases":[{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e9870aee2642286965e0bac5dd72b6636c9","type":"com.apple.buildphase.sources"},{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e986f1cfdd10a06472ae1eac06f9fa07409","type":"com.apple.buildphase.frameworks"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e985705d6e6968376ca467f4db59f1cb9fa","guid":"bfdfe7dc352907fc980b868725387e9805d1c4f1a09dfceb19122d8244f4d8cd"}],"guid":"bfdfe7dc352907fc980b868725387e9849e30c20aae0e126c59bc1d86f6c72b9","type":"com.apple.buildphase.resources"}],"buildRules":[],"dependencies":[],"guid":"bfdfe7dc352907fc980b868725387e98c04ead258c2ba3f656422d1784107881","name":"FirebaseCoreExtension-FirebaseCoreExtension_Privacy","productReference":{"guid":"bfdfe7dc352907fc980b868725387e988df9a93510eab8c6f1cb7471d90295f7","name":"FirebaseCoreExtension_Privacy.bundle","type":"product"},"productTypeIdentifier":"com.apple.product-type.bundle","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Debug","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Profile","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Release","provisioningStyle":0}],"type":"standard"}
|
||||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
|
|||||||
|
{"buildConfigurations":[{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e984c399000eca9f84cb1fa84008d5a0077","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleDataTransport","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"GoogleDataTransport","INFOPLIST_FILE":"Target Support Files/GoogleDataTransport/ResourceBundle-GoogleDataTransport_Privacy-GoogleDataTransport-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","ONLY_ACTIVE_ARCH":"NO","PRODUCT_NAME":"GoogleDataTransport_Privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e985c3debe39f0a7b2c63e07d2bd005202e","name":"Debug"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98d32731a13544bdb85db9c77dbb9e18b7","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CLANG_ENABLE_OBJC_WEAK":"NO","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleDataTransport","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"GoogleDataTransport","INFOPLIST_FILE":"Target Support Files/GoogleDataTransport/ResourceBundle-GoogleDataTransport_Privacy-GoogleDataTransport-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","PRODUCT_NAME":"GoogleDataTransport_Privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e984af198db057973532fff55717b3837e1","name":"Profile"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98d32731a13544bdb85db9c77dbb9e18b7","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleDataTransport","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"GoogleDataTransport","INFOPLIST_FILE":"Target Support Files/GoogleDataTransport/ResourceBundle-GoogleDataTransport_Privacy-GoogleDataTransport-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","PRODUCT_NAME":"GoogleDataTransport_Privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e9837d7abb736027a20f245d60d264fb496","name":"Release"}],"buildPhases":[{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e98793fc77c0f47dc84f37b81555625e489","type":"com.apple.buildphase.sources"},{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e9837eff1b0fc2e09a5065fc76d87dc5af8","type":"com.apple.buildphase.frameworks"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e98c27ed01154a728895cb19e39407aa17e","guid":"bfdfe7dc352907fc980b868725387e98224f2300287c5c03da6ed59785422c55"}],"guid":"bfdfe7dc352907fc980b868725387e987e9d68ef4de974d58cc956535bc1e89c","type":"com.apple.buildphase.resources"}],"buildRules":[],"dependencies":[],"guid":"bfdfe7dc352907fc980b868725387e98bb3e3ebadbb0b9a8a4f20f605e3cb3cb","name":"GoogleDataTransport-GoogleDataTransport_Privacy","productReference":{"guid":"bfdfe7dc352907fc980b868725387e988384e3ef3584a97142df3583f18d4cf4","name":"GoogleDataTransport_Privacy.bundle","type":"product"},"productTypeIdentifier":"com.apple.product-type.bundle","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Debug","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Profile","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Release","provisioningStyle":0}],"type":"standard"}
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"buildConfigurations":[{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98dbad0e127127af63e025c655813ec286","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_local_notifications","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"flutter_local_notifications","INFOPLIST_FILE":"Target Support Files/flutter_local_notifications/ResourceBundle-flutter_local_notifications_privacy-flutter_local_notifications-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","ONLY_ACTIVE_ARCH":"NO","PRODUCT_NAME":"flutter_local_notifications_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98883b9fadff41946e0300cb6d4754caac","name":"Debug"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e982303a3b96c3bde005f3224a1a7a7b590","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CLANG_ENABLE_OBJC_WEAK":"NO","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_local_notifications","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"flutter_local_notifications","INFOPLIST_FILE":"Target Support Files/flutter_local_notifications/ResourceBundle-flutter_local_notifications_privacy-flutter_local_notifications-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","PRODUCT_NAME":"flutter_local_notifications_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98bd4cf1d950f44b40188147e38804ff37","name":"Profile"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e982303a3b96c3bde005f3224a1a7a7b590","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_local_notifications","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"flutter_local_notifications","INFOPLIST_FILE":"Target Support Files/flutter_local_notifications/ResourceBundle-flutter_local_notifications_privacy-flutter_local_notifications-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","PRODUCT_NAME":"flutter_local_notifications_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e989764c0bbce6a3b05bafab2de72995c7f","name":"Release"}],"buildPhases":[{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e988d1d22eb0b93233186dcd1d8ed5bfea4","type":"com.apple.buildphase.sources"},{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e98f9f0652c64e10586f33c9624ec50625a","type":"com.apple.buildphase.frameworks"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e986df3bb350aab3be410e76384547447bc","guid":"bfdfe7dc352907fc980b868725387e9847b7fbe0fc9185390df9e16745021399"}],"guid":"bfdfe7dc352907fc980b868725387e983a276c5c822a413f30effcfec3b6ba28","type":"com.apple.buildphase.resources"}],"buildRules":[],"dependencies":[],"guid":"bfdfe7dc352907fc980b868725387e987434bc9491ab71790f372f1bf966d056","name":"flutter_local_notifications-flutter_local_notifications_privacy","productReference":{"guid":"bfdfe7dc352907fc980b868725387e9850c87ce847b276bf243d2856d441d422","name":"flutter_local_notifications_privacy.bundle","type":"product"},"productTypeIdentifier":"com.apple.product-type.bundle","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Debug","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Profile","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Release","provisioningStyle":0}],"type":"standard"}
|
||||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
|
|||||||
|
{"buildConfigurations":[{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98397451b63bdc063b91a69c7976cf4268","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Stripe","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"Stripe","INFOPLIST_FILE":"Target Support Files/Stripe/ResourceBundle-StripeBundle-Stripe-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","ONLY_ACTIVE_ARCH":"NO","PRODUCT_NAME":"StripeBundle","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98ee22a169665767100e50b0090d948316","name":"Debug"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e982666a0fbe005c6bc8de69c629f2bd974","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CLANG_ENABLE_OBJC_WEAK":"NO","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Stripe","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"Stripe","INFOPLIST_FILE":"Target Support Files/Stripe/ResourceBundle-StripeBundle-Stripe-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","PRODUCT_NAME":"StripeBundle","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98481bef9babbb90df4b9efe669c5f2b09","name":"Profile"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e982666a0fbe005c6bc8de69c629f2bd974","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/Stripe","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"Stripe","INFOPLIST_FILE":"Target Support Files/Stripe/ResourceBundle-StripeBundle-Stripe-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","PRODUCT_NAME":"StripeBundle","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98d8bb0e15d7fdb9f5018d331e6f166a1e","name":"Release"}],"buildPhases":[{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e98b0985953d2644553b7f1738cea632c8f","type":"com.apple.buildphase.sources"},{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e9868f598dfdab3b31b88a45f9b3adc7148","type":"com.apple.buildphase.frameworks"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e98001c5ca3718f2efd4debcc13c774eb7d","guid":"bfdfe7dc352907fc980b868725387e980bbdb58b29918457e60c65273f19a651"},{"fileReference":"bfdfe7dc352907fc980b868725387e98751916d3c15727da730a7d8666aa2e80","guid":"bfdfe7dc352907fc980b868725387e98156230c88318956f714985fa7227d77e"}],"guid":"bfdfe7dc352907fc980b868725387e98143baa767671cdb5ca9016edf9c9fcf9","type":"com.apple.buildphase.resources"}],"buildRules":[],"dependencies":[],"guid":"bfdfe7dc352907fc980b868725387e98e3c8c4fe52fbe53a296306feca7852dc","name":"Stripe-StripeBundle","productReference":{"guid":"bfdfe7dc352907fc980b868725387e98624c5ba1502421cce16943b5aca33723","name":"StripeBundle.bundle","type":"product"},"productTypeIdentifier":"com.apple.product-type.bundle","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Debug","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Profile","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Release","provisioningStyle":0}],"type":"standard"}
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"buildConfigurations":[{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98a042d45070ee9d9872684852e019581e","buildSettings":{"ASSETCATALOG_COMPILER_APPICON_NAME":"AppIcon","ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME":"AccentColor","CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CLANG_ENABLE_OBJC_WEAK":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","IPHONEOS_DEPLOYMENT_TARGET":"14.0","LD_RUNPATH_SEARCH_PATHS":"$(inherited) @executable_path/Frameworks","ONLY_ACTIVE_ARCH":"NO","SDKROOT":"iphoneos","TARGETED_DEVICE_FAMILY":"1,2"},"guid":"bfdfe7dc352907fc980b868725387e982cf0da236cf10d087750aa1434da9227","name":"Debug"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98f5781d2b589a384b40039f2632dc9df4","buildSettings":{"ASSETCATALOG_COMPILER_APPICON_NAME":"AppIcon","ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME":"AccentColor","CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CLANG_ENABLE_OBJC_WEAK":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","IPHONEOS_DEPLOYMENT_TARGET":"14.0","LD_RUNPATH_SEARCH_PATHS":"$(inherited) @executable_path/Frameworks","SDKROOT":"iphoneos","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES"},"guid":"bfdfe7dc352907fc980b868725387e98cc28f154213fd8181aa70d4c188a8335","name":"Profile"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98f5781d2b589a384b40039f2632dc9df4","buildSettings":{"ASSETCATALOG_COMPILER_APPICON_NAME":"AppIcon","ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME":"AccentColor","CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CLANG_ENABLE_OBJC_WEAK":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","IPHONEOS_DEPLOYMENT_TARGET":"14.0","LD_RUNPATH_SEARCH_PATHS":"$(inherited) @executable_path/Frameworks","SDKROOT":"iphoneos","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES"},"guid":"bfdfe7dc352907fc980b868725387e981f19fefc6e52ad9e4e005a2248234387","name":"Release"}],"buildPhases":[],"buildRules":[],"dependencies":[],"guid":"bfdfe7dc352907fc980b868725387e989da425bb6d6d5d8dbb95e4afffb82217","name":"Flutter","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"","configurationName":"Debug","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"","configurationName":"Profile","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"","configurationName":"Release","provisioningStyle":0}],"type":"aggregate"}
|
||||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
|
|||||||
|
{"buildConfigurations":[{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98d1bce1edb80eee48bb4b708c73ced854","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/sqflite_darwin","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"sqflite_darwin","INFOPLIST_FILE":"Target Support Files/sqflite_darwin/ResourceBundle-sqflite_darwin_privacy-sqflite_darwin-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","ONLY_ACTIVE_ARCH":"NO","PRODUCT_NAME":"sqflite_darwin_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98e7cadd2d7da9a63f473770eda6eba176","name":"Debug"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e987b2fb89ab96580eaa39d2fcb0795d710","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CLANG_ENABLE_OBJC_WEAK":"NO","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/sqflite_darwin","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"sqflite_darwin","INFOPLIST_FILE":"Target Support Files/sqflite_darwin/ResourceBundle-sqflite_darwin_privacy-sqflite_darwin-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","PRODUCT_NAME":"sqflite_darwin_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98c1ef78c401181a94f0257af89d51efd6","name":"Profile"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e987b2fb89ab96580eaa39d2fcb0795d710","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/sqflite_darwin","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"sqflite_darwin","INFOPLIST_FILE":"Target Support Files/sqflite_darwin/ResourceBundle-sqflite_darwin_privacy-sqflite_darwin-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","PRODUCT_NAME":"sqflite_darwin_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e9889fb3f75e9be3149d76154cb61437b95","name":"Release"}],"buildPhases":[{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e982181c2a2af35721ff362023d5a1bc71a","type":"com.apple.buildphase.sources"},{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e98bb7bb571a54fb9cbd03a57fd758e819e","type":"com.apple.buildphase.frameworks"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e98d033b7fd47c9d6faabc485c9b04a38df","guid":"bfdfe7dc352907fc980b868725387e98a6302c714b0e68817decf8270facbb08"}],"guid":"bfdfe7dc352907fc980b868725387e983e5f39a0289e7d9e2e01bad713f58189","type":"com.apple.buildphase.resources"}],"buildRules":[],"dependencies":[],"guid":"bfdfe7dc352907fc980b868725387e9883134bb5f399cb37a1eb075d4fea30d8","name":"sqflite_darwin-sqflite_darwin_privacy","productReference":{"guid":"bfdfe7dc352907fc980b868725387e9849c1d4b1200fcbf6f387f94121c7d0bf","name":"sqflite_darwin_privacy.bundle","type":"product"},"productTypeIdentifier":"com.apple.product-type.bundle","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Debug","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Profile","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Release","provisioningStyle":0}],"type":"standard"}
|
||||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
|
|||||||
|
{"buildConfigurations":[{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e9884d780aec6385574ac1238bd2d9c4ce2","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/local_auth_darwin","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"local_auth_darwin","INFOPLIST_FILE":"Target Support Files/local_auth_darwin/ResourceBundle-local_auth_darwin_privacy-local_auth_darwin-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","ONLY_ACTIVE_ARCH":"NO","PRODUCT_NAME":"local_auth_darwin_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e9844892f39afa830c282787f48a6aa4df4","name":"Debug"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e988d51c61c5063a12bde00d65a84fffea5","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CLANG_ENABLE_OBJC_WEAK":"NO","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/local_auth_darwin","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"local_auth_darwin","INFOPLIST_FILE":"Target Support Files/local_auth_darwin/ResourceBundle-local_auth_darwin_privacy-local_auth_darwin-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","PRODUCT_NAME":"local_auth_darwin_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e982a722131747c08a28bc3f27239482f97","name":"Profile"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e988d51c61c5063a12bde00d65a84fffea5","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/local_auth_darwin","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"local_auth_darwin","INFOPLIST_FILE":"Target Support Files/local_auth_darwin/ResourceBundle-local_auth_darwin_privacy-local_auth_darwin-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","PRODUCT_NAME":"local_auth_darwin_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e988cbcbe516892d6d925deb827876fd449","name":"Release"}],"buildPhases":[{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e984952fa3c5cb166a643c9b1a3e178d67c","type":"com.apple.buildphase.sources"},{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e983e9b88993cc94c21273f347eb37dd412","type":"com.apple.buildphase.frameworks"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e980b44e329e96f1a8d9405333279c81f91","guid":"bfdfe7dc352907fc980b868725387e987a96b92da1292f63e4ab9e114ec3ef8c"}],"guid":"bfdfe7dc352907fc980b868725387e989ffae3b89927f00ac0f3a3dd963001a7","type":"com.apple.buildphase.resources"}],"buildRules":[],"dependencies":[],"guid":"bfdfe7dc352907fc980b868725387e98afb8e8e2ed6a0ef9cb1d99282c22f170","name":"local_auth_darwin-local_auth_darwin_privacy","productReference":{"guid":"bfdfe7dc352907fc980b868725387e9899e37153e5b26774a3fd38635d02a847","name":"local_auth_darwin_privacy.bundle","type":"product"},"productTypeIdentifier":"com.apple.product-type.bundle","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Debug","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Profile","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Release","provisioningStyle":0}],"type":"standard"}
|
||||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
|
|||||||
|
{"buildConfigurations":[{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e985b161c35c6cdcc3982b62fb2a57bf5e2","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/path_provider_foundation","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"path_provider_foundation","INFOPLIST_FILE":"Target Support Files/path_provider_foundation/ResourceBundle-path_provider_foundation_privacy-path_provider_foundation-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","ONLY_ACTIVE_ARCH":"NO","PRODUCT_NAME":"path_provider_foundation_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e9884a7e43f21c7355e5f79f7c6ad1bc587","name":"Debug"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e9876fda34fdff49309c93ef86f4827346b","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CLANG_ENABLE_OBJC_WEAK":"NO","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/path_provider_foundation","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"path_provider_foundation","INFOPLIST_FILE":"Target Support Files/path_provider_foundation/ResourceBundle-path_provider_foundation_privacy-path_provider_foundation-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","PRODUCT_NAME":"path_provider_foundation_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98557d2ae966d0758da96242181fc40051","name":"Profile"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e9876fda34fdff49309c93ef86f4827346b","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/path_provider_foundation","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"path_provider_foundation","INFOPLIST_FILE":"Target Support Files/path_provider_foundation/ResourceBundle-path_provider_foundation_privacy-path_provider_foundation-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","PRODUCT_NAME":"path_provider_foundation_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98977d1fccef86edce39621202e2858ba3","name":"Release"}],"buildPhases":[{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e988b6743284830cba6e7910a3bf891c5c8","type":"com.apple.buildphase.sources"},{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e9803a710500cdd575349db987d73d67db9","type":"com.apple.buildphase.frameworks"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e987189a492719df79b6dae7e5abbae94d9","guid":"bfdfe7dc352907fc980b868725387e9858ab2f9619be98bdb102aa1d5f63156f"}],"guid":"bfdfe7dc352907fc980b868725387e980ce79605945d62b3be8506027ab9dc91","type":"com.apple.buildphase.resources"}],"buildRules":[],"dependencies":[],"guid":"bfdfe7dc352907fc980b868725387e987ea64ee8d53085bf9edd1a57aaf8cbb5","name":"path_provider_foundation-path_provider_foundation_privacy","productReference":{"guid":"bfdfe7dc352907fc980b868725387e986e649604f74c414a7c2dbe5ef4cc4e75","name":"path_provider_foundation_privacy.bundle","type":"product"},"productTypeIdentifier":"com.apple.product-type.bundle","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Debug","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Profile","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Release","provisioningStyle":0}],"type":"standard"}
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"buildConfigurations":[{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98c1e86a53f798b56d1ddfe95f5a9d8f53","buildSettings":{"ASSETCATALOG_COMPILER_APPICON_NAME":"AppIcon","ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME":"AccentColor","CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CLANG_ENABLE_OBJC_WEAK":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","IPHONEOS_DEPLOYMENT_TARGET":"14.0","LD_RUNPATH_SEARCH_PATHS":"$(inherited) @executable_path/Frameworks","ONLY_ACTIVE_ARCH":"NO","SDKROOT":"iphoneos","TARGETED_DEVICE_FAMILY":"1,2"},"guid":"bfdfe7dc352907fc980b868725387e9859bda98b67e42aa4c4bfd3b11da45d1d","name":"Debug"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e989fb55a2292d7f3cc11f55c76106f238d","buildSettings":{"ASSETCATALOG_COMPILER_APPICON_NAME":"AppIcon","ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME":"AccentColor","CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CLANG_ENABLE_OBJC_WEAK":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","IPHONEOS_DEPLOYMENT_TARGET":"14.0","LD_RUNPATH_SEARCH_PATHS":"$(inherited) @executable_path/Frameworks","SDKROOT":"iphoneos","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES"},"guid":"bfdfe7dc352907fc980b868725387e98da06b404de33cfecb553b3912a8f464e","name":"Profile"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e989fb55a2292d7f3cc11f55c76106f238d","buildSettings":{"ASSETCATALOG_COMPILER_APPICON_NAME":"AppIcon","ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME":"AccentColor","CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CLANG_ENABLE_OBJC_WEAK":"NO","ENABLE_USER_SCRIPT_SANDBOXING":"NO","IPHONEOS_DEPLOYMENT_TARGET":"14.0","LD_RUNPATH_SEARCH_PATHS":"$(inherited) @executable_path/Frameworks","SDKROOT":"iphoneos","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES"},"guid":"bfdfe7dc352907fc980b868725387e98a3b38e46e9d756b53ead3e9c5257c82c","name":"Release"}],"buildPhases":[],"buildRules":[],"dependencies":[{"guid":"bfdfe7dc352907fc980b868725387e98b762d5de103fb6cfc7506aa6be1d4f33","name":"FirebaseAuth"},{"guid":"bfdfe7dc352907fc980b868725387e98a408a4c1f668e62161cdeba76f57d50c","name":"FirebaseCore"},{"guid":"bfdfe7dc352907fc980b868725387e983da17a3564c774dfaa331fa07754d2bc","name":"FirebaseMessaging"}],"guid":"bfdfe7dc352907fc980b868725387e98d57b8bce60a0f11113f4cff532db68d3","name":"Firebase","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"","configurationName":"Debug","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"","configurationName":"Profile","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"","configurationName":"Release","provisioningStyle":0}],"type":"aggregate"}
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"buildConfigurations":[{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98a67584dfbe1b6bbb47e479b914a31ef0","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/url_launcher_ios","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"url_launcher_ios","INFOPLIST_FILE":"Target Support Files/url_launcher_ios/ResourceBundle-url_launcher_ios_privacy-url_launcher_ios-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","ONLY_ACTIVE_ARCH":"NO","PRODUCT_NAME":"url_launcher_ios_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98443b0ebda13a2730abef52f3f1d4ef7e","name":"Debug"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e9855f0487880d9dda3dd48cd0fdfe46d18","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CLANG_ENABLE_OBJC_WEAK":"NO","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/url_launcher_ios","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"url_launcher_ios","INFOPLIST_FILE":"Target Support Files/url_launcher_ios/ResourceBundle-url_launcher_ios_privacy-url_launcher_ios-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","PRODUCT_NAME":"url_launcher_ios_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e985a797cf15710c656bdd8fc7061d328e8","name":"Profile"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e9855f0487880d9dda3dd48cd0fdfe46d18","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/url_launcher_ios","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"url_launcher_ios","INFOPLIST_FILE":"Target Support Files/url_launcher_ios/ResourceBundle-url_launcher_ios_privacy-url_launcher_ios-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","PRODUCT_NAME":"url_launcher_ios_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e9872b7a2122d460dea7fcff4eb2bd6eada","name":"Release"}],"buildPhases":[{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e98b5ad9500c4d1dc7476561fbb90380e95","type":"com.apple.buildphase.sources"},{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e98aed3a1bae2ec550cd647c9b7c84293bd","type":"com.apple.buildphase.frameworks"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e981ec999e6769089c00c7553263d5824f9","guid":"bfdfe7dc352907fc980b868725387e985f4bde37c6a002398bc39a90cdf3e6ec"}],"guid":"bfdfe7dc352907fc980b868725387e986ce5c6911dd651e769ac64a2499a72e5","type":"com.apple.buildphase.resources"}],"buildRules":[],"dependencies":[],"guid":"bfdfe7dc352907fc980b868725387e9891b3b8cc56823cdea4b418e009a423b2","name":"url_launcher_ios-url_launcher_ios_privacy","productReference":{"guid":"bfdfe7dc352907fc980b868725387e9827df8da513ac7d6928fc311b53a7155d","name":"url_launcher_ios_privacy.bundle","type":"product"},"productTypeIdentifier":"com.apple.product-type.bundle","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Debug","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Profile","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Release","provisioningStyle":0}],"type":"standard"}
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"buildConfigurations":[{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98805440b5dfd0cdb60cffc5051d918fc6","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/AppAuth","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"AppAuth","INFOPLIST_FILE":"Target Support Files/AppAuth/ResourceBundle-AppAuthCore_Privacy-AppAuth-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","ONLY_ACTIVE_ARCH":"NO","PRODUCT_NAME":"AppAuthCore_Privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98c777e6082e1ba04b545f54c1e64b0c2c","name":"Debug"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98447885dff34144fec1d9c8fd954d1af9","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CLANG_ENABLE_OBJC_WEAK":"NO","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/AppAuth","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"AppAuth","INFOPLIST_FILE":"Target Support Files/AppAuth/ResourceBundle-AppAuthCore_Privacy-AppAuth-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","PRODUCT_NAME":"AppAuthCore_Privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98f353060e15c6eafe1d572f5f16b71944","name":"Profile"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98447885dff34144fec1d9c8fd954d1af9","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/AppAuth","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"AppAuth","INFOPLIST_FILE":"Target Support Files/AppAuth/ResourceBundle-AppAuthCore_Privacy-AppAuth-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","PRODUCT_NAME":"AppAuthCore_Privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98eb831c056786bee0c72b42e85d8c324f","name":"Release"}],"buildPhases":[{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e98f1a4c653d51b49ee2126f75bac46145b","type":"com.apple.buildphase.sources"},{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e98324ecfd06150c03b9229bd2d11c6a3f9","type":"com.apple.buildphase.frameworks"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e9892771118b5897ebae65786c46312a3a8","guid":"bfdfe7dc352907fc980b868725387e98ace2500ee04dd49c887e922b1f6ef069"}],"guid":"bfdfe7dc352907fc980b868725387e98c99f93e05d3d4d9bfce4e72d8c4fa52f","type":"com.apple.buildphase.resources"}],"buildRules":[],"dependencies":[],"guid":"bfdfe7dc352907fc980b868725387e98410c96b4e26fc36411e63b84c3491605","name":"AppAuth-AppAuthCore_Privacy","productReference":{"guid":"bfdfe7dc352907fc980b868725387e986d566b0f46776138a3ba88837e01b2bf","name":"AppAuthCore_Privacy.bundle","type":"product"},"productTypeIdentifier":"com.apple.product-type.bundle","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Debug","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Profile","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Release","provisioningStyle":0}],"type":"standard"}
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"buildConfigurations":[{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e983a7728999e5d54bad3bc9d5dd42f1c38","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/permission_handler_apple","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"permission_handler_apple","INFOPLIST_FILE":"Target Support Files/permission_handler_apple/ResourceBundle-permission_handler_apple_privacy-permission_handler_apple-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","ONLY_ACTIVE_ARCH":"NO","PRODUCT_NAME":"permission_handler_apple_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e980b392a87a262a8603992d64b36ae2d7a","name":"Debug"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e9858024f03e0e554ef59433b4226eb6865","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CLANG_ENABLE_OBJC_WEAK":"NO","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/permission_handler_apple","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"permission_handler_apple","INFOPLIST_FILE":"Target Support Files/permission_handler_apple/ResourceBundle-permission_handler_apple_privacy-permission_handler_apple-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","PRODUCT_NAME":"permission_handler_apple_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98092b809d6fa92cdf7018fbb276293ff6","name":"Profile"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e9858024f03e0e554ef59433b4226eb6865","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/permission_handler_apple","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"permission_handler_apple","INFOPLIST_FILE":"Target Support Files/permission_handler_apple/ResourceBundle-permission_handler_apple_privacy-permission_handler_apple-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","PRODUCT_NAME":"permission_handler_apple_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e9876603147f368244825b72a2f536769b0","name":"Release"}],"buildPhases":[{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e985bcd91094108d9a8e0051f523181efff","type":"com.apple.buildphase.sources"},{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e987e2fb8b2ac878e6d82fc21e7ab2c9ce3","type":"com.apple.buildphase.frameworks"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e98574ad508ae3841a7cc874ca0d5c2ce59","guid":"bfdfe7dc352907fc980b868725387e98e8b225d5e5496ce872c3ef926198c951"}],"guid":"bfdfe7dc352907fc980b868725387e989c7866245110aaa64f11e5ae774af358","type":"com.apple.buildphase.resources"}],"buildRules":[],"dependencies":[],"guid":"bfdfe7dc352907fc980b868725387e9802f35ab680609a626ebd2ddd692a3822","name":"permission_handler_apple-permission_handler_apple_privacy","productReference":{"guid":"bfdfe7dc352907fc980b868725387e983e9a904e8a35cb34b69458780be142b3","name":"permission_handler_apple_privacy.bundle","type":"product"},"productTypeIdentifier":"com.apple.product-type.bundle","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Debug","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Profile","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Release","provisioningStyle":0}],"type":"standard"}
|
||||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
|
|||||||
|
{"buildConfigurations":[{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98e86f23ca919d2094d0e7a41359c31f2d","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_secure_storage_darwin","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"flutter_secure_storage_darwin","INFOPLIST_FILE":"Target Support Files/flutter_secure_storage_darwin/ResourceBundle-flutter_secure_storage-flutter_secure_storage_darwin-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","ONLY_ACTIVE_ARCH":"NO","PRODUCT_NAME":"flutter_secure_storage","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98566a41de4c89fbc64123f5eb0e639d46","name":"Debug"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98668decd0e5bc207749faf272cdada4bd","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CLANG_ENABLE_OBJC_WEAK":"NO","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_secure_storage_darwin","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"flutter_secure_storage_darwin","INFOPLIST_FILE":"Target Support Files/flutter_secure_storage_darwin/ResourceBundle-flutter_secure_storage-flutter_secure_storage_darwin-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","PRODUCT_NAME":"flutter_secure_storage","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98a71c401ddc52f56d8d00d3cbed6eb07d","name":"Profile"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98668decd0e5bc207749faf272cdada4bd","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/flutter_secure_storage_darwin","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"flutter_secure_storage_darwin","INFOPLIST_FILE":"Target Support Files/flutter_secure_storage_darwin/ResourceBundle-flutter_secure_storage-flutter_secure_storage_darwin-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","PRODUCT_NAME":"flutter_secure_storage","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e986db273c3d1f6da2570ed23b1da8c8384","name":"Release"}],"buildPhases":[{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e98ae70bfb588e9d9149631534bc2d7a688","type":"com.apple.buildphase.sources"},{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e981f01a1fe71a92ecb8e375c3e60f5f9ae","type":"com.apple.buildphase.frameworks"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e98b32f923f1bc527c5e29f06ba060ff9d7","guid":"bfdfe7dc352907fc980b868725387e98678cd187e0a8e1975b3a9652a1cfd37f"}],"guid":"bfdfe7dc352907fc980b868725387e98847ed1e4020170f400518a5d0e6b8e5c","type":"com.apple.buildphase.resources"}],"buildRules":[],"dependencies":[],"guid":"bfdfe7dc352907fc980b868725387e980f2559d7bb91bf20e712e903228b4ae5","name":"flutter_secure_storage_darwin-flutter_secure_storage","productReference":{"guid":"bfdfe7dc352907fc980b868725387e98d9ca82c0ad8a79fc923897446ebee09b","name":"flutter_secure_storage.bundle","type":"product"},"productTypeIdentifier":"com.apple.product-type.bundle","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Debug","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Profile","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Release","provisioningStyle":0}],"type":"standard"}
|
||||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
|
|||||||
|
{"buildConfigurations":[{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98720dbbe7c9df49631b35387acf838367","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/FirebaseAuth","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"FirebaseAuth","INFOPLIST_FILE":"Target Support Files/FirebaseAuth/ResourceBundle-FirebaseAuth_Privacy-FirebaseAuth-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","ONLY_ACTIVE_ARCH":"NO","PRODUCT_NAME":"FirebaseAuth_Privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e988d6e2a3ae8e5a1e523f6fb9b5205a318","name":"Debug"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98367551610e6518fd33172aeafabd26e0","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CLANG_ENABLE_OBJC_WEAK":"NO","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/FirebaseAuth","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"FirebaseAuth","INFOPLIST_FILE":"Target Support Files/FirebaseAuth/ResourceBundle-FirebaseAuth_Privacy-FirebaseAuth-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","PRODUCT_NAME":"FirebaseAuth_Privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e982c8f506eb69171f400864b0353e9bdf4","name":"Profile"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98367551610e6518fd33172aeafabd26e0","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/FirebaseAuth","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"FirebaseAuth","INFOPLIST_FILE":"Target Support Files/FirebaseAuth/ResourceBundle-FirebaseAuth_Privacy-FirebaseAuth-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","PRODUCT_NAME":"FirebaseAuth_Privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98ef12157c340dbfe40560fcc50497247b","name":"Release"}],"buildPhases":[{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e98f283b213c2eda620ea56b4a66411ef33","type":"com.apple.buildphase.sources"},{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e988e9f3e9f46e036328120576352523aee","type":"com.apple.buildphase.frameworks"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e98a42897f5ee2fb1022d28946089d3ecc6","guid":"bfdfe7dc352907fc980b868725387e98ef9c2e2093a655c9c464f9ae99d5cb2e"}],"guid":"bfdfe7dc352907fc980b868725387e98dda468279e74d5fcd9f156cae5e3b461","type":"com.apple.buildphase.resources"}],"buildRules":[],"dependencies":[],"guid":"bfdfe7dc352907fc980b868725387e98205354208adeebae46380f8f82956de4","name":"FirebaseAuth-FirebaseAuth_Privacy","productReference":{"guid":"bfdfe7dc352907fc980b868725387e9870db214ed2dafc4df91a7caff7044acf","name":"FirebaseAuth_Privacy.bundle","type":"product"},"productTypeIdentifier":"com.apple.product-type.bundle","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Debug","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Profile","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Release","provisioningStyle":0}],"type":"standard"}
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"buildConfigurations":[{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e9834de900be691986d89070ffe1ef3dd81","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/FirebaseCore","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"FirebaseCore","INFOPLIST_FILE":"Target Support Files/FirebaseCore/ResourceBundle-FirebaseCore_Privacy-FirebaseCore-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","ONLY_ACTIVE_ARCH":"NO","PRODUCT_NAME":"FirebaseCore_Privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98ba67d1ed2b36bd0a36981ef66771823f","name":"Debug"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e9861d3a63f7e2d3e2aa5642fa03060fc45","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CLANG_ENABLE_OBJC_WEAK":"NO","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/FirebaseCore","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"FirebaseCore","INFOPLIST_FILE":"Target Support Files/FirebaseCore/ResourceBundle-FirebaseCore_Privacy-FirebaseCore-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","PRODUCT_NAME":"FirebaseCore_Privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98f1911365a69d194da2c75e342365d4a1","name":"Profile"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e9861d3a63f7e2d3e2aa5642fa03060fc45","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/FirebaseCore","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"FirebaseCore","INFOPLIST_FILE":"Target Support Files/FirebaseCore/ResourceBundle-FirebaseCore_Privacy-FirebaseCore-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","PRODUCT_NAME":"FirebaseCore_Privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e9859da59e9a6b0adab6cb9e1a5e16ad85b","name":"Release"}],"buildPhases":[{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e98611ec1ea41d02a24b690b41b7eb2785d","type":"com.apple.buildphase.sources"},{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e986f64576d6bea25ab6c41b9fbdfbddccb","type":"com.apple.buildphase.frameworks"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e9823250a26017dca642ec9cc97b67db848","guid":"bfdfe7dc352907fc980b868725387e988d8098f4c78a73e2eb2657e05b6b2dfa"}],"guid":"bfdfe7dc352907fc980b868725387e989a31b785d0074f1431baaef2c7d8f97c","type":"com.apple.buildphase.resources"}],"buildRules":[],"dependencies":[],"guid":"bfdfe7dc352907fc980b868725387e98678fb6500ea02c78520816441717cc14","name":"FirebaseCore-FirebaseCore_Privacy","productReference":{"guid":"bfdfe7dc352907fc980b868725387e981126092e527a43878ba047c0d6b5be37","name":"FirebaseCore_Privacy.bundle","type":"product"},"productTypeIdentifier":"com.apple.product-type.bundle","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Debug","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Profile","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Release","provisioningStyle":0}],"type":"standard"}
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"buildConfigurations":[{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e985b8cb516c68ad3b43e3839d6c2360cd7","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/image_picker_ios","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"image_picker_ios","INFOPLIST_FILE":"Target Support Files/image_picker_ios/ResourceBundle-image_picker_ios_privacy-image_picker_ios-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","ONLY_ACTIVE_ARCH":"NO","PRODUCT_NAME":"image_picker_ios_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98f9965258dcf429389d5dbd21b2785377","name":"Debug"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98cddf59980379bea281ce470ed8b82034","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CLANG_ENABLE_OBJC_WEAK":"NO","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/image_picker_ios","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"image_picker_ios","INFOPLIST_FILE":"Target Support Files/image_picker_ios/ResourceBundle-image_picker_ios_privacy-image_picker_ios-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","PRODUCT_NAME":"image_picker_ios_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98faf295fceea09a15746b4f959b841f87","name":"Profile"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98cddf59980379bea281ce470ed8b82034","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/image_picker_ios","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"image_picker_ios","INFOPLIST_FILE":"Target Support Files/image_picker_ios/ResourceBundle-image_picker_ios_privacy-image_picker_ios-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","PRODUCT_NAME":"image_picker_ios_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98915f9180cf3c2da876a6aaff3f52e35a","name":"Release"}],"buildPhases":[{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e98cb456d4b686b5a357527a1412075d1ed","type":"com.apple.buildphase.sources"},{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e98742e83892ccbef5caef263d01c891941","type":"com.apple.buildphase.frameworks"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e9859d60b1fe4994c7f8ef90e8a1011e665","guid":"bfdfe7dc352907fc980b868725387e98d37b1307b38d10554edac7f3e18c81e8"}],"guid":"bfdfe7dc352907fc980b868725387e98c66e74f8c405c8b0074cedb11297be2f","type":"com.apple.buildphase.resources"}],"buildRules":[],"dependencies":[],"guid":"bfdfe7dc352907fc980b868725387e98082dc85da1fc941e5234c7cc1f11b27d","name":"image_picker_ios-image_picker_ios_privacy","productReference":{"guid":"bfdfe7dc352907fc980b868725387e98cba567c8a049008de84f093e54e3191c","name":"image_picker_ios_privacy.bundle","type":"product"},"productTypeIdentifier":"com.apple.product-type.bundle","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Debug","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Profile","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Release","provisioningStyle":0}],"type":"standard"}
|
||||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
|
|||||||
|
{"buildConfigurations":[{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e9838c2828f03207f661609b6930d406e5d","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/geolocator_apple","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"geolocator_apple","INFOPLIST_FILE":"Target Support Files/geolocator_apple/ResourceBundle-geolocator_apple_privacy-geolocator_apple-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","ONLY_ACTIVE_ARCH":"NO","PRODUCT_NAME":"geolocator_apple_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98eeb006ef159179d269d9b4ed04718261","name":"Debug"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e9807f9589e61dcf7aae75c66cedd111ea2","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CLANG_ENABLE_OBJC_WEAK":"NO","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/geolocator_apple","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"geolocator_apple","INFOPLIST_FILE":"Target Support Files/geolocator_apple/ResourceBundle-geolocator_apple_privacy-geolocator_apple-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","PRODUCT_NAME":"geolocator_apple_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e9870b9692a5b533293415bc63ed3b0bc6d","name":"Profile"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e9807f9589e61dcf7aae75c66cedd111ea2","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/geolocator_apple","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"geolocator_apple","INFOPLIST_FILE":"Target Support Files/geolocator_apple/ResourceBundle-geolocator_apple_privacy-geolocator_apple-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","PRODUCT_NAME":"geolocator_apple_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98a20fe8f5a46429ab7c65802a456cffdb","name":"Release"}],"buildPhases":[{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e9835685486a5411584fad5d925fbc90202","type":"com.apple.buildphase.sources"},{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e98c3dd22b9b51f29681b28618df50c049e","type":"com.apple.buildphase.frameworks"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e98426231081a72aad210ce479aa5d7a698","guid":"bfdfe7dc352907fc980b868725387e986101fe2b4a0b3760987d116477009d43"}],"guid":"bfdfe7dc352907fc980b868725387e986b0068de0007e86b46d73ab91d7ce756","type":"com.apple.buildphase.resources"}],"buildRules":[],"dependencies":[],"guid":"bfdfe7dc352907fc980b868725387e98e1aba8ff8dc833f2269ce0a7182533b3","name":"geolocator_apple-geolocator_apple_privacy","productReference":{"guid":"bfdfe7dc352907fc980b868725387e980ae07e1806c3af2f5550d2e89780c766","name":"geolocator_apple_privacy.bundle","type":"product"},"productTypeIdentifier":"com.apple.product-type.bundle","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Debug","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Profile","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Release","provisioningStyle":0}],"type":"standard"}
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"buildConfigurations":[{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e9887649937bdf44a8b443f5bfab1b70d4c","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/FirebaseMessaging","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"FirebaseMessaging","INFOPLIST_FILE":"Target Support Files/FirebaseMessaging/ResourceBundle-FirebaseMessaging_Privacy-FirebaseMessaging-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","ONLY_ACTIVE_ARCH":"NO","PRODUCT_NAME":"FirebaseMessaging_Privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e9812f238093a56ac59d30b8e6c99740981","name":"Debug"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e980b408b7ecb34a30780929b022b73cafa","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CLANG_ENABLE_OBJC_WEAK":"NO","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/FirebaseMessaging","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"FirebaseMessaging","INFOPLIST_FILE":"Target Support Files/FirebaseMessaging/ResourceBundle-FirebaseMessaging_Privacy-FirebaseMessaging-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","PRODUCT_NAME":"FirebaseMessaging_Privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98d7dc776d00e621b3d333d7d21059d667","name":"Profile"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e980b408b7ecb34a30780929b022b73cafa","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/FirebaseMessaging","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"FirebaseMessaging","INFOPLIST_FILE":"Target Support Files/FirebaseMessaging/ResourceBundle-FirebaseMessaging_Privacy-FirebaseMessaging-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","PRODUCT_NAME":"FirebaseMessaging_Privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98dd22038cd5a3a15fed01d2b58d0e0a3b","name":"Release"}],"buildPhases":[{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e982e858a8fe0a1f17ef9abfbff616916ae","type":"com.apple.buildphase.sources"},{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e989c89d320fec25e0627826f91bd4bdbed","type":"com.apple.buildphase.frameworks"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e98bd26659fc4d560213477313ab04bc47b","guid":"bfdfe7dc352907fc980b868725387e9884d368b66a3b621de64d3198df886c18"}],"guid":"bfdfe7dc352907fc980b868725387e98061fde088f2787f2a80b9cec7f7d221a","type":"com.apple.buildphase.resources"}],"buildRules":[],"dependencies":[],"guid":"bfdfe7dc352907fc980b868725387e98974c3b2447afb83a5c25c38d101a48ab","name":"FirebaseMessaging-FirebaseMessaging_Privacy","productReference":{"guid":"bfdfe7dc352907fc980b868725387e984d4894a83a9677ff019175cbd19979f5","name":"FirebaseMessaging_Privacy.bundle","type":"product"},"productTypeIdentifier":"com.apple.product-type.bundle","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Debug","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Profile","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Release","provisioningStyle":0}],"type":"standard"}
|
||||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
|
|||||||
|
{"buildConfigurations":[{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e984815e355e7d34a03ffe2987322a3b971","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/google_maps_flutter_ios","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"google_maps_flutter_ios","INFOPLIST_FILE":"Target Support Files/google_maps_flutter_ios/ResourceBundle-google_maps_flutter_ios_privacy-google_maps_flutter_ios-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","ONLY_ACTIVE_ARCH":"NO","PRODUCT_NAME":"google_maps_flutter_ios_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98d78e3b17606b819f625830e6095d343e","name":"Debug"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e983547aea3448610c410b3869ac0c72adb","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CLANG_ENABLE_OBJC_WEAK":"NO","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/google_maps_flutter_ios","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"google_maps_flutter_ios","INFOPLIST_FILE":"Target Support Files/google_maps_flutter_ios/ResourceBundle-google_maps_flutter_ios_privacy-google_maps_flutter_ios-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","PRODUCT_NAME":"google_maps_flutter_ios_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e983fb849955bd0b314f3d024c966d8be0e","name":"Profile"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e983547aea3448610c410b3869ac0c72adb","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/google_maps_flutter_ios","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"google_maps_flutter_ios","INFOPLIST_FILE":"Target Support Files/google_maps_flutter_ios/ResourceBundle-google_maps_flutter_ios_privacy-google_maps_flutter_ios-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","PRODUCT_NAME":"google_maps_flutter_ios_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98e29c2271cd53a6e5f4bfde9c89efe006","name":"Release"}],"buildPhases":[{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e98dfd506d5ba65f1577c0734fe58848116","type":"com.apple.buildphase.sources"},{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e981966deb7ef84f0c36945520e9ccf7391","type":"com.apple.buildphase.frameworks"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e98dcb0124e6fc9064b46d78ccf9db8e97d","guid":"bfdfe7dc352907fc980b868725387e98f2df8916fddb88b86eacd206128c6052"}],"guid":"bfdfe7dc352907fc980b868725387e984a48273cf7d1a00bf816bbe6f8ec9e3c","type":"com.apple.buildphase.resources"}],"buildRules":[],"dependencies":[],"guid":"bfdfe7dc352907fc980b868725387e9845fff747e8d3c707f1d7451d71a9982f","name":"google_maps_flutter_ios-google_maps_flutter_ios_privacy","productReference":{"guid":"bfdfe7dc352907fc980b868725387e98cf9c4c549797cf8d51278c32a04fd48d","name":"google_maps_flutter_ios_privacy.bundle","type":"product"},"productTypeIdentifier":"com.apple.product-type.bundle","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Debug","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Profile","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Release","provisioningStyle":0}],"type":"standard"}
|
||||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
|
|||||||
|
{"buildConfigurations":[{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e9868e3d01fad71a602691ae14c2a0883ce","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/connectivity_plus","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"connectivity_plus","INFOPLIST_FILE":"Target Support Files/connectivity_plus/ResourceBundle-connectivity_plus_privacy-connectivity_plus-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","ONLY_ACTIVE_ARCH":"NO","PRODUCT_NAME":"connectivity_plus_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e983000e04c619befcdcdb5423c41cf3c06","name":"Debug"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98bf9fd69593b10fe3e6680cea099038e3","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CLANG_ENABLE_OBJC_WEAK":"NO","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/connectivity_plus","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"connectivity_plus","INFOPLIST_FILE":"Target Support Files/connectivity_plus/ResourceBundle-connectivity_plus_privacy-connectivity_plus-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","PRODUCT_NAME":"connectivity_plus_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98c53447ca9be352fd6d9b58dae1deb35c","name":"Profile"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98bf9fd69593b10fe3e6680cea099038e3","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/connectivity_plus","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"connectivity_plus","INFOPLIST_FILE":"Target Support Files/connectivity_plus/ResourceBundle-connectivity_plus_privacy-connectivity_plus-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","PRODUCT_NAME":"connectivity_plus_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98dfe4b7a84110b136c6a52b6afc0eac0d","name":"Release"}],"buildPhases":[{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e98dee71d599683b73fd7ee035cc62671cf","type":"com.apple.buildphase.sources"},{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e98850fa2f8d0ae21600c31531c8486ec0f","type":"com.apple.buildphase.frameworks"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e9846e08a91d32a0f5fbd341f8b855ab6f2","guid":"bfdfe7dc352907fc980b868725387e98969f0cf2333b6bedae75afc2892c48a1"}],"guid":"bfdfe7dc352907fc980b868725387e98682aaf7e1bc4c0f38210893596137a8e","type":"com.apple.buildphase.resources"}],"buildRules":[],"dependencies":[],"guid":"bfdfe7dc352907fc980b868725387e9831ced05e49f553f4d1bb4a7cc8ab09f7","name":"connectivity_plus-connectivity_plus_privacy","productReference":{"guid":"bfdfe7dc352907fc980b868725387e98883ac788d30417c21a28a2a7f2ab79e8","name":"connectivity_plus_privacy.bundle","type":"product"},"productTypeIdentifier":"com.apple.product-type.bundle","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Debug","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Profile","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Release","provisioningStyle":0}],"type":"standard"}
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"buildConfigurations":[{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98b413c135593e4267926da6547a7d1fd3","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/record_ios","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"record_ios","INFOPLIST_FILE":"Target Support Files/record_ios/ResourceBundle-record_ios_privacy-record_ios-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","ONLY_ACTIVE_ARCH":"NO","PRODUCT_NAME":"record_ios_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98309cb9a7011dd6f490d0c907df69daff","name":"Debug"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98e6afa34d16681bc53acd068100e0ec55","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CLANG_ENABLE_OBJC_WEAK":"NO","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/record_ios","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"record_ios","INFOPLIST_FILE":"Target Support Files/record_ios/ResourceBundle-record_ios_privacy-record_ios-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","PRODUCT_NAME":"record_ios_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98c81f6e7a83038ef2d2b9fc91ca271142","name":"Profile"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98e6afa34d16681bc53acd068100e0ec55","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/record_ios","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"record_ios","INFOPLIST_FILE":"Target Support Files/record_ios/ResourceBundle-record_ios_privacy-record_ios-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","PRODUCT_NAME":"record_ios_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98a3c23fd4a8404cdeff8d885f3439c69a","name":"Release"}],"buildPhases":[{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e98b0ee43340b2a025002c12bf31c647008","type":"com.apple.buildphase.sources"},{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e9820e40b616d3218ee4f5658a9c56aba08","type":"com.apple.buildphase.frameworks"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e98ee4f3807f3145b0d1f9dd78706d6c473","guid":"bfdfe7dc352907fc980b868725387e988f9c0d80d579e9ce2b92244c993a3e4d"}],"guid":"bfdfe7dc352907fc980b868725387e981fe2b3447d56d86ef1b0d02777b493a8","type":"com.apple.buildphase.resources"}],"buildRules":[],"dependencies":[],"guid":"bfdfe7dc352907fc980b868725387e982a2ee81fc4f9376a4b6bb6d6bb502a00","name":"record_ios-record_ios_privacy","productReference":{"guid":"bfdfe7dc352907fc980b868725387e98c34601a2dc07dcfea6b09ca49bc4da60","name":"record_ios_privacy.bundle","type":"product"},"productTypeIdentifier":"com.apple.product-type.bundle","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Debug","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Profile","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Release","provisioningStyle":0}],"type":"standard"}
|
||||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
|
|||||||
|
{"buildConfigurations":[{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e987632837bd76e91bb9a994a2e34773abd","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/app_links","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"app_links","INFOPLIST_FILE":"Target Support Files/app_links/ResourceBundle-app_links_ios_privacy-app_links-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","ONLY_ACTIVE_ARCH":"NO","PRODUCT_NAME":"app_links_ios_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98af954b202c21a6dd84d883d5f5a973df","name":"Debug"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e983b81d4bd91bd3ba266fc98db87d6d63a","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CLANG_ENABLE_OBJC_WEAK":"NO","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/app_links","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"app_links","INFOPLIST_FILE":"Target Support Files/app_links/ResourceBundle-app_links_ios_privacy-app_links-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","PRODUCT_NAME":"app_links_ios_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e981f024b3fe623c99289d6205ef0f1c9f4","name":"Profile"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e983b81d4bd91bd3ba266fc98db87d6d63a","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/app_links","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"app_links","INFOPLIST_FILE":"Target Support Files/app_links/ResourceBundle-app_links_ios_privacy-app_links-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","PRODUCT_NAME":"app_links_ios_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98322d646df660c8c3f647e8ed91439f15","name":"Release"}],"buildPhases":[{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e9858955e0b0f931b16eac6524a62f4c951","type":"com.apple.buildphase.sources"},{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e9804663d369aec1f5162079b355e19e314","type":"com.apple.buildphase.frameworks"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e98b47a3eb00e326f7e8c5414133086e3aa","guid":"bfdfe7dc352907fc980b868725387e98edfa615330dac428106dcd808be398a8"}],"guid":"bfdfe7dc352907fc980b868725387e980284e0d2aa9c77144bea46ff1538d873","type":"com.apple.buildphase.resources"}],"buildRules":[],"dependencies":[],"guid":"bfdfe7dc352907fc980b868725387e9854f2b496f3d836ac3fd0e138cbba7daf","name":"app_links-app_links_ios_privacy","productReference":{"guid":"bfdfe7dc352907fc980b868725387e98b94b436e886ef04c570b7ebe5735692f","name":"app_links_ios_privacy.bundle","type":"product"},"productTypeIdentifier":"com.apple.product-type.bundle","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Debug","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Profile","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Release","provisioningStyle":0}],"type":"standard"}
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"buildConfigurations":[{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e981dd9faf8cfda58ae4b27599e78798a12","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GTMAppAuth","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"GTMAppAuth","INFOPLIST_FILE":"Target Support Files/GTMAppAuth/ResourceBundle-GTMAppAuth_Privacy-GTMAppAuth-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","ONLY_ACTIVE_ARCH":"NO","PRODUCT_NAME":"GTMAppAuth_Privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98081a762cdd3a876ee619474d35c4d0d5","name":"Debug"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e983d45d2dda0f51345bee3c32ae1c2cfa7","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CLANG_ENABLE_OBJC_WEAK":"NO","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GTMAppAuth","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"GTMAppAuth","INFOPLIST_FILE":"Target Support Files/GTMAppAuth/ResourceBundle-GTMAppAuth_Privacy-GTMAppAuth-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","PRODUCT_NAME":"GTMAppAuth_Privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98bbbb728f2fe370bb021d6e767a235615","name":"Profile"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e983d45d2dda0f51345bee3c32ae1c2cfa7","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GTMAppAuth","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"GTMAppAuth","INFOPLIST_FILE":"Target Support Files/GTMAppAuth/ResourceBundle-GTMAppAuth_Privacy-GTMAppAuth-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","PRODUCT_NAME":"GTMAppAuth_Privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e984b35a3d1c6ad66df428413fb0baea6b2","name":"Release"}],"buildPhases":[{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e988c2927160ad57719342ed2e3058a0493","type":"com.apple.buildphase.sources"},{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e98584d3ac2c21a4a6ede0312ba0604e9a6","type":"com.apple.buildphase.frameworks"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e98a67f71a842d900e547db66af0441aa0a","guid":"bfdfe7dc352907fc980b868725387e983188dfbf5221ebc26483aeed641e65a0"}],"guid":"bfdfe7dc352907fc980b868725387e987efb23dff19f760c2938de38b84c31c5","type":"com.apple.buildphase.resources"}],"buildRules":[],"dependencies":[],"guid":"bfdfe7dc352907fc980b868725387e9865af479ae97320e284a27cf831d212b3","name":"GTMAppAuth-GTMAppAuth_Privacy","productReference":{"guid":"bfdfe7dc352907fc980b868725387e98e6360e40dc59e89c98ab031af57e52cd","name":"GTMAppAuth_Privacy.bundle","type":"product"},"productTypeIdentifier":"com.apple.product-type.bundle","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Debug","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Profile","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Release","provisioningStyle":0}],"type":"standard"}
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"buildConfigurations":[{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98159d9f8f1e900622a2b52547562b6801","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/FirebaseInstallations","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"FirebaseInstallations","INFOPLIST_FILE":"Target Support Files/FirebaseInstallations/ResourceBundle-FirebaseInstallations_Privacy-FirebaseInstallations-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","ONLY_ACTIVE_ARCH":"NO","PRODUCT_NAME":"FirebaseInstallations_Privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e9884f3ac9b8a2f837405bd1b0671cf057e","name":"Debug"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e984efe673169049beb19dd56cfb2b604cf","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CLANG_ENABLE_OBJC_WEAK":"NO","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/FirebaseInstallations","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"FirebaseInstallations","INFOPLIST_FILE":"Target Support Files/FirebaseInstallations/ResourceBundle-FirebaseInstallations_Privacy-FirebaseInstallations-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","PRODUCT_NAME":"FirebaseInstallations_Privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e9861d2648c6dbfd7f2609c10820c80a3a9","name":"Profile"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e984efe673169049beb19dd56cfb2b604cf","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/FirebaseInstallations","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"FirebaseInstallations","INFOPLIST_FILE":"Target Support Files/FirebaseInstallations/ResourceBundle-FirebaseInstallations_Privacy-FirebaseInstallations-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","PRODUCT_NAME":"FirebaseInstallations_Privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e985daf4f7c0e797ab5ff207f19bb70db34","name":"Release"}],"buildPhases":[{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e98cbef0f3caeaf1b5e373370959ea2a752","type":"com.apple.buildphase.sources"},{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e98fda84be9f8aa546bb746f7e9ba21eb75","type":"com.apple.buildphase.frameworks"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e98e7fcebf5551b7d41d5eee2b98ac1991a","guid":"bfdfe7dc352907fc980b868725387e98289ae721178e0434f15520a63bac3de1"}],"guid":"bfdfe7dc352907fc980b868725387e983c6464c47c3e7fb8bfc0679b13c2360c","type":"com.apple.buildphase.resources"}],"buildRules":[],"dependencies":[],"guid":"bfdfe7dc352907fc980b868725387e984535f130e81fa6507008242e4e8916fc","name":"FirebaseInstallations-FirebaseInstallations_Privacy","productReference":{"guid":"bfdfe7dc352907fc980b868725387e981703d6bed554c9878c28cb40b989a332","name":"FirebaseInstallations_Privacy.bundle","type":"product"},"productTypeIdentifier":"com.apple.product-type.bundle","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Debug","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Profile","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Release","provisioningStyle":0}],"type":"standard"}
|
||||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
|
|||||||
|
{"buildConfigurations":[{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98b5237a71e450c23417ab605ef6e21576","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/PromisesObjC","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"FBLPromises","INFOPLIST_FILE":"Target Support Files/PromisesObjC/ResourceBundle-FBLPromises_Privacy-PromisesObjC-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","ONLY_ACTIVE_ARCH":"NO","PRODUCT_NAME":"FBLPromises_Privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e9831e785b09af9e56d67e048ace04f9eea","name":"Debug"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e9891a729f95d530e34449a631f1cdc5fa1","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CLANG_ENABLE_OBJC_WEAK":"NO","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/PromisesObjC","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"FBLPromises","INFOPLIST_FILE":"Target Support Files/PromisesObjC/ResourceBundle-FBLPromises_Privacy-PromisesObjC-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","PRODUCT_NAME":"FBLPromises_Privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98f133c7c4e0d5ef1026f62af48d36d384","name":"Profile"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e9891a729f95d530e34449a631f1cdc5fa1","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/PromisesObjC","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"FBLPromises","INFOPLIST_FILE":"Target Support Files/PromisesObjC/ResourceBundle-FBLPromises_Privacy-PromisesObjC-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","PRODUCT_NAME":"FBLPromises_Privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e9848697799c85974dd63918fbe3815a9a3","name":"Release"}],"buildPhases":[{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e98f30b0300e182f020f8ef8cf836ee38ce","type":"com.apple.buildphase.sources"},{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e98cad9f555c88fa04356aca3c918e32858","type":"com.apple.buildphase.frameworks"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e98693a0c3b03608c3958fa2eecded094c1","guid":"bfdfe7dc352907fc980b868725387e98d1dbc6617eff6c55e683f3d339e227c2"}],"guid":"bfdfe7dc352907fc980b868725387e98806faffc827fe91054c473aeb808b7a2","type":"com.apple.buildphase.resources"}],"buildRules":[],"dependencies":[],"guid":"bfdfe7dc352907fc980b868725387e98ad53226b339581a6725de188f2c8f823","name":"PromisesObjC-FBLPromises_Privacy","productReference":{"guid":"bfdfe7dc352907fc980b868725387e9867729fb6a85d4c069a179d51db31501d","name":"FBLPromises_Privacy.bundle","type":"product"},"productTypeIdentifier":"com.apple.product-type.bundle","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Debug","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Profile","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Release","provisioningStyle":0}],"type":"standard"}
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"buildConfigurations":[{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e9805b126fb7e47e402c4d9975a615a0d29","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleUtilities","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"GoogleUtilities","INFOPLIST_FILE":"Target Support Files/GoogleUtilities/ResourceBundle-GoogleUtilities_Privacy-GoogleUtilities-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","ONLY_ACTIVE_ARCH":"NO","PRODUCT_NAME":"GoogleUtilities_Privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e980ade7ebdcd18cf086ad8ae6789d773df","name":"Debug"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e983c3ca151c4b3ff1206d4fd13da3016b4","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CLANG_ENABLE_OBJC_WEAK":"NO","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleUtilities","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"GoogleUtilities","INFOPLIST_FILE":"Target Support Files/GoogleUtilities/ResourceBundle-GoogleUtilities_Privacy-GoogleUtilities-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","PRODUCT_NAME":"GoogleUtilities_Privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e980990bb7e09372eaa418eb334d9134928","name":"Profile"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e983c3ca151c4b3ff1206d4fd13da3016b4","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleUtilities","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"GoogleUtilities","INFOPLIST_FILE":"Target Support Files/GoogleUtilities/ResourceBundle-GoogleUtilities_Privacy-GoogleUtilities-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","PRODUCT_NAME":"GoogleUtilities_Privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e984189abc1e492b31f4bc5dc6be95bb4ca","name":"Release"}],"buildPhases":[{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e98467fd317eada1c828036e5a5ff3f1a7b","type":"com.apple.buildphase.sources"},{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e984afd16c8448792d7915f3eaad707b998","type":"com.apple.buildphase.frameworks"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e98353fe8307e2a6a923873c259a1d558c5","guid":"bfdfe7dc352907fc980b868725387e9803d5fa45a2c360613bac41b98d7ad67d"}],"guid":"bfdfe7dc352907fc980b868725387e9812729f008ea2710cde6e804e22dea1c3","type":"com.apple.buildphase.resources"}],"buildRules":[],"dependencies":[],"guid":"bfdfe7dc352907fc980b868725387e981a9fac6eb9c80f8eed49fda0531af6a4","name":"GoogleUtilities-GoogleUtilities_Privacy","productReference":{"guid":"bfdfe7dc352907fc980b868725387e981f1852a7971aaa5e479d216071487d3a","name":"GoogleUtilities_Privacy.bundle","type":"product"},"productTypeIdentifier":"com.apple.product-type.bundle","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Debug","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Profile","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Release","provisioningStyle":0}],"type":"standard"}
|
||||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
|
|||||||
|
{"buildConfigurations":[{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e988504f8c22a7f758991a730b6c24268ef","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleMaps","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"GoogleMaps","INFOPLIST_FILE":"Target Support Files/GoogleMaps/ResourceBundle-GoogleMapsResources-GoogleMaps-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","ONLY_ACTIVE_ARCH":"NO","PRODUCT_NAME":"GoogleMapsResources","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98d308a0fb8c26fe9429b14a17febcad68","name":"Debug"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98f329e17e59775febdad9292c102ab58c","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CLANG_ENABLE_OBJC_WEAK":"NO","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleMaps","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"GoogleMaps","INFOPLIST_FILE":"Target Support Files/GoogleMaps/ResourceBundle-GoogleMapsResources-GoogleMaps-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","PRODUCT_NAME":"GoogleMapsResources","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98c04648b03fc66f2332629381fe860879","name":"Profile"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98f329e17e59775febdad9292c102ab58c","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GoogleMaps","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"GoogleMaps","INFOPLIST_FILE":"Target Support Files/GoogleMaps/ResourceBundle-GoogleMapsResources-GoogleMaps-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","PRODUCT_NAME":"GoogleMapsResources","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98f12f7717d115b7bbab47c3213b049508","name":"Release"}],"buildPhases":[{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e98b96c1ef9c6a60f33b7e15fea77fc4f31","type":"com.apple.buildphase.sources"},{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e98b627aabc7f208f4e61ff4f39483b1d00","type":"com.apple.buildphase.frameworks"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e986e91a71bd071c1a8acf8b0a32dacdc10","guid":"bfdfe7dc352907fc980b868725387e98c2482ff8273f173b51890bac7f9607f9"}],"guid":"bfdfe7dc352907fc980b868725387e9855b8cc331621d9edf878d16920be06db","type":"com.apple.buildphase.resources"}],"buildRules":[],"dependencies":[],"guid":"bfdfe7dc352907fc980b868725387e9877354dc0c1379e634078de2da2deba6b","name":"GoogleMaps-GoogleMapsResources","productReference":{"guid":"bfdfe7dc352907fc980b868725387e98e1226e3627f386c3cc556b927e8c995d","name":"GoogleMapsResources.bundle","type":"product"},"productTypeIdentifier":"com.apple.product-type.bundle","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Debug","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Profile","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Release","provisioningStyle":0}],"type":"standard"}
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"buildConfigurations":[{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e9807f226602eb73a40e70c0b2fa59a69bb","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/FirebaseCoreInternal","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"FirebaseCoreInternal","INFOPLIST_FILE":"Target Support Files/FirebaseCoreInternal/ResourceBundle-FirebaseCoreInternal_Privacy-FirebaseCoreInternal-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","ONLY_ACTIVE_ARCH":"NO","PRODUCT_NAME":"FirebaseCoreInternal_Privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98f446da10aed7193ce3b51038b911a387","name":"Debug"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e987224cd15744e42064f00169a045519d4","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CLANG_ENABLE_OBJC_WEAK":"NO","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/FirebaseCoreInternal","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"FirebaseCoreInternal","INFOPLIST_FILE":"Target Support Files/FirebaseCoreInternal/ResourceBundle-FirebaseCoreInternal_Privacy-FirebaseCoreInternal-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","PRODUCT_NAME":"FirebaseCoreInternal_Privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e987f55dfa627d516246054cd8bc4abef47","name":"Profile"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e987224cd15744e42064f00169a045519d4","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/FirebaseCoreInternal","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"FirebaseCoreInternal","INFOPLIST_FILE":"Target Support Files/FirebaseCoreInternal/ResourceBundle-FirebaseCoreInternal_Privacy-FirebaseCoreInternal-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","PRODUCT_NAME":"FirebaseCoreInternal_Privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98d49e91af3e6402d06579ba16072cb45b","name":"Release"}],"buildPhases":[{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e98fa3c6b64bf2f70c316c82a87d22e46f0","type":"com.apple.buildphase.sources"},{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e98f1b1a686a4f991c50967e187fbd9ac37","type":"com.apple.buildphase.frameworks"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e989159a096c3b6b2a316de036bf30b50c3","guid":"bfdfe7dc352907fc980b868725387e982682a61740f35a6c134ac85bab4bd112"}],"guid":"bfdfe7dc352907fc980b868725387e984b8a1dc1cb1dec53279bdf7e93ccea3a","type":"com.apple.buildphase.resources"}],"buildRules":[],"dependencies":[],"guid":"bfdfe7dc352907fc980b868725387e98e5b592b076e092ab7ac9d9b5c85edc6f","name":"FirebaseCoreInternal-FirebaseCoreInternal_Privacy","productReference":{"guid":"bfdfe7dc352907fc980b868725387e98c4db3ee10fd3aea38cd0fd6d5693c776","name":"FirebaseCoreInternal_Privacy.bundle","type":"product"},"productTypeIdentifier":"com.apple.product-type.bundle","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Debug","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Profile","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Release","provisioningStyle":0}],"type":"standard"}
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"buildConfigurations":[{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98766fa3160a04a5ea1a280c390a52acd7","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/nanopb","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"nanopb","INFOPLIST_FILE":"Target Support Files/nanopb/ResourceBundle-nanopb_Privacy-nanopb-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","ONLY_ACTIVE_ARCH":"NO","PRODUCT_NAME":"nanopb_Privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e9856f5e3f1b37d5d56cbc08203d2b63fef","name":"Debug"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e9826b130e4c66469997fae006e37f5c706","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CLANG_ENABLE_OBJC_WEAK":"NO","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/nanopb","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"nanopb","INFOPLIST_FILE":"Target Support Files/nanopb/ResourceBundle-nanopb_Privacy-nanopb-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","PRODUCT_NAME":"nanopb_Privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e987474386498b3c1965f25f60430f39c53","name":"Profile"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e9826b130e4c66469997fae006e37f5c706","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/nanopb","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"nanopb","INFOPLIST_FILE":"Target Support Files/nanopb/ResourceBundle-nanopb_Privacy-nanopb-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","PRODUCT_NAME":"nanopb_Privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e982689e135234e6017498ec7b0c9c038e8","name":"Release"}],"buildPhases":[{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e981b1c113d567d64efa89d8d5ea92c315d","type":"com.apple.buildphase.sources"},{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e980e44d3696d7847cd9552b48206ac18a0","type":"com.apple.buildphase.frameworks"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e98e52bb32f36ae70f3be9395bae3df892c","guid":"bfdfe7dc352907fc980b868725387e98064dac9de2514c9735e95ba019add1b4"}],"guid":"bfdfe7dc352907fc980b868725387e98a11317cdf57fe2722944ace44091267a","type":"com.apple.buildphase.resources"}],"buildRules":[],"dependencies":[],"guid":"bfdfe7dc352907fc980b868725387e98c9e4d77647dbd2f60d4df5fb297112b6","name":"nanopb-nanopb_Privacy","productReference":{"guid":"bfdfe7dc352907fc980b868725387e98eef91895065d6940077eed40aa23053b","name":"nanopb_Privacy.bundle","type":"product"},"productTypeIdentifier":"com.apple.product-type.bundle","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Debug","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Profile","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Release","provisioningStyle":0}],"type":"standard"}
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"buildConfigurations":[{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98fb7fd2d39a103a30c97d1d6dfd552327","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GTMSessionFetcher","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"GTMSessionFetcher","INFOPLIST_FILE":"Target Support Files/GTMSessionFetcher/ResourceBundle-GTMSessionFetcher_Full_Privacy-GTMSessionFetcher-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","ONLY_ACTIVE_ARCH":"NO","PRODUCT_NAME":"GTMSessionFetcher_Full_Privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98f427e18cf2deddb2ee9f02d1913f6684","name":"Debug"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e986be0ec9ce711d23fcbf4d19f23a8bea3","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CLANG_ENABLE_OBJC_WEAK":"NO","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GTMSessionFetcher","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"GTMSessionFetcher","INFOPLIST_FILE":"Target Support Files/GTMSessionFetcher/ResourceBundle-GTMSessionFetcher_Full_Privacy-GTMSessionFetcher-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","PRODUCT_NAME":"GTMSessionFetcher_Full_Privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98427c56943fdd1ba67b64063d682219b9","name":"Profile"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e986be0ec9ce711d23fcbf4d19f23a8bea3","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/GTMSessionFetcher","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"GTMSessionFetcher","INFOPLIST_FILE":"Target Support Files/GTMSessionFetcher/ResourceBundle-GTMSessionFetcher_Full_Privacy-GTMSessionFetcher-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","PRODUCT_NAME":"GTMSessionFetcher_Full_Privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98a2fb4543aef74eb208d29c125d9eed2e","name":"Release"}],"buildPhases":[{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e98c544d22f883af81f0755fe8639ee8d21","type":"com.apple.buildphase.sources"},{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e986c3c36a40ea24256bba8c06496d08e1d","type":"com.apple.buildphase.frameworks"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e984deeb1d654ded5356d92be61b9226bc3","guid":"bfdfe7dc352907fc980b868725387e9810f826ef3caad721ec82f8e150248826"}],"guid":"bfdfe7dc352907fc980b868725387e98f8fb61d9d947ee7363a278c07ccb1c74","type":"com.apple.buildphase.resources"}],"buildRules":[],"dependencies":[],"guid":"bfdfe7dc352907fc980b868725387e98d9a0c31ef553ffd1644ea2f5fc087d46","name":"GTMSessionFetcher-GTMSessionFetcher_Full_Privacy","productReference":{"guid":"bfdfe7dc352907fc980b868725387e989eab67172ffcb7faa039fae4c252dd63","name":"GTMSessionFetcher_Full_Privacy.bundle","type":"product"},"productTypeIdentifier":"com.apple.product-type.bundle","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Debug","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Profile","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Release","provisioningStyle":0}],"type":"standard"}
|
||||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
|
|||||||
|
{"buildConfigurations":[{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e9826f83ccba0be1aff2280ec513a95e55c","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/share_plus","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"share_plus","INFOPLIST_FILE":"Target Support Files/share_plus/ResourceBundle-share_plus_privacy-share_plus-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","ONLY_ACTIVE_ARCH":"NO","PRODUCT_NAME":"share_plus_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98e074d504871a9aaefb75cbf904d6d146","name":"Debug"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98a66d1a3a4cb51535fd0da6bd14d29e3b","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CLANG_ENABLE_OBJC_WEAK":"NO","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/share_plus","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"share_plus","INFOPLIST_FILE":"Target Support Files/share_plus/ResourceBundle-share_plus_privacy-share_plus-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","PRODUCT_NAME":"share_plus_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e9898b4b66212e4b4c90500e2f57e5ca35f","name":"Profile"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98a66d1a3a4cb51535fd0da6bd14d29e3b","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/share_plus","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"share_plus","INFOPLIST_FILE":"Target Support Files/share_plus/ResourceBundle-share_plus_privacy-share_plus-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","PRODUCT_NAME":"share_plus_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98c1bf0f292354e155e2b46842f92b80df","name":"Release"}],"buildPhases":[{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e989a9aed10d0ad86227ac18d8fa0029701","type":"com.apple.buildphase.sources"},{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e98954ebd7f11698a081a3215332f4537d6","type":"com.apple.buildphase.frameworks"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e98a4652cf9a8ee32eb7762d88e8dbb86e3","guid":"bfdfe7dc352907fc980b868725387e98660ffa09e8dfce1734118e459b5da158"}],"guid":"bfdfe7dc352907fc980b868725387e980a8c18bd24f699f0260576bffb09e6d2","type":"com.apple.buildphase.resources"}],"buildRules":[],"dependencies":[],"guid":"bfdfe7dc352907fc980b868725387e98de00f90750e7753637464fe34137709d","name":"share_plus-share_plus_privacy","productReference":{"guid":"bfdfe7dc352907fc980b868725387e987f86a96a3ca03f6247aa68a7b2c0bfd0","name":"share_plus_privacy.bundle","type":"product"},"productTypeIdentifier":"com.apple.product-type.bundle","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Debug","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Profile","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Release","provisioningStyle":0}],"type":"standard"}
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"buildConfigurations":[{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98eb69ef4d8fcb23998a7550099a8b001f","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/video_player_avfoundation","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"video_player_avfoundation","INFOPLIST_FILE":"Target Support Files/video_player_avfoundation/ResourceBundle-video_player_avfoundation_privacy-video_player_avfoundation-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","ONLY_ACTIVE_ARCH":"NO","PRODUCT_NAME":"video_player_avfoundation_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98d5872c88d94d5590647c0c2608d8892b","name":"Debug"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98677016b55925461cddff9adabe358827","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CLANG_ENABLE_OBJC_WEAK":"NO","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/video_player_avfoundation","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"video_player_avfoundation","INFOPLIST_FILE":"Target Support Files/video_player_avfoundation/ResourceBundle-video_player_avfoundation_privacy-video_player_avfoundation-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","PRODUCT_NAME":"video_player_avfoundation_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e988a3f76b217ac83d6975cca251eb86052","name":"Profile"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98677016b55925461cddff9adabe358827","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/video_player_avfoundation","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"video_player_avfoundation","INFOPLIST_FILE":"Target Support Files/video_player_avfoundation/ResourceBundle-video_player_avfoundation_privacy-video_player_avfoundation-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","PRODUCT_NAME":"video_player_avfoundation_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e980dec2201127a307d53e27ba5a3eb78e3","name":"Release"}],"buildPhases":[{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e982cdbbda4ec5aa6c0be5faadc82ddc644","type":"com.apple.buildphase.sources"},{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e986290bdd0e9d59aa279807783e4c9316b","type":"com.apple.buildphase.frameworks"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e98c8d7875e02f534d206b64faba1f418fb","guid":"bfdfe7dc352907fc980b868725387e989e6328e412e45d31cee665887bc0034d"}],"guid":"bfdfe7dc352907fc980b868725387e9806901eef64a9d87d56b505b36e997291","type":"com.apple.buildphase.resources"}],"buildRules":[],"dependencies":[],"guid":"bfdfe7dc352907fc980b868725387e98e4af9c7b061f7f7eb180b825e303ea04","name":"video_player_avfoundation-video_player_avfoundation_privacy","productReference":{"guid":"bfdfe7dc352907fc980b868725387e98f295c3d20283631bbd62e6c18f7af077","name":"video_player_avfoundation_privacy.bundle","type":"product"},"productTypeIdentifier":"com.apple.product-type.bundle","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Debug","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Profile","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Release","provisioningStyle":0}],"type":"standard"}
|
||||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
|
|||||||
|
{"buildConfigurations":[{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98bd0a2dbd5292fcdc336424160e28c9af","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/package_info_plus","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"package_info_plus","INFOPLIST_FILE":"Target Support Files/package_info_plus/ResourceBundle-package_info_plus_privacy-package_info_plus-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","ONLY_ACTIVE_ARCH":"NO","PRODUCT_NAME":"package_info_plus_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e9896fec16c9b4e24125405e804858aa07f","name":"Debug"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98eccfaf3a63784a13e3ba97f7e92bc9e8","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CLANG_ENABLE_OBJC_WEAK":"NO","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/package_info_plus","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"package_info_plus","INFOPLIST_FILE":"Target Support Files/package_info_plus/ResourceBundle-package_info_plus_privacy-package_info_plus-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","PRODUCT_NAME":"package_info_plus_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e9803c0d796d10f24a38ff5dabe1b5925dd","name":"Profile"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e98eccfaf3a63784a13e3ba97f7e92bc9e8","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/package_info_plus","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"package_info_plus","INFOPLIST_FILE":"Target Support Files/package_info_plus/ResourceBundle-package_info_plus_privacy-package_info_plus-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","PRODUCT_NAME":"package_info_plus_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e989c11ced46d184329f36b262f34589f5f","name":"Release"}],"buildPhases":[{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e98048f37995ee8dd8d3d87fad74a47edca","type":"com.apple.buildphase.sources"},{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e98bae1d1af176dfa42dc1081abc0492559","type":"com.apple.buildphase.frameworks"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e98cd2e5340b4285a04b70b80ba6ffc17cc","guid":"bfdfe7dc352907fc980b868725387e985d3f3f640c03df9df4e8ef0138eea79e"}],"guid":"bfdfe7dc352907fc980b868725387e98c1710363b0836e59d6adfb5a9e02df53","type":"com.apple.buildphase.resources"}],"buildRules":[],"dependencies":[],"guid":"bfdfe7dc352907fc980b868725387e987b6c2f882d164ef4f3c76673562685a1","name":"package_info_plus-package_info_plus_privacy","productReference":{"guid":"bfdfe7dc352907fc980b868725387e982a9852aa81a16cf5578d0e8c78b5679a","name":"package_info_plus_privacy.bundle","type":"product"},"productTypeIdentifier":"com.apple.product-type.bundle","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Debug","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Profile","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Release","provisioningStyle":0}],"type":"standard"}
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
{"buildConfigurations":[{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e9866922e9b401c04ecfb7a4d6343c7fa4c","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/quick_actions_ios","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"quick_actions_ios","INFOPLIST_FILE":"Target Support Files/quick_actions_ios/ResourceBundle-quick_actions_ios_privacy-quick_actions_ios-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","ONLY_ACTIVE_ARCH":"NO","PRODUCT_NAME":"quick_actions_ios_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98d901c3b2608f49592bc513fab946edd8","name":"Debug"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e986f88a439a28052d5acad29fd7b148923","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CLANG_ENABLE_OBJC_WEAK":"NO","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/quick_actions_ios","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"quick_actions_ios","INFOPLIST_FILE":"Target Support Files/quick_actions_ios/ResourceBundle-quick_actions_ios_privacy-quick_actions_ios-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","PRODUCT_NAME":"quick_actions_ios_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98623eacdeeb5f0d707d3a7d3004117c91","name":"Profile"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e986f88a439a28052d5acad29fd7b148923","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/quick_actions_ios","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"quick_actions_ios","INFOPLIST_FILE":"Target Support Files/quick_actions_ios/ResourceBundle-quick_actions_ios_privacy-quick_actions_ios-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","PRODUCT_NAME":"quick_actions_ios_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e9889b74035ed7c83859335fa04eacca16e","name":"Release"}],"buildPhases":[{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e987662927d60dacf0b553a27b0c9c2a12d","type":"com.apple.buildphase.sources"},{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e986e5dacb60af74514a2ddfb3c69ac934f","type":"com.apple.buildphase.frameworks"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e98d6dfcab3984cb71bc147c4fe1a512902","guid":"bfdfe7dc352907fc980b868725387e98c05fae2b3c77f8da4a396f77b3ff0618"}],"guid":"bfdfe7dc352907fc980b868725387e9804e17edccec3ea12a148efdfb4b98d71","type":"com.apple.buildphase.resources"}],"buildRules":[],"dependencies":[],"guid":"bfdfe7dc352907fc980b868725387e980e0d42b02f67da84628f3c3fd30ed4e0","name":"quick_actions_ios-quick_actions_ios_privacy","productReference":{"guid":"bfdfe7dc352907fc980b868725387e9821b5524199a1a9b5cefe276f98c67dc8","name":"quick_actions_ios_privacy.bundle","type":"product"},"productTypeIdentifier":"com.apple.product-type.bundle","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Debug","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Profile","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Release","provisioningStyle":0}],"type":"standard"}
|
||||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1 @@
|
|||||||
|
{"buildConfigurations":[{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e983288121e2316e41c2b71dfb58eb06112","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/wakelock_plus","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"wakelock_plus","INFOPLIST_FILE":"Target Support Files/wakelock_plus/ResourceBundle-wakelock_plus_privacy-wakelock_plus-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","ONLY_ACTIVE_ARCH":"NO","PRODUCT_NAME":"wakelock_plus_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e98dcd76e24a7cc11b9d29dbb082f44bd4e","name":"Debug"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e986fd38affde7e47b776d2e660b73c4471","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CLANG_ENABLE_OBJC_WEAK":"NO","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/wakelock_plus","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"wakelock_plus","INFOPLIST_FILE":"Target Support Files/wakelock_plus/ResourceBundle-wakelock_plus_privacy-wakelock_plus-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","PRODUCT_NAME":"wakelock_plus_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","VALIDATE_PRODUCT":"YES","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e9856ca200e3294a4343e369b775ad92cc3","name":"Profile"},{"baseConfigurationFileReference":"bfdfe7dc352907fc980b868725387e986fd38affde7e47b776d2e660b73c4471","buildSettings":{"CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES":"YES","CODE_SIGNING_ALLOWED":"NO","CODE_SIGNING_IDENTITY":"-","CODE_SIGNING_REQUIRED":"NO","CONFIGURATION_BUILD_DIR":"$(BUILD_DIR)/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)/wakelock_plus","EXPANDED_CODE_SIGN_IDENTITY":"-","IBSC_MODULE":"wakelock_plus","INFOPLIST_FILE":"Target Support Files/wakelock_plus/ResourceBundle-wakelock_plus_privacy-wakelock_plus-Info.plist","IPHONEOS_DEPLOYMENT_TARGET":"14.0","PRODUCT_NAME":"wakelock_plus_privacy","SDKROOT":"iphoneos","SKIP_INSTALL":"YES","TARGETED_DEVICE_FAMILY":"1,2","WRAPPER_EXTENSION":"bundle"},"guid":"bfdfe7dc352907fc980b868725387e983a85311f71aa6c74c3430c47f6297406","name":"Release"}],"buildPhases":[{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e985df053b381deed9b8007bbff0234dcb8","type":"com.apple.buildphase.sources"},{"buildFiles":[],"guid":"bfdfe7dc352907fc980b868725387e984ac88e91790fad9ac2e10c217b8349d7","type":"com.apple.buildphase.frameworks"},{"buildFiles":[{"fileReference":"bfdfe7dc352907fc980b868725387e98c977d01f4c7e86e84d8952e5692872a2","guid":"bfdfe7dc352907fc980b868725387e98b98826351bb17d90c8092486e9fb2eb7"}],"guid":"bfdfe7dc352907fc980b868725387e981f505a470e9adfe6c6ae603e7e776b07","type":"com.apple.buildphase.resources"}],"buildRules":[],"dependencies":[],"guid":"bfdfe7dc352907fc980b868725387e98581b37173e8b6c1bb9293721a603b6cb","name":"wakelock_plus-wakelock_plus_privacy","productReference":{"guid":"bfdfe7dc352907fc980b868725387e985bb85bab05ce137e1d4577ccc5273f1c","name":"wakelock_plus_privacy.bundle","type":"product"},"productTypeIdentifier":"com.apple.product-type.bundle","provisioningSourceData":[{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Debug","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Profile","provisioningStyle":0},{"bundleIdentifierFromInfoPlist":"${PRODUCT_BUNDLE_IDENTIFIER}","configurationName":"Release","provisioningStyle":0}],"type":"standard"}
|
||||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user