Merge pull request #71 from joreilly/kotlin_1_5_30

Kotlin 1.5.30, Compose alpha + related dependencies
This commit is contained in:
John O'Reilly 2021-09-15 19:41:29 +01:00 committed by GitHub
commit 53fbd64c55
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
27 changed files with 467 additions and 416 deletions

View file

@ -44,7 +44,7 @@ I also have the following samples that demonstrate the use of a variety of Kotli
### Building ### Building
You need to use Android Studio Arctic Fox (**note: Java 11 is now the minimum version required**). Have tested with XCode v11 and v12. You need to use Android Studio Arctic Fox (**note: Java 11 is now the minimum version required**). Most recently tested with XCode v12 and v13.
When opening iOS/watchOS/macOS projects remember to open `.xcworkspace` file (and not `.xcodeproj` one). When opening iOS/watchOS/macOS projects remember to open `.xcworkspace` file (and not `.xcodeproj` one).

View file

@ -3,18 +3,18 @@ object Versions {
const val androidCompileSdk = 31 const val androidCompileSdk = 31
const val androidTargetSdk = androidCompileSdk const val androidTargetSdk = androidCompileSdk
const val kotlin = "1.5.21" const val kotlin = "1.5.30"
const val kotlinCoroutines = "1.5.1-native-mt" const val kotlinCoroutines = "1.5.2-native-mt"
const val koin = "3.1.2" const val koin = "3.1.2"
const val ktor = "1.6.3" const val ktor = "1.6.3"
const val kotlinxSerialization = "1.2.2" const val kotlinxSerialization = "1.2.2"
const val kotlinxHtmlJs = "0.7.3" const val kotlinxHtmlJs = "0.7.3"
const val compose = "1.0.2" const val compose = "1.1.0-alpha04"
const val wearCompose = "1.0.0-alpha03" const val wearCompose = "1.0.0-alpha06"
const val navCompose = "2.4.0-alpha08" const val navCompose = "2.4.0-alpha09"
const val accompanist = "0.17.0" const val accompanist = "0.18.0"
const val junit = "4.12" const val junit = "4.12"
const val androidXTestJUnit = "1.1.3" const val androidXTestJUnit = "1.1.3"

View file

@ -7,7 +7,6 @@ Pod::Spec.new do |spec|
spec.license = '' spec.license = ''
spec.summary = 'PeopleInSpace' spec.summary = 'PeopleInSpace'
spec.static_framework = true
spec.vendored_frameworks = "build/cocoapods/framework/common.framework" spec.vendored_frameworks = "build/cocoapods/framework/common.framework"
spec.libraries = "c++" spec.libraries = "c++"
spec.module_name = "#{spec.name}_umbrella" spec.module_name = "#{spec.name}_umbrella"
@ -17,13 +16,8 @@ Pod::Spec.new do |spec|
spec.pod_target_xcconfig = { spec.pod_target_xcconfig = {
'KOTLIN_TARGET[sdk=iphonesimulator*]' => 'ios_x64', 'KOTLIN_PROJECT_PATH' => ':common',
'KOTLIN_TARGET[sdk=iphoneos*]' => 'ios_arm', 'PRODUCT_MODULE_NAME' => 'common',
'KOTLIN_TARGET[sdk=watchsimulator*]' => 'watchos_x64',
'KOTLIN_TARGET[sdk=watchos*]' => 'watchos_arm',
'KOTLIN_TARGET[sdk=appletvsimulator*]' => 'tvos_x64',
'KOTLIN_TARGET[sdk=appletvos*]' => 'tvos_arm64',
'KOTLIN_TARGET[sdk=macosx*]' => 'macos_x64'
} }
spec.script_phases = [ spec.script_phases = [
@ -32,10 +26,15 @@ Pod::Spec.new do |spec|
:execution_position => :before_compile, :execution_position => :before_compile,
:shell_path => '/bin/sh', :shell_path => '/bin/sh',
:script => <<-SCRIPT :script => <<-SCRIPT
if [ "YES" = "$COCOAPODS_SKIP_KOTLIN_BUILD" ]; then
echo "Skipping Gradle build task invocation due to COCOAPODS_SKIP_KOTLIN_BUILD environment variable set to \"YES\""
exit 0
fi
set -ev set -ev
REPO_ROOT="$PODS_TARGET_SRCROOT" REPO_ROOT="$PODS_TARGET_SRCROOT"
"$REPO_ROOT/../gradlew" -p "$REPO_ROOT" :common:syncFramework \ "$REPO_ROOT/../gradlew" -p "$REPO_ROOT" $KOTLIN_PROJECT_PATH:syncFramework \
-Pkotlin.native.cocoapods.target=$KOTLIN_TARGET \ -Pkotlin.native.cocoapods.platform=$PLATFORM_NAME \
-Pkotlin.native.cocoapods.archs="$ARCHS" \
-Pkotlin.native.cocoapods.configuration=$CONFIGURATION \ -Pkotlin.native.cocoapods.configuration=$CONFIGURATION \
-Pkotlin.native.cocoapods.cflags="$OTHER_CFLAGS" \ -Pkotlin.native.cocoapods.cflags="$OTHER_CFLAGS" \
-Pkotlin.native.cocoapods.paths.headers="$HEADER_SEARCH_PATHS" \ -Pkotlin.native.cocoapods.paths.headers="$HEADER_SEARCH_PATHS" \

View file

@ -3,7 +3,7 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
plugins { plugins {
kotlin("jvm") kotlin("jvm")
id("org.jetbrains.compose") version "1.0.0-alpha2" id("org.jetbrains.compose") version "1.0.0-alpha4-build348"
application application
} }

View file

@ -23,7 +23,7 @@ import com.surrus.common.remote.Assignment
import com.surrus.common.remote.PeopleInSpaceApi import com.surrus.common.remote.PeopleInSpaceApi
import kotlinx.coroutines.Dispatchers import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.withContext import kotlinx.coroutines.withContext
import org.jetbrains.skija.Image import org.jetbrains.skia.Image.Companion.makeFromEncoded
import java.awt.image.BufferedImage import java.awt.image.BufferedImage
import java.io.ByteArrayOutputStream import java.io.ByteArrayOutputStream
import java.io.InputStream import java.io.InputStream
@ -145,7 +145,7 @@ fun fetchImage(url: String): ImageBitmap? {
LaunchedEffect(url) { LaunchedEffect(url) {
loadFullImage(url)?.let { loadFullImage(url)?.let {
image = Image.makeFromEncoded(toByteArray(it)).asImageBitmap() image = makeFromEncoded(toByteArray(it)).asImageBitmap()
} }
} }

View file

@ -1,6 +1,6 @@
plugins { plugins {
kotlin("multiplatform") kotlin("multiplatform")
id("org.jetbrains.compose") version "1.0.0-alpha2" id("org.jetbrains.compose") version "1.0.0-alpha4-build348"
} }
version = "1.0" version = "1.0"

View file

@ -31,7 +31,6 @@ fun main() {
} }
Div(attrs = { style { padding(16.px) } }) { Div(attrs = { style { padding(16.px) } }) {
Column {
H1(attrs = { classes(TextStyles.titleText) }) { H1(attrs = { classes(TextStyles.titleText) }) {
Text("People In Space") Text("People In Space")
} }
@ -68,7 +67,6 @@ fun main() {
} }
} }
} }
}
object TextStyles : StyleSheet() { object TextStyles : StyleSheet() {

View file

@ -9,8 +9,8 @@ EXTERNAL SOURCES:
:path: "../../common" :path: "../../common"
SPEC CHECKSUMS: SPEC CHECKSUMS:
common: 6fa5697c311ed561bb488bca14f4f4d6f6872dd2 common: ed5a58383c5a02f46882243487c7aac341a3064f
PODFILE CHECKSUM: f7c2bab6802efae18b223d30cb88e54a074a5f69 PODFILE CHECKSUM: f7c2bab6802efae18b223d30cb88e54a074a5f69
COCOAPODS: 1.8.4 COCOAPODS: 1.9.3

View file

@ -1,33 +1,27 @@
{ {
"name": "common", "name": "common",
"version": "1.0", "version": "1.0",
"homepage": "Link to a Kotlin/Native module homepage", "homepage": "https://github.com/joreilly/PeopleInSpace",
"source": { "source": {
"git": "Not Published", "git": "Not Published",
"tag": "Cocoapods/common/1.0" "tag": "Cocoapods/common/1.0"
}, },
"authors": "", "authors": "",
"license": "", "license": "",
"summary": "Some description for a Kotlin/Native module", "summary": "PeopleInSpace",
"static_framework": true,
"vendored_frameworks": "build/cocoapods/framework/common.framework", "vendored_frameworks": "build/cocoapods/framework/common.framework",
"libraries": "c++", "libraries": "c++",
"module_name": "common_umbrella", "module_name": "common_umbrella",
"pod_target_xcconfig": { "pod_target_xcconfig": {
"KOTLIN_TARGET[sdk=iphonesimulator*]": "ios_x64", "KOTLIN_PROJECT_PATH": ":common",
"KOTLIN_TARGET[sdk=iphoneos*]": "ios_arm", "PRODUCT_MODULE_NAME": "common"
"KOTLIN_TARGET[sdk=watchsimulator*]": "watchos_x86",
"KOTLIN_TARGET[sdk=watchos*]": "watchos_arm",
"KOTLIN_TARGET[sdk=appletvsimulator*]": "tvos_x64",
"KOTLIN_TARGET[sdk=appletvos*]": "tvos_arm64",
"KOTLIN_TARGET[sdk=macosx*]": "macos_x64"
}, },
"script_phases": [ "script_phases": [
{ {
"name": "Build common", "name": "Build common",
"execution_position": "before_compile", "execution_position": "before_compile",
"shell_path": "/bin/sh", "shell_path": "/bin/sh",
"script": " set -ev\n REPO_ROOT=\"$PODS_TARGET_SRCROOT\"\n \"$REPO_ROOT/../gradlew\" -p \"$REPO_ROOT\" :common:syncFramework -Pkotlin.native.cocoapods.target=$KOTLIN_TARGET -Pkotlin.native.cocoapods.configuration=$CONFIGURATION -Pkotlin.native.cocoapods.cflags=\"$OTHER_CFLAGS\" -Pkotlin.native.cocoapods.paths.headers=\"$HEADER_SEARCH_PATHS\" -Pkotlin.native.cocoapods.paths.frameworks=\"$FRAMEWORK_SEARCH_PATHS\"\n" "script": " if [ \"YES\" = \"$COCOAPODS_SKIP_KOTLIN_BUILD\" ]; then\n echo \"Skipping Gradle build task invocation due to COCOAPODS_SKIP_KOTLIN_BUILD environment variable set to \"YES\"\"\n exit 0\n fi\n set -ev\n REPO_ROOT=\"$PODS_TARGET_SRCROOT\"\n \"$REPO_ROOT/../gradlew\" -p \"$REPO_ROOT\" $KOTLIN_PROJECT_PATH:syncFramework -Pkotlin.native.cocoapods.platform=$PLATFORM_NAME -Pkotlin.native.cocoapods.archs=\"$ARCHS\" -Pkotlin.native.cocoapods.configuration=$CONFIGURATION -Pkotlin.native.cocoapods.cflags=\"$OTHER_CFLAGS\" -Pkotlin.native.cocoapods.paths.headers=\"$HEADER_SEARCH_PATHS\" -Pkotlin.native.cocoapods.paths.frameworks=\"$FRAMEWORK_SEARCH_PATHS\"\n"
} }
], ],
"platforms": { "platforms": {

View file

@ -9,8 +9,8 @@ EXTERNAL SOURCES:
:path: "../../common" :path: "../../common"
SPEC CHECKSUMS: SPEC CHECKSUMS:
common: 6fa5697c311ed561bb488bca14f4f4d6f6872dd2 common: ed5a58383c5a02f46882243487c7aac341a3064f
PODFILE CHECKSUM: f7c2bab6802efae18b223d30cb88e54a074a5f69 PODFILE CHECKSUM: f7c2bab6802efae18b223d30cb88e54a074a5f69
COCOAPODS: 1.8.4 COCOAPODS: 1.9.3

View file

@ -9,23 +9,22 @@
/* Begin PBXAggregateTarget section */ /* Begin PBXAggregateTarget section */
8217FBB9D1218C346C0781D0B8F2BBE8 /* common */ = { 8217FBB9D1218C346C0781D0B8F2BBE8 /* common */ = {
isa = PBXAggregateTarget; isa = PBXAggregateTarget;
buildConfigurationList = 22394E93158CF2B7CD93BED2C7C16E84 /* Build configuration list for PBXAggregateTarget "common" */; buildConfigurationList = F11FEA02DA0EC11D42BB6656A90E71FA /* Build configuration list for PBXAggregateTarget "common" */;
buildPhases = ( buildPhases = (
1507B811A92121AABDBE5909D1BD0742 /* [CP-User] Build common */, 43D98DE986E8E206E7884FFE41159824 /* [CP-User] Build common */,
); );
dependencies = ( dependencies = (
); );
name = common; name = common;
productName = common;
}; };
/* End PBXAggregateTarget section */ /* End PBXAggregateTarget section */
/* Begin PBXBuildFile section */ /* Begin PBXBuildFile section */
3B74B298DB29CBEFF2B8948A6DE328A3 /* Pods-PeopleInSpaceSwiftUI-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A86CA23F4054B88BF808C70AE24F7B56 /* Pods-PeopleInSpaceSwiftUI-dummy.m */; }; 38BDF0E8B3338BFA3A30488D5A350AB8 /* Pods-PeopleInSpaceSwiftUI-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A86CA23F4054B88BF808C70AE24F7B56 /* Pods-PeopleInSpaceSwiftUI-dummy.m */; };
/* End PBXBuildFile section */ /* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */ /* Begin PBXContainerItemProxy section */
B0B959B848977357DEE6193677B3D4D8 /* PBXContainerItemProxy */ = { F8FF0E1AAA006974E1E1BA4BA60D5DE8 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy; isa = PBXContainerItemProxy;
containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
proxyType = 1; proxyType = 1;
@ -35,20 +34,21 @@
/* End PBXContainerItemProxy section */ /* End PBXContainerItemProxy section */
/* Begin PBXFileReference section */ /* Begin PBXFileReference section */
1E085D022350C41CCADCC76B8A247B8B /* common.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = common.framework; path = build/cocoapods/framework/common.framework; sourceTree = "<group>"; };
1E0AF3997C48E42DABE6B6C81155A5B2 /* Pods-PeopleInSpaceSwiftUI-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-PeopleInSpaceSwiftUI-acknowledgements.plist"; sourceTree = "<group>"; }; 1E0AF3997C48E42DABE6B6C81155A5B2 /* Pods-PeopleInSpaceSwiftUI-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-PeopleInSpaceSwiftUI-acknowledgements.plist"; sourceTree = "<group>"; };
3CD34E2B3A05D5CF54267136A5026E14 /* common.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = common.framework; path = build/cocoapods/framework/common.framework; sourceTree = "<group>"; };
5A8D25273B74383327E3E7ACBC7305E4 /* common.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = common.xcconfig; sourceTree = "<group>"; };
6840226B5A247C408401C8A21DC3B989 /* Pods-PeopleInSpaceSwiftUI-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-PeopleInSpaceSwiftUI-acknowledgements.markdown"; sourceTree = "<group>"; }; 6840226B5A247C408401C8A21DC3B989 /* Pods-PeopleInSpaceSwiftUI-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-PeopleInSpaceSwiftUI-acknowledgements.markdown"; sourceTree = "<group>"; };
736C3949B629B802B499B94E558FEB7C /* Pods-PeopleInSpaceSwiftUI.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-PeopleInSpaceSwiftUI.debug.xcconfig"; sourceTree = "<group>"; }; 736C3949B629B802B499B94E558FEB7C /* Pods-PeopleInSpaceSwiftUI.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-PeopleInSpaceSwiftUI.debug.xcconfig"; sourceTree = "<group>"; };
8D634CE839CA3AEAE96C88A75AD0CBEB /* libPods-PeopleInSpaceSwiftUI.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-PeopleInSpaceSwiftUI.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 8D634CE839CA3AEAE96C88A75AD0CBEB /* libPods-PeopleInSpaceSwiftUI.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libPods-PeopleInSpaceSwiftUI.a"; path = "libPods-PeopleInSpaceSwiftUI.a"; sourceTree = BUILT_PRODUCTS_DIR; };
9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 8D8D8F0133EB83F8C005095A037FE4DB /* common.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = common.debug.xcconfig; sourceTree = "<group>"; };
8FAC5073EBF0B0757DC6961EF2173740 /* common.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = common.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
A773E6A546F40FEF8634DFC3D24820AA /* Pods-PeopleInSpaceSwiftUI.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-PeopleInSpaceSwiftUI.release.xcconfig"; sourceTree = "<group>"; }; A773E6A546F40FEF8634DFC3D24820AA /* Pods-PeopleInSpaceSwiftUI.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-PeopleInSpaceSwiftUI.release.xcconfig"; sourceTree = "<group>"; };
A86CA23F4054B88BF808C70AE24F7B56 /* Pods-PeopleInSpaceSwiftUI-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-PeopleInSpaceSwiftUI-dummy.m"; sourceTree = "<group>"; }; A86CA23F4054B88BF808C70AE24F7B56 /* Pods-PeopleInSpaceSwiftUI-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-PeopleInSpaceSwiftUI-dummy.m"; sourceTree = "<group>"; };
A9816DF54F37C90EF003F10E87D1A73B /* common.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; path = common.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; ED9B1863CB7D57CA81E63DCD91B73E8D /* common.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = common.release.xcconfig; sourceTree = "<group>"; };
/* End PBXFileReference section */ /* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */
E74EC8A864E442075FBBABB7B476A36A /* Frameworks */ = { 770F099849CDC070625444D15CEFE98E /* Frameworks */ = {
isa = PBXFrameworksBuildPhase; isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647; buildActionMask = 2147483647;
files = ( files = (
@ -58,6 +58,14 @@
/* End PBXFrameworksBuildPhase section */ /* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */ /* Begin PBXGroup section */
095F7D4CD3DAAEEE34F3E3A51D285015 /* Pod */ = {
isa = PBXGroup;
children = (
8FAC5073EBF0B0757DC6961EF2173740 /* common.podspec */,
);
name = Pod;
sourceTree = "<group>";
};
16279007B826331FB448EE613536D380 /* Pods-PeopleInSpaceSwiftUI */ = { 16279007B826331FB448EE613536D380 /* Pods-PeopleInSpaceSwiftUI */ = {
isa = PBXGroup; isa = PBXGroup;
children = ( children = (
@ -79,21 +87,33 @@
name = Products; name = Products;
sourceTree = "<group>"; sourceTree = "<group>";
}; };
5E69832765403043750CB7126F304363 /* Support Files */ = { 7F2F8A12B6B975C52A0071EAC079976B /* Support Files */ = {
isa = PBXGroup; isa = PBXGroup;
children = ( children = (
5A8D25273B74383327E3E7ACBC7305E4 /* common.xcconfig */, 8D8D8F0133EB83F8C005095A037FE4DB /* common.debug.xcconfig */,
ED9B1863CB7D57CA81E63DCD91B73E8D /* common.release.xcconfig */,
); );
name = "Support Files"; name = "Support Files";
path = "../ios/PeopleInSpaceSwiftUI/Pods/Target Support Files/common"; path = "../ios/PeopleInSpaceSwiftUI/Pods/Target Support Files/common";
sourceTree = "<group>"; sourceTree = "<group>";
}; };
B7BC3A29E4DD7D119474EB7BD4026378 /* Pod */ = { 95443C47755672E8030320D594ABC7EB /* Frameworks */ = {
isa = PBXGroup; isa = PBXGroup;
children = ( children = (
A9816DF54F37C90EF003F10E87D1A73B /* common.podspec */, 1E085D022350C41CCADCC76B8A247B8B /* common.framework */,
); );
name = Pod; name = Frameworks;
sourceTree = "<group>";
};
AC0D7684359FDC5986E3C1FF33AF9E4A /* common */ = {
isa = PBXGroup;
children = (
95443C47755672E8030320D594ABC7EB /* Frameworks */,
095F7D4CD3DAAEEE34F3E3A51D285015 /* Pod */,
7F2F8A12B6B975C52A0071EAC079976B /* Support Files */,
);
name = common;
path = ../../../common;
sourceTree = "<group>"; sourceTree = "<group>";
}; };
CD6E22F258446E2870992AF448E1FC2F /* Targets Support Files */ = { CD6E22F258446E2870992AF448E1FC2F /* Targets Support Files */ = {
@ -115,14 +135,6 @@
); );
sourceTree = "<group>"; sourceTree = "<group>";
}; };
CFBE99A661CA3E282DA1A4B2DE607093 /* Frameworks */ = {
isa = PBXGroup;
children = (
3CD34E2B3A05D5CF54267136A5026E14 /* common.framework */,
);
name = Frameworks;
sourceTree = "<group>";
};
D89477F20FB1DE18A04690586D7808C4 /* Frameworks */ = { D89477F20FB1DE18A04690586D7808C4 /* Frameworks */ = {
isa = PBXGroup; isa = PBXGroup;
children = ( children = (
@ -133,26 +145,15 @@
E363132CB4A8517D710D319A73DD8CB9 /* Development Pods */ = { E363132CB4A8517D710D319A73DD8CB9 /* Development Pods */ = {
isa = PBXGroup; isa = PBXGroup;
children = ( children = (
F0AFBCE7CAC8046F3DA4BC04C9AD6579 /* common */, AC0D7684359FDC5986E3C1FF33AF9E4A /* common */,
); );
name = "Development Pods"; name = "Development Pods";
sourceTree = "<group>"; sourceTree = "<group>";
}; };
F0AFBCE7CAC8046F3DA4BC04C9AD6579 /* common */ = {
isa = PBXGroup;
children = (
CFBE99A661CA3E282DA1A4B2DE607093 /* Frameworks */,
B7BC3A29E4DD7D119474EB7BD4026378 /* Pod */,
5E69832765403043750CB7126F304363 /* Support Files */,
);
name = common;
path = ../../../common;
sourceTree = "<group>";
};
/* End PBXGroup section */ /* End PBXGroup section */
/* Begin PBXHeadersBuildPhase section */ /* Begin PBXHeadersBuildPhase section */
7882A22CDB3A6F7A2201C2A37D32DCEF /* Headers */ = { BFDC9D27413F28B1EC960C249B6A1893 /* Headers */ = {
isa = PBXHeadersBuildPhase; isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647; buildActionMask = 2147483647;
files = ( files = (
@ -164,16 +165,16 @@
/* Begin PBXNativeTarget section */ /* Begin PBXNativeTarget section */
6694FA49269F5170E337048A97626853 /* Pods-PeopleInSpaceSwiftUI */ = { 6694FA49269F5170E337048A97626853 /* Pods-PeopleInSpaceSwiftUI */ = {
isa = PBXNativeTarget; isa = PBXNativeTarget;
buildConfigurationList = BE7E1A8E7F12FBC5F1B4F33847A2DF46 /* Build configuration list for PBXNativeTarget "Pods-PeopleInSpaceSwiftUI" */; buildConfigurationList = 09D1650AC26FDBDC081D0645BD613112 /* Build configuration list for PBXNativeTarget "Pods-PeopleInSpaceSwiftUI" */;
buildPhases = ( buildPhases = (
7882A22CDB3A6F7A2201C2A37D32DCEF /* Headers */, BFDC9D27413F28B1EC960C249B6A1893 /* Headers */,
2282C528E386148265D2DC1EF5726834 /* Sources */, 8D7F7C3DC5DA780055C982594845E9C4 /* Sources */,
E74EC8A864E442075FBBABB7B476A36A /* Frameworks */, 770F099849CDC070625444D15CEFE98E /* Frameworks */,
); );
buildRules = ( buildRules = (
); );
dependencies = ( dependencies = (
2B5CA9DB2F6D93A7FA753B9ABE4B6052 /* PBXTargetDependency */, 1B304FFD9B6B3E9A4BEAE7956EBA8576 /* PBXTargetDependency */,
); );
name = "Pods-PeopleInSpaceSwiftUI"; name = "Pods-PeopleInSpaceSwiftUI";
productName = "Pods-PeopleInSpaceSwiftUI"; productName = "Pods-PeopleInSpaceSwiftUI";
@ -209,7 +210,7 @@
/* End PBXProject section */ /* End PBXProject section */
/* Begin PBXShellScriptBuildPhase section */ /* Begin PBXShellScriptBuildPhase section */
1507B811A92121AABDBE5909D1BD0742 /* [CP-User] Build common */ = { 43D98DE986E8E206E7884FFE41159824 /* [CP-User] Build common */ = {
isa = PBXShellScriptBuildPhase; isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647; buildActionMask = 2147483647;
files = ( files = (
@ -217,34 +218,34 @@
name = "[CP-User] Build common"; name = "[CP-User] Build common";
runOnlyForDeploymentPostprocessing = 0; runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh; shellPath = /bin/sh;
shellScript = " export JAVA_HOME=$(/usr/libexec/java_home -v)\n set -ev\n REPO_ROOT=\"$PODS_TARGET_SRCROOT\"\n \"$REPO_ROOT/../gradlew\" -p \"$REPO_ROOT\" :common:syncFramework -Pkotlin.native.cocoapods.target=$KOTLIN_TARGET -Pkotlin.native.cocoapods.configuration=$CONFIGURATION -Pkotlin.native.cocoapods.cflags=\"$OTHER_CFLAGS\" -Pkotlin.native.cocoapods.paths.headers=\"$HEADER_SEARCH_PATHS\" -Pkotlin.native.cocoapods.paths.frameworks=\"$FRAMEWORK_SEARCH_PATHS\"\n"; shellScript = " if [ \"YES\" = \"$COCOAPODS_SKIP_KOTLIN_BUILD\" ]; then\n echo \"Skipping Gradle build task invocation due to COCOAPODS_SKIP_KOTLIN_BUILD environment variable set to \"YES\"\"\n exit 0\n fi\n set -ev\n REPO_ROOT=\"$PODS_TARGET_SRCROOT\"\n \"$REPO_ROOT/../gradlew\" -p \"$REPO_ROOT\" $KOTLIN_PROJECT_PATH:syncFramework -Pkotlin.native.cocoapods.platform=$PLATFORM_NAME -Pkotlin.native.cocoapods.archs=\"$ARCHS\" -Pkotlin.native.cocoapods.configuration=$CONFIGURATION -Pkotlin.native.cocoapods.cflags=\"$OTHER_CFLAGS\" -Pkotlin.native.cocoapods.paths.headers=\"$HEADER_SEARCH_PATHS\" -Pkotlin.native.cocoapods.paths.frameworks=\"$FRAMEWORK_SEARCH_PATHS\"\n";
}; };
/* End PBXShellScriptBuildPhase section */ /* End PBXShellScriptBuildPhase section */
/* Begin PBXSourcesBuildPhase section */ /* Begin PBXSourcesBuildPhase section */
2282C528E386148265D2DC1EF5726834 /* Sources */ = { 8D7F7C3DC5DA780055C982594845E9C4 /* Sources */ = {
isa = PBXSourcesBuildPhase; isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647; buildActionMask = 2147483647;
files = ( files = (
3B74B298DB29CBEFF2B8948A6DE328A3 /* Pods-PeopleInSpaceSwiftUI-dummy.m in Sources */, 38BDF0E8B3338BFA3A30488D5A350AB8 /* Pods-PeopleInSpaceSwiftUI-dummy.m in Sources */,
); );
runOnlyForDeploymentPostprocessing = 0; runOnlyForDeploymentPostprocessing = 0;
}; };
/* End PBXSourcesBuildPhase section */ /* End PBXSourcesBuildPhase section */
/* Begin PBXTargetDependency section */ /* Begin PBXTargetDependency section */
2B5CA9DB2F6D93A7FA753B9ABE4B6052 /* PBXTargetDependency */ = { 1B304FFD9B6B3E9A4BEAE7956EBA8576 /* PBXTargetDependency */ = {
isa = PBXTargetDependency; isa = PBXTargetDependency;
name = common; name = common;
target = 8217FBB9D1218C346C0781D0B8F2BBE8 /* common */; target = 8217FBB9D1218C346C0781D0B8F2BBE8 /* common */;
targetProxy = B0B959B848977357DEE6193677B3D4D8 /* PBXContainerItemProxy */; targetProxy = F8FF0E1AAA006974E1E1BA4BA60D5DE8 /* PBXContainerItemProxy */;
}; };
/* End PBXTargetDependency section */ /* End PBXTargetDependency section */
/* Begin XCBuildConfiguration section */ /* Begin XCBuildConfiguration section */
59D4187F8B38BB88AA1EB55DFF47B1A0 /* Debug */ = { 1FE501E38A6219CE3BB4FD191F014A5C /* Release */ = {
isa = XCBuildConfiguration; isa = XCBuildConfiguration;
baseConfigurationReference = 736C3949B629B802B499B94E558FEB7C /* Pods-PeopleInSpaceSwiftUI.debug.xcconfig */; baseConfigurationReference = A773E6A546F40FEF8634DFC3D24820AA /* Pods-PeopleInSpaceSwiftUI.release.xcconfig */;
buildSettings = { buildSettings = {
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO; ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
CLANG_ENABLE_OBJC_WEAK = NO; CLANG_ENABLE_OBJC_WEAK = NO;
@ -252,7 +253,7 @@
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = ""; "CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = ""; "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
"CODE_SIGN_IDENTITY[sdk=watchos*]" = ""; "CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
IPHONEOS_DEPLOYMENT_TARGET = 13.2; IPHONEOS_DEPLOYMENT_TARGET = 14.0;
MACH_O_TYPE = staticlib; MACH_O_TYPE = staticlib;
OTHER_LDFLAGS = ""; OTHER_LDFLAGS = "";
OTHER_LIBTOOLFLAGS = ""; OTHER_LIBTOOLFLAGS = "";
@ -261,12 +262,13 @@
SDKROOT = iphoneos; SDKROOT = iphoneos;
SKIP_INSTALL = YES; SKIP_INSTALL = YES;
TARGETED_DEVICE_FAMILY = "1,2"; TARGETED_DEVICE_FAMILY = "1,2";
VALIDATE_PRODUCT = YES;
}; };
name = Debug; name = Release;
}; };
73ED582B3422EF7B91E3995F1EE13359 /* Release */ = { 400AC3C507EFCE6A155B28DEF8615665 /* Release */ = {
isa = XCBuildConfiguration; isa = XCBuildConfiguration;
baseConfigurationReference = 5A8D25273B74383327E3E7ACBC7305E4 /* common.xcconfig */; baseConfigurationReference = ED9B1863CB7D57CA81E63DCD91B73E8D /* common.release.xcconfig */;
buildSettings = { buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_OBJC_WEAK = NO; CLANG_ENABLE_OBJC_WEAK = NO;
@ -282,7 +284,46 @@
}; };
name = Release; name = Release;
}; };
939F1A8F6BCEB7F9F64D9EEE50CAE014 /* Debug */ = { 4B2A6ED7AD28599AB8B637CF95183F78 /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 736C3949B629B802B499B94E558FEB7C /* Pods-PeopleInSpaceSwiftUI.debug.xcconfig */;
buildSettings = {
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
CLANG_ENABLE_OBJC_WEAK = NO;
CODE_SIGN_IDENTITY = "iPhone Developer";
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
IPHONEOS_DEPLOYMENT_TARGET = 14.0;
MACH_O_TYPE = staticlib;
OTHER_LDFLAGS = "";
OTHER_LIBTOOLFLAGS = "";
PODS_ROOT = "$(SRCROOT)";
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Debug;
};
875E16A6D1475AA712D357FAABBAF685 /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 8D8D8F0133EB83F8C005095A037FE4DB /* common.debug.xcconfig */;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_OBJC_WEAK = NO;
CODE_SIGN_IDENTITY = "iPhone Developer";
IPHONEOS_DEPLOYMENT_TARGET = 4.3;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
);
SDKROOT = iphoneos;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Debug;
};
8A3650F6C8AC2EFFA814EA61C37468B1 /* Debug */ = {
isa = XCBuildConfiguration; isa = XCBuildConfiguration;
buildSettings = { buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO; ALWAYS_SEARCH_USER_PATHS = NO;
@ -333,7 +374,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES; GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 13.2; IPHONEOS_DEPLOYMENT_TARGET = 14.0;
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
MTL_FAST_MATH = YES; MTL_FAST_MATH = YES;
ONLY_ACTIVE_ARCH = YES; ONLY_ACTIVE_ARCH = YES;
@ -346,24 +387,7 @@
}; };
name = Debug; name = Debug;
}; };
9A835EDFE2533F96A29B1E0F10E40528 /* Debug */ = { AF1F8D2941B0228930706FA0F2C9BB78 /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 5A8D25273B74383327E3E7ACBC7305E4 /* common.xcconfig */;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_OBJC_WEAK = NO;
CODE_SIGN_IDENTITY = "iPhone Developer";
IPHONEOS_DEPLOYMENT_TARGET = 4.3;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/Frameworks",
);
SDKROOT = iphoneos;
TARGETED_DEVICE_FAMILY = "1,2";
};
name = Debug;
};
ECB437504DF805BD96CAABF97400B526 /* Release */ = {
isa = XCBuildConfiguration; isa = XCBuildConfiguration;
buildSettings = { buildSettings = {
ALWAYS_SEARCH_USER_PATHS = NO; ALWAYS_SEARCH_USER_PATHS = NO;
@ -411,7 +435,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES; GCC_WARN_UNUSED_VARIABLE = YES;
IPHONEOS_DEPLOYMENT_TARGET = 13.2; IPHONEOS_DEPLOYMENT_TARGET = 14.0;
MTL_ENABLE_DEBUG_INFO = NO; MTL_ENABLE_DEBUG_INFO = NO;
MTL_FAST_MATH = YES; MTL_FAST_MATH = YES;
PRODUCT_NAME = "$(TARGET_NAME)"; PRODUCT_NAME = "$(TARGET_NAME)";
@ -423,37 +447,14 @@
}; };
name = Release; name = Release;
}; };
F709B1E6CC2E88DD363784FEFA9FC9A3 /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = A773E6A546F40FEF8634DFC3D24820AA /* Pods-PeopleInSpaceSwiftUI.release.xcconfig */;
buildSettings = {
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
CLANG_ENABLE_OBJC_WEAK = NO;
CODE_SIGN_IDENTITY = "iPhone Developer";
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
IPHONEOS_DEPLOYMENT_TARGET = 13.2;
MACH_O_TYPE = staticlib;
OTHER_LDFLAGS = "";
OTHER_LIBTOOLFLAGS = "";
PODS_ROOT = "$(SRCROOT)";
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
SDKROOT = iphoneos;
SKIP_INSTALL = YES;
TARGETED_DEVICE_FAMILY = "1,2";
VALIDATE_PRODUCT = YES;
};
name = Release;
};
/* End XCBuildConfiguration section */ /* End XCBuildConfiguration section */
/* Begin XCConfigurationList section */ /* Begin XCConfigurationList section */
22394E93158CF2B7CD93BED2C7C16E84 /* Build configuration list for PBXAggregateTarget "common" */ = { 09D1650AC26FDBDC081D0645BD613112 /* Build configuration list for PBXNativeTarget "Pods-PeopleInSpaceSwiftUI" */ = {
isa = XCConfigurationList; isa = XCConfigurationList;
buildConfigurations = ( buildConfigurations = (
9A835EDFE2533F96A29B1E0F10E40528 /* Debug */, 4B2A6ED7AD28599AB8B637CF95183F78 /* Debug */,
73ED582B3422EF7B91E3995F1EE13359 /* Release */, 1FE501E38A6219CE3BB4FD191F014A5C /* Release */,
); );
defaultConfigurationIsVisible = 0; defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release; defaultConfigurationName = Release;
@ -461,17 +462,17 @@
4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */ = { 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */ = {
isa = XCConfigurationList; isa = XCConfigurationList;
buildConfigurations = ( buildConfigurations = (
939F1A8F6BCEB7F9F64D9EEE50CAE014 /* Debug */, 8A3650F6C8AC2EFFA814EA61C37468B1 /* Debug */,
ECB437504DF805BD96CAABF97400B526 /* Release */, AF1F8D2941B0228930706FA0F2C9BB78 /* Release */,
); );
defaultConfigurationIsVisible = 0; defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release; defaultConfigurationName = Release;
}; };
BE7E1A8E7F12FBC5F1B4F33847A2DF46 /* Build configuration list for PBXNativeTarget "Pods-PeopleInSpaceSwiftUI" */ = { F11FEA02DA0EC11D42BB6656A90E71FA /* Build configuration list for PBXAggregateTarget "common" */ = {
isa = XCConfigurationList; isa = XCConfigurationList;
buildConfigurations = ( buildConfigurations = (
59D4187F8B38BB88AA1EB55DFF47B1A0 /* Debug */, 875E16A6D1475AA712D357FAABBAF685 /* Debug */,
F709B1E6CC2E88DD363784FEFA9FC9A3 /* Release */, 400AC3C507EFCE6A155B28DEF8615665 /* Release */,
); );
defaultConfigurationIsVisible = 0; defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release; defaultConfigurationName = Release;

View file

@ -0,0 +1,12 @@
CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/common
FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/../../../common/build/cocoapods/framework"
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
KOTLIN_PROJECT_PATH = :common
PODS_BUILD_DIR = ${BUILD_DIR}
PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)
PODS_ROOT = ${SRCROOT}
PODS_TARGET_SRCROOT = ${PODS_ROOT}/../../../common
PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier}
PRODUCT_MODULE_NAME = common
SKIP_INSTALL = YES
USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES

View file

@ -0,0 +1,12 @@
CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/common
FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/../../../common/build/cocoapods/framework"
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
KOTLIN_PROJECT_PATH = :common
PODS_BUILD_DIR = ${BUILD_DIR}
PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)
PODS_ROOT = ${SRCROOT}
PODS_TARGET_SRCROOT = ${PODS_ROOT}/../../../common
PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier}
PRODUCT_MODULE_NAME = common
SKIP_INSTALL = YES
USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES

View file

@ -9,8 +9,8 @@ EXTERNAL SOURCES:
:path: "../../common" :path: "../../common"
SPEC CHECKSUMS: SPEC CHECKSUMS:
common: 6fa5697c311ed561bb488bca14f4f4d6f6872dd2 common: ed5a58383c5a02f46882243487c7aac341a3064f
PODFILE CHECKSUM: 4a9ed74f1dcfe79bd3d28fe2f8ba019437e5cc29 PODFILE CHECKSUM: 4a9ed74f1dcfe79bd3d28fe2f8ba019437e5cc29
COCOAPODS: 1.8.4 COCOAPODS: 1.9.3

View file

@ -1,33 +1,27 @@
{ {
"name": "common", "name": "common",
"version": "1.0", "version": "1.0",
"homepage": "Link to a Kotlin/Native module homepage", "homepage": "https://github.com/joreilly/PeopleInSpace",
"source": { "source": {
"git": "Not Published", "git": "Not Published",
"tag": "Cocoapods/common/1.0" "tag": "Cocoapods/common/1.0"
}, },
"authors": "", "authors": "",
"license": "", "license": "",
"summary": "Some description for a Kotlin/Native module", "summary": "PeopleInSpace",
"static_framework": true,
"vendored_frameworks": "build/cocoapods/framework/common.framework", "vendored_frameworks": "build/cocoapods/framework/common.framework",
"libraries": "c++", "libraries": "c++",
"module_name": "common_umbrella", "module_name": "common_umbrella",
"pod_target_xcconfig": { "pod_target_xcconfig": {
"KOTLIN_TARGET[sdk=iphonesimulator*]": "ios_x64", "KOTLIN_PROJECT_PATH": ":common",
"KOTLIN_TARGET[sdk=iphoneos*]": "ios_arm", "PRODUCT_MODULE_NAME": "common"
"KOTLIN_TARGET[sdk=watchsimulator*]": "watchos_x86",
"KOTLIN_TARGET[sdk=watchos*]": "watchos_arm",
"KOTLIN_TARGET[sdk=appletvsimulator*]": "tvos_x64",
"KOTLIN_TARGET[sdk=appletvos*]": "tvos_arm64",
"KOTLIN_TARGET[sdk=macosx*]": "macos_x64"
}, },
"script_phases": [ "script_phases": [
{ {
"name": "Build common", "name": "Build common",
"execution_position": "before_compile", "execution_position": "before_compile",
"shell_path": "/bin/sh", "shell_path": "/bin/sh",
"script": " set -ev\n REPO_ROOT=\"$PODS_TARGET_SRCROOT\"\n \"$REPO_ROOT/../gradlew\" -p \"$REPO_ROOT\" :common:syncFramework -Pkotlin.native.cocoapods.target=$KOTLIN_TARGET -Pkotlin.native.cocoapods.configuration=$CONFIGURATION -Pkotlin.native.cocoapods.cflags=\"$OTHER_CFLAGS\" -Pkotlin.native.cocoapods.paths.headers=\"$HEADER_SEARCH_PATHS\" -Pkotlin.native.cocoapods.paths.frameworks=\"$FRAMEWORK_SEARCH_PATHS\"\n" "script": " if [ \"YES\" = \"$COCOAPODS_SKIP_KOTLIN_BUILD\" ]; then\n echo \"Skipping Gradle build task invocation due to COCOAPODS_SKIP_KOTLIN_BUILD environment variable set to \"YES\"\"\n exit 0\n fi\n set -ev\n REPO_ROOT=\"$PODS_TARGET_SRCROOT\"\n \"$REPO_ROOT/../gradlew\" -p \"$REPO_ROOT\" $KOTLIN_PROJECT_PATH:syncFramework -Pkotlin.native.cocoapods.platform=$PLATFORM_NAME -Pkotlin.native.cocoapods.archs=\"$ARCHS\" -Pkotlin.native.cocoapods.configuration=$CONFIGURATION -Pkotlin.native.cocoapods.cflags=\"$OTHER_CFLAGS\" -Pkotlin.native.cocoapods.paths.headers=\"$HEADER_SEARCH_PATHS\" -Pkotlin.native.cocoapods.paths.frameworks=\"$FRAMEWORK_SEARCH_PATHS\"\n"
} }
], ],
"platforms": { "platforms": {

View file

@ -9,8 +9,8 @@ EXTERNAL SOURCES:
:path: "../../common" :path: "../../common"
SPEC CHECKSUMS: SPEC CHECKSUMS:
common: 6fa5697c311ed561bb488bca14f4f4d6f6872dd2 common: ed5a58383c5a02f46882243487c7aac341a3064f
PODFILE CHECKSUM: 4a9ed74f1dcfe79bd3d28fe2f8ba019437e5cc29 PODFILE CHECKSUM: 4a9ed74f1dcfe79bd3d28fe2f8ba019437e5cc29
COCOAPODS: 1.8.4 COCOAPODS: 1.9.3

View file

@ -9,9 +9,9 @@
/* Begin PBXAggregateTarget section */ /* Begin PBXAggregateTarget section */
8217FBB9D1218C346C0781D0B8F2BBE8 /* common */ = { 8217FBB9D1218C346C0781D0B8F2BBE8 /* common */ = {
isa = PBXAggregateTarget; isa = PBXAggregateTarget;
buildConfigurationList = 22394E93158CF2B7CD93BED2C7C16E84 /* Build configuration list for PBXAggregateTarget "common" */; buildConfigurationList = F11FEA02DA0EC11D42BB6656A90E71FA /* Build configuration list for PBXAggregateTarget "common" */;
buildPhases = ( buildPhases = (
1507B811A92121AABDBE5909D1BD0742 /* [CP-User] Build common */, 43D98DE986E8E206E7884FFE41159824 /* [CP-User] Build common */,
); );
dependencies = ( dependencies = (
); );
@ -20,11 +20,11 @@
/* End PBXAggregateTarget section */ /* End PBXAggregateTarget section */
/* Begin PBXBuildFile section */ /* Begin PBXBuildFile section */
01C619524E00CB4F491F47EC09266C07 /* Pods-PeopleInSpace-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B940C188B389195C78FD350311951B45 /* Pods-PeopleInSpace-dummy.m */; }; 7EE04E32660FEA2555A49E1495986AF0 /* Pods-PeopleInSpace-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B940C188B389195C78FD350311951B45 /* Pods-PeopleInSpace-dummy.m */; };
/* End PBXBuildFile section */ /* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */ /* Begin PBXContainerItemProxy section */
CFF40CB901E512CF518C98B30834ACC4 /* PBXContainerItemProxy */ = { 8231E61C22B0B0267D6B822E259A45F3 /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy; isa = PBXContainerItemProxy;
containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
proxyType = 1; proxyType = 1;
@ -34,20 +34,21 @@
/* End PBXContainerItemProxy section */ /* End PBXContainerItemProxy section */
/* Begin PBXFileReference section */ /* Begin PBXFileReference section */
092A4CE06CEC277508371925DC20C57F /* common.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = common.release.xcconfig; sourceTree = "<group>"; };
2574321D10AA6E9E090925AD61FC5281 /* Pods-PeopleInSpace.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-PeopleInSpace.release.xcconfig"; sourceTree = "<group>"; }; 2574321D10AA6E9E090925AD61FC5281 /* Pods-PeopleInSpace.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-PeopleInSpace.release.xcconfig"; sourceTree = "<group>"; };
3FAE73893B3BA028383FD6EBC9D41A78 /* common.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = common.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
4085E4F5221F23B6ACC7AD5F5DD5311C /* Pods-PeopleInSpace-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-PeopleInSpace-acknowledgements.plist"; sourceTree = "<group>"; }; 4085E4F5221F23B6ACC7AD5F5DD5311C /* Pods-PeopleInSpace-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-PeopleInSpace-acknowledgements.plist"; sourceTree = "<group>"; };
793C7F500A5E2FF09F28299CA517AC3F /* libPods-PeopleInSpace.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libPods-PeopleInSpace.a"; path = "libPods-PeopleInSpace.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 793C7F500A5E2FF09F28299CA517AC3F /* libPods-PeopleInSpace.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libPods-PeopleInSpace.a"; path = "libPods-PeopleInSpace.a"; sourceTree = BUILT_PRODUCTS_DIR; };
94E5CDD5D764030A85FEEB8A2E3D7F10 /* Pods-PeopleInSpace.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-PeopleInSpace.debug.xcconfig"; sourceTree = "<group>"; }; 94E5CDD5D764030A85FEEB8A2E3D7F10 /* Pods-PeopleInSpace.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-PeopleInSpace.debug.xcconfig"; sourceTree = "<group>"; };
9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
A00347E800DCC44BCE7B40F1CA328C4D /* common.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = common.xcconfig; sourceTree = "<group>"; };
B940C188B389195C78FD350311951B45 /* Pods-PeopleInSpace-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-PeopleInSpace-dummy.m"; sourceTree = "<group>"; }; B940C188B389195C78FD350311951B45 /* Pods-PeopleInSpace-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-PeopleInSpace-dummy.m"; sourceTree = "<group>"; };
C4B5AB0FF97F3A1FE65541C1328FB85C /* Pods-PeopleInSpace-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-PeopleInSpace-acknowledgements.markdown"; sourceTree = "<group>"; }; C4B5AB0FF97F3A1FE65541C1328FB85C /* Pods-PeopleInSpace-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-PeopleInSpace-acknowledgements.markdown"; sourceTree = "<group>"; };
E75F42F56609AC0DF2F5B3DA1574DD10 /* common.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = common.framework; path = build/cocoapods/framework/common.framework; sourceTree = "<group>"; }; DA2E698EFAE75544A6E4F612819CCB8B /* common.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = common.framework; path = build/cocoapods/framework/common.framework; sourceTree = "<group>"; };
EB3F91873EE86E12ADFA4BF9F5D786D8 /* common.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = common.debug.xcconfig; sourceTree = "<group>"; };
FAA6D45CC6E2EA32EC08EB9FB08994D2 /* common.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = common.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
/* End PBXFileReference section */ /* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */
85D05A73C0C3CAD455D22CDA93ED03C3 /* Frameworks */ = { E4E62A015C1A66A0F419698716F724CE /* Frameworks */ = {
isa = PBXFrameworksBuildPhase; isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647; buildActionMask = 2147483647;
files = ( files = (
@ -57,21 +58,23 @@
/* End PBXFrameworksBuildPhase section */ /* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */ /* Begin PBXGroup section */
1E601D048407729CEE7CE81C061005D3 /* Pod */ = { 0987A376BB09342147B4310FE2871602 /* common */ = {
isa = PBXGroup; isa = PBXGroup;
children = ( children = (
3FAE73893B3BA028383FD6EBC9D41A78 /* common.podspec */, 4A33BB545106CE2199669A404AA652FC /* Frameworks */,
8911087DF480A62FEBFB1D31E5F595A4 /* Pod */,
A3E62A66284AD032D5452B00763AF1E5 /* Support Files */,
); );
name = Pod; name = common;
path = ../../../common;
sourceTree = "<group>"; sourceTree = "<group>";
}; };
5224EE4D3DB6E6C5596F7B868F7D2BAC /* Support Files */ = { 4A33BB545106CE2199669A404AA652FC /* Frameworks */ = {
isa = PBXGroup; isa = PBXGroup;
children = ( children = (
A00347E800DCC44BCE7B40F1CA328C4D /* common.xcconfig */, DA2E698EFAE75544A6E4F612819CCB8B /* common.framework */,
); );
name = "Support Files"; name = Frameworks;
path = "../macOS/PeopleInSpace/Pods/Target Support Files/common";
sourceTree = "<group>"; sourceTree = "<group>";
}; };
7E33595295125D9ADC3DD69A856B53D6 /* Products */ = { 7E33595295125D9ADC3DD69A856B53D6 /* Products */ = {
@ -82,6 +85,24 @@
name = Products; name = Products;
sourceTree = "<group>"; sourceTree = "<group>";
}; };
8911087DF480A62FEBFB1D31E5F595A4 /* Pod */ = {
isa = PBXGroup;
children = (
FAA6D45CC6E2EA32EC08EB9FB08994D2 /* common.podspec */,
);
name = Pod;
sourceTree = "<group>";
};
A3E62A66284AD032D5452B00763AF1E5 /* Support Files */ = {
isa = PBXGroup;
children = (
EB3F91873EE86E12ADFA4BF9F5D786D8 /* common.debug.xcconfig */,
092A4CE06CEC277508371925DC20C57F /* common.release.xcconfig */,
);
name = "Support Files";
path = "../macOS/PeopleInSpace/Pods/Target Support Files/common";
sourceTree = "<group>";
};
A7BA680F75ECFA065C7E839926F3E718 /* Pods-PeopleInSpace */ = { A7BA680F75ECFA065C7E839926F3E718 /* Pods-PeopleInSpace */ = {
isa = PBXGroup; isa = PBXGroup;
children = ( children = (
@ -124,34 +145,15 @@
E363132CB4A8517D710D319A73DD8CB9 /* Development Pods */ = { E363132CB4A8517D710D319A73DD8CB9 /* Development Pods */ = {
isa = PBXGroup; isa = PBXGroup;
children = ( children = (
EB99FDB57521E5FF44FB702EA2BC9427 /* common */, 0987A376BB09342147B4310FE2871602 /* common */,
); );
name = "Development Pods"; name = "Development Pods";
sourceTree = "<group>"; sourceTree = "<group>";
}; };
E6421EBF3E9E6A4911793C09E256ED56 /* Frameworks */ = {
isa = PBXGroup;
children = (
E75F42F56609AC0DF2F5B3DA1574DD10 /* common.framework */,
);
name = Frameworks;
sourceTree = "<group>";
};
EB99FDB57521E5FF44FB702EA2BC9427 /* common */ = {
isa = PBXGroup;
children = (
E6421EBF3E9E6A4911793C09E256ED56 /* Frameworks */,
1E601D048407729CEE7CE81C061005D3 /* Pod */,
5224EE4D3DB6E6C5596F7B868F7D2BAC /* Support Files */,
);
name = common;
path = ../../../common;
sourceTree = "<group>";
};
/* End PBXGroup section */ /* End PBXGroup section */
/* Begin PBXHeadersBuildPhase section */ /* Begin PBXHeadersBuildPhase section */
A535059006114C6F1D301F2005196160 /* Headers */ = { D2F76021650D1455345732B70977A3FC /* Headers */ = {
isa = PBXHeadersBuildPhase; isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647; buildActionMask = 2147483647;
files = ( files = (
@ -163,16 +165,16 @@
/* Begin PBXNativeTarget section */ /* Begin PBXNativeTarget section */
C17638F5D623F54F5BC5696E85FCF8A3 /* Pods-PeopleInSpace */ = { C17638F5D623F54F5BC5696E85FCF8A3 /* Pods-PeopleInSpace */ = {
isa = PBXNativeTarget; isa = PBXNativeTarget;
buildConfigurationList = FA99AC17215E8308D9DE02E2E6EA8844 /* Build configuration list for PBXNativeTarget "Pods-PeopleInSpace" */; buildConfigurationList = BEE7419E71C054760BD15B7423CFF907 /* Build configuration list for PBXNativeTarget "Pods-PeopleInSpace" */;
buildPhases = ( buildPhases = (
A535059006114C6F1D301F2005196160 /* Headers */, D2F76021650D1455345732B70977A3FC /* Headers */,
011B08B9B3E3B301EE6DD7BA55600CE5 /* Sources */, D305D7457D6577A950CFE60B3043D652 /* Sources */,
85D05A73C0C3CAD455D22CDA93ED03C3 /* Frameworks */, E4E62A015C1A66A0F419698716F724CE /* Frameworks */,
); );
buildRules = ( buildRules = (
); );
dependencies = ( dependencies = (
1675BBA5E52E7587E56A87653DC6E9E5 /* PBXTargetDependency */, 57232FE50E2497447CFACBE2757A8222 /* PBXTargetDependency */,
); );
name = "Pods-PeopleInSpace"; name = "Pods-PeopleInSpace";
productName = "Pods-PeopleInSpace"; productName = "Pods-PeopleInSpace";
@ -208,7 +210,7 @@
/* End PBXProject section */ /* End PBXProject section */
/* Begin PBXShellScriptBuildPhase section */ /* Begin PBXShellScriptBuildPhase section */
1507B811A92121AABDBE5909D1BD0742 /* [CP-User] Build common */ = { 43D98DE986E8E206E7884FFE41159824 /* [CP-User] Build common */ = {
isa = PBXShellScriptBuildPhase; isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647; buildActionMask = 2147483647;
files = ( files = (
@ -216,27 +218,27 @@
name = "[CP-User] Build common"; name = "[CP-User] Build common";
runOnlyForDeploymentPostprocessing = 0; runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh; shellPath = /bin/sh;
shellScript = " set -ev\n REPO_ROOT=\"$PODS_TARGET_SRCROOT\"\n \"$REPO_ROOT/../gradlew\" -p \"$REPO_ROOT\" :common:syncFramework -Pkotlin.native.cocoapods.target=$KOTLIN_TARGET -Pkotlin.native.cocoapods.configuration=$CONFIGURATION -Pkotlin.native.cocoapods.cflags=\"$OTHER_CFLAGS\" -Pkotlin.native.cocoapods.paths.headers=\"$HEADER_SEARCH_PATHS\" -Pkotlin.native.cocoapods.paths.frameworks=\"$FRAMEWORK_SEARCH_PATHS\"\n"; shellScript = " if [ \"YES\" = \"$COCOAPODS_SKIP_KOTLIN_BUILD\" ]; then\n echo \"Skipping Gradle build task invocation due to COCOAPODS_SKIP_KOTLIN_BUILD environment variable set to \"YES\"\"\n exit 0\n fi\n set -ev\n REPO_ROOT=\"$PODS_TARGET_SRCROOT\"\n \"$REPO_ROOT/../gradlew\" -p \"$REPO_ROOT\" $KOTLIN_PROJECT_PATH:syncFramework -Pkotlin.native.cocoapods.platform=$PLATFORM_NAME -Pkotlin.native.cocoapods.archs=\"$ARCHS\" -Pkotlin.native.cocoapods.configuration=$CONFIGURATION -Pkotlin.native.cocoapods.cflags=\"$OTHER_CFLAGS\" -Pkotlin.native.cocoapods.paths.headers=\"$HEADER_SEARCH_PATHS\" -Pkotlin.native.cocoapods.paths.frameworks=\"$FRAMEWORK_SEARCH_PATHS\"\n";
}; };
/* End PBXShellScriptBuildPhase section */ /* End PBXShellScriptBuildPhase section */
/* Begin PBXSourcesBuildPhase section */ /* Begin PBXSourcesBuildPhase section */
011B08B9B3E3B301EE6DD7BA55600CE5 /* Sources */ = { D305D7457D6577A950CFE60B3043D652 /* Sources */ = {
isa = PBXSourcesBuildPhase; isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647; buildActionMask = 2147483647;
files = ( files = (
01C619524E00CB4F491F47EC09266C07 /* Pods-PeopleInSpace-dummy.m in Sources */, 7EE04E32660FEA2555A49E1495986AF0 /* Pods-PeopleInSpace-dummy.m in Sources */,
); );
runOnlyForDeploymentPostprocessing = 0; runOnlyForDeploymentPostprocessing = 0;
}; };
/* End PBXSourcesBuildPhase section */ /* End PBXSourcesBuildPhase section */
/* Begin PBXTargetDependency section */ /* Begin PBXTargetDependency section */
1675BBA5E52E7587E56A87653DC6E9E5 /* PBXTargetDependency */ = { 57232FE50E2497447CFACBE2757A8222 /* PBXTargetDependency */ = {
isa = PBXTargetDependency; isa = PBXTargetDependency;
name = common; name = common;
target = 8217FBB9D1218C346C0781D0B8F2BBE8 /* common */; target = 8217FBB9D1218C346C0781D0B8F2BBE8 /* common */;
targetProxy = CFF40CB901E512CF518C98B30834ACC4 /* PBXContainerItemProxy */; targetProxy = 8231E61C22B0B0267D6B822E259A45F3 /* PBXContainerItemProxy */;
}; };
/* End PBXTargetDependency section */ /* End PBXTargetDependency section */
@ -301,70 +303,6 @@
}; };
name = Release; name = Release;
}; };
2C0C71862B7B5914AA6CDDBD5DEDEEA8 /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 94E5CDD5D764030A85FEEB8A2E3D7F10 /* Pods-PeopleInSpace.debug.xcconfig */;
buildSettings = {
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
ARCHS = "$(ARCHS_STANDARD_64_BIT)";
CLANG_ENABLE_OBJC_WEAK = NO;
CODE_SIGN_IDENTITY = "-";
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
EXECUTABLE_PREFIX = lib;
MACH_O_TYPE = staticlib;
MACOSX_DEPLOYMENT_TARGET = 10.15;
OTHER_LDFLAGS = "";
OTHER_LIBTOOLFLAGS = "";
PODS_ROOT = "$(SRCROOT)";
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
SDKROOT = macosx;
SKIP_INSTALL = YES;
};
name = Debug;
};
4378E0E922D349595C61062955029C5F /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = A00347E800DCC44BCE7B40F1CA328C4D /* common.xcconfig */;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_64_BIT)";
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_OBJC_WEAK = NO;
CODE_SIGN_IDENTITY = "-";
COMBINE_HIDPI_IMAGES = YES;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/../Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 10.6;
SDKROOT = macosx;
};
name = Release;
};
4677EB1F62110A5E04DC38D83060CA94 /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 2574321D10AA6E9E090925AD61FC5281 /* Pods-PeopleInSpace.release.xcconfig */;
buildSettings = {
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
ARCHS = "$(ARCHS_STANDARD_64_BIT)";
CLANG_ENABLE_OBJC_WEAK = NO;
CODE_SIGN_IDENTITY = "-";
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
EXECUTABLE_PREFIX = lib;
MACH_O_TYPE = staticlib;
MACOSX_DEPLOYMENT_TARGET = 10.15;
OTHER_LDFLAGS = "";
OTHER_LIBTOOLFLAGS = "";
PODS_ROOT = "$(SRCROOT)";
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
SDKROOT = macosx;
SKIP_INSTALL = YES;
};
name = Release;
};
6DC6BBF7D2A721A4E91A75A28EEB8E83 /* Debug */ = { 6DC6BBF7D2A721A4E91A75A28EEB8E83 /* Debug */ = {
isa = XCBuildConfiguration; isa = XCBuildConfiguration;
buildSettings = { buildSettings = {
@ -429,9 +367,32 @@
}; };
name = Debug; name = Debug;
}; };
E5DED7EB022DACA148D8CEC01BD2C67B /* Debug */ = { 80DB47D66BFD15CAB66D0E949A3F916A /* Debug */ = {
isa = XCBuildConfiguration; isa = XCBuildConfiguration;
baseConfigurationReference = A00347E800DCC44BCE7B40F1CA328C4D /* common.xcconfig */; baseConfigurationReference = 94E5CDD5D764030A85FEEB8A2E3D7F10 /* Pods-PeopleInSpace.debug.xcconfig */;
buildSettings = {
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
ARCHS = "$(ARCHS_STANDARD_64_BIT)";
CLANG_ENABLE_OBJC_WEAK = NO;
CODE_SIGN_IDENTITY = "-";
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
EXECUTABLE_PREFIX = lib;
MACH_O_TYPE = staticlib;
MACOSX_DEPLOYMENT_TARGET = 10.15;
OTHER_LDFLAGS = "";
OTHER_LIBTOOLFLAGS = "";
PODS_ROOT = "$(SRCROOT)";
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
SDKROOT = macosx;
SKIP_INSTALL = YES;
};
name = Debug;
};
86D2A2EFA4F2CF72E22F58CF8CD6B995 /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = EB3F91873EE86E12ADFA4BF9F5D786D8 /* common.debug.xcconfig */;
buildSettings = { buildSettings = {
ARCHS = "$(ARCHS_STANDARD_64_BIT)"; ARCHS = "$(ARCHS_STANDARD_64_BIT)";
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
@ -447,18 +408,50 @@
}; };
name = Debug; name = Debug;
}; };
A131A2412A163203FF1534E11094A448 /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 092A4CE06CEC277508371925DC20C57F /* common.release.xcconfig */;
buildSettings = {
ARCHS = "$(ARCHS_STANDARD_64_BIT)";
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CLANG_ENABLE_OBJC_WEAK = NO;
CODE_SIGN_IDENTITY = "-";
COMBINE_HIDPI_IMAGES = YES;
LD_RUNPATH_SEARCH_PATHS = (
"$(inherited)",
"@executable_path/../Frameworks",
);
MACOSX_DEPLOYMENT_TARGET = 10.6;
SDKROOT = macosx;
};
name = Release;
};
D6A7904CAD11E3F3726C99F86480B560 /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 2574321D10AA6E9E090925AD61FC5281 /* Pods-PeopleInSpace.release.xcconfig */;
buildSettings = {
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO;
ARCHS = "$(ARCHS_STANDARD_64_BIT)";
CLANG_ENABLE_OBJC_WEAK = NO;
CODE_SIGN_IDENTITY = "-";
"CODE_SIGN_IDENTITY[sdk=appletvos*]" = "";
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "";
"CODE_SIGN_IDENTITY[sdk=watchos*]" = "";
EXECUTABLE_PREFIX = lib;
MACH_O_TYPE = staticlib;
MACOSX_DEPLOYMENT_TARGET = 10.15;
OTHER_LDFLAGS = "";
OTHER_LIBTOOLFLAGS = "";
PODS_ROOT = "$(SRCROOT)";
PRODUCT_BUNDLE_IDENTIFIER = "org.cocoapods.${PRODUCT_NAME:rfc1034identifier}";
SDKROOT = macosx;
SKIP_INSTALL = YES;
};
name = Release;
};
/* End XCBuildConfiguration section */ /* End XCBuildConfiguration section */
/* Begin XCConfigurationList section */ /* Begin XCConfigurationList section */
22394E93158CF2B7CD93BED2C7C16E84 /* Build configuration list for PBXAggregateTarget "common" */ = {
isa = XCConfigurationList;
buildConfigurations = (
E5DED7EB022DACA148D8CEC01BD2C67B /* Debug */,
4378E0E922D349595C61062955029C5F /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */ = { 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */ = {
isa = XCConfigurationList; isa = XCConfigurationList;
buildConfigurations = ( buildConfigurations = (
@ -468,11 +461,20 @@
defaultConfigurationIsVisible = 0; defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release; defaultConfigurationName = Release;
}; };
FA99AC17215E8308D9DE02E2E6EA8844 /* Build configuration list for PBXNativeTarget "Pods-PeopleInSpace" */ = { BEE7419E71C054760BD15B7423CFF907 /* Build configuration list for PBXNativeTarget "Pods-PeopleInSpace" */ = {
isa = XCConfigurationList; isa = XCConfigurationList;
buildConfigurations = ( buildConfigurations = (
2C0C71862B7B5914AA6CDDBD5DEDEEA8 /* Debug */, 80DB47D66BFD15CAB66D0E949A3F916A /* Debug */,
4677EB1F62110A5E04DC38D83060CA94 /* Release */, D6A7904CAD11E3F3726C99F86480B560 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
F11FEA02DA0EC11D42BB6656A90E71FA /* Build configuration list for PBXAggregateTarget "common" */ = {
isa = XCConfigurationList;
buildConfigurations = (
86D2A2EFA4F2CF72E22F58CF8CD6B995 /* Debug */,
A131A2412A163203FF1534E11094A448 /* Release */,
); );
defaultConfigurationIsVisible = 0; defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release; defaultConfigurationName = Release;

View file

@ -8,15 +8,11 @@
<dict> <dict>
<key>isShown</key> <key>isShown</key>
<false/> <false/>
<key>orderHint</key>
<integer>1</integer>
</dict> </dict>
<key>common.xcscheme</key> <key>common.xcscheme</key>
<dict> <dict>
<key>isShown</key> <key>isShown</key>
<false/> <false/>
<key>orderHint</key>
<integer>0</integer>
</dict> </dict>
</dict> </dict>
<key>SuppressBuildableAutocreation</key> <key>SuppressBuildableAutocreation</key>

View file

@ -0,0 +1,12 @@
CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/common
FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/../../../common/build/cocoapods/framework"
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
KOTLIN_PROJECT_PATH = :common
PODS_BUILD_DIR = ${BUILD_DIR}
PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)
PODS_ROOT = ${SRCROOT}
PODS_TARGET_SRCROOT = ${PODS_ROOT}/../../../common
PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier}
PRODUCT_MODULE_NAME = common
SKIP_INSTALL = YES
USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES

View file

@ -0,0 +1,12 @@
CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/common
FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/../../../common/build/cocoapods/framework"
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
KOTLIN_PROJECT_PATH = :common
PODS_BUILD_DIR = ${BUILD_DIR}
PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)
PODS_ROOT = ${SRCROOT}
PODS_TARGET_SRCROOT = ${PODS_ROOT}/../../../common
PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier}
PRODUCT_MODULE_NAME = common
SKIP_INSTALL = YES
USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES

View file

@ -9,8 +9,8 @@ EXTERNAL SOURCES:
:path: "../../common" :path: "../../common"
SPEC CHECKSUMS: SPEC CHECKSUMS:
common: 6fa5697c311ed561bb488bca14f4f4d6f6872dd2 common: ed5a58383c5a02f46882243487c7aac341a3064f
PODFILE CHECKSUM: 6df3d5f3a55cbf876a39668e6b4f20833b9bb9c4 PODFILE CHECKSUM: 6df3d5f3a55cbf876a39668e6b4f20833b9bb9c4
COCOAPODS: 1.8.4 COCOAPODS: 1.9.3

View file

@ -1,33 +1,27 @@
{ {
"name": "common", "name": "common",
"version": "1.0", "version": "1.0",
"homepage": "Link to a Kotlin/Native module homepage", "homepage": "https://github.com/joreilly/PeopleInSpace",
"source": { "source": {
"git": "Not Published", "git": "Not Published",
"tag": "Cocoapods/common/1.0" "tag": "Cocoapods/common/1.0"
}, },
"authors": "", "authors": "",
"license": "", "license": "",
"summary": "Some description for a Kotlin/Native module", "summary": "PeopleInSpace",
"static_framework": true,
"vendored_frameworks": "build/cocoapods/framework/common.framework", "vendored_frameworks": "build/cocoapods/framework/common.framework",
"libraries": "c++", "libraries": "c++",
"module_name": "common_umbrella", "module_name": "common_umbrella",
"pod_target_xcconfig": { "pod_target_xcconfig": {
"KOTLIN_TARGET[sdk=iphonesimulator*]": "ios_x64", "KOTLIN_PROJECT_PATH": ":common",
"KOTLIN_TARGET[sdk=iphoneos*]": "ios_arm", "PRODUCT_MODULE_NAME": "common"
"KOTLIN_TARGET[sdk=watchsimulator*]": "watchos_x86",
"KOTLIN_TARGET[sdk=watchos*]": "watchos_arm",
"KOTLIN_TARGET[sdk=appletvsimulator*]": "tvos_x64",
"KOTLIN_TARGET[sdk=appletvos*]": "tvos_arm64",
"KOTLIN_TARGET[sdk=macosx*]": "macos_x64"
}, },
"script_phases": [ "script_phases": [
{ {
"name": "Build common", "name": "Build common",
"execution_position": "before_compile", "execution_position": "before_compile",
"shell_path": "/bin/sh", "shell_path": "/bin/sh",
"script": " set -ev\n REPO_ROOT=\"$PODS_TARGET_SRCROOT\"\n \"$REPO_ROOT/../gradlew\" -p \"$REPO_ROOT\" :common:syncFramework -Pkotlin.native.cocoapods.target=$KOTLIN_TARGET -Pkotlin.native.cocoapods.configuration=$CONFIGURATION -Pkotlin.native.cocoapods.cflags=\"$OTHER_CFLAGS\" -Pkotlin.native.cocoapods.paths.headers=\"$HEADER_SEARCH_PATHS\" -Pkotlin.native.cocoapods.paths.frameworks=\"$FRAMEWORK_SEARCH_PATHS\"\n" "script": " if [ \"YES\" = \"$COCOAPODS_SKIP_KOTLIN_BUILD\" ]; then\n echo \"Skipping Gradle build task invocation due to COCOAPODS_SKIP_KOTLIN_BUILD environment variable set to \"YES\"\"\n exit 0\n fi\n set -ev\n REPO_ROOT=\"$PODS_TARGET_SRCROOT\"\n \"$REPO_ROOT/../gradlew\" -p \"$REPO_ROOT\" $KOTLIN_PROJECT_PATH:syncFramework -Pkotlin.native.cocoapods.platform=$PLATFORM_NAME -Pkotlin.native.cocoapods.archs=\"$ARCHS\" -Pkotlin.native.cocoapods.configuration=$CONFIGURATION -Pkotlin.native.cocoapods.cflags=\"$OTHER_CFLAGS\" -Pkotlin.native.cocoapods.paths.headers=\"$HEADER_SEARCH_PATHS\" -Pkotlin.native.cocoapods.paths.frameworks=\"$FRAMEWORK_SEARCH_PATHS\"\n"
} }
], ],
"platforms": { "platforms": {

View file

@ -9,8 +9,8 @@ EXTERNAL SOURCES:
:path: "../../common" :path: "../../common"
SPEC CHECKSUMS: SPEC CHECKSUMS:
common: 6fa5697c311ed561bb488bca14f4f4d6f6872dd2 common: ed5a58383c5a02f46882243487c7aac341a3064f
PODFILE CHECKSUM: 6df3d5f3a55cbf876a39668e6b4f20833b9bb9c4 PODFILE CHECKSUM: 6df3d5f3a55cbf876a39668e6b4f20833b9bb9c4
COCOAPODS: 1.8.4 COCOAPODS: 1.9.3

View file

@ -9,9 +9,9 @@
/* Begin PBXAggregateTarget section */ /* Begin PBXAggregateTarget section */
8217FBB9D1218C346C0781D0B8F2BBE8 /* common */ = { 8217FBB9D1218C346C0781D0B8F2BBE8 /* common */ = {
isa = PBXAggregateTarget; isa = PBXAggregateTarget;
buildConfigurationList = 22394E93158CF2B7CD93BED2C7C16E84 /* Build configuration list for PBXAggregateTarget "common" */; buildConfigurationList = F11FEA02DA0EC11D42BB6656A90E71FA /* Build configuration list for PBXAggregateTarget "common" */;
buildPhases = ( buildPhases = (
1507B811A92121AABDBE5909D1BD0742 /* [CP-User] Build common */, 43D98DE986E8E206E7884FFE41159824 /* [CP-User] Build common */,
); );
dependencies = ( dependencies = (
); );
@ -20,11 +20,11 @@
/* End PBXAggregateTarget section */ /* End PBXAggregateTarget section */
/* Begin PBXBuildFile section */ /* Begin PBXBuildFile section */
976C749918FF25BF3E6DB522154ED8B5 /* Pods-PeopleInSpaceWatch WatchKit Extension-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DC1D18ADBD5345A01CAE24C0079CBD0F /* Pods-PeopleInSpaceWatch WatchKit Extension-dummy.m */; }; 0C749D8AAF913DDEC47FDD0DE771B069 /* Pods-PeopleInSpaceWatch WatchKit Extension-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DC1D18ADBD5345A01CAE24C0079CBD0F /* Pods-PeopleInSpaceWatch WatchKit Extension-dummy.m */; };
/* End PBXBuildFile section */ /* End PBXBuildFile section */
/* Begin PBXContainerItemProxy section */ /* Begin PBXContainerItemProxy section */
91F8FC0B9E57B565D8646F5DD5FED220 /* PBXContainerItemProxy */ = { EE04E8D3C6A27073C3FCC773DECD080C /* PBXContainerItemProxy */ = {
isa = PBXContainerItemProxy; isa = PBXContainerItemProxy;
containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */;
proxyType = 1; proxyType = 1;
@ -34,20 +34,21 @@
/* End PBXContainerItemProxy section */ /* End PBXContainerItemProxy section */
/* Begin PBXFileReference section */ /* Begin PBXFileReference section */
119841385FF18F63B759D038AF309492 /* common.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = common.debug.xcconfig; sourceTree = "<group>"; };
149B6A848B81890030D6253DD114E942 /* Pods-PeopleInSpaceWatch WatchKit Extension.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-PeopleInSpaceWatch WatchKit Extension.release.xcconfig"; sourceTree = "<group>"; }; 149B6A848B81890030D6253DD114E942 /* Pods-PeopleInSpaceWatch WatchKit Extension.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-PeopleInSpaceWatch WatchKit Extension.release.xcconfig"; sourceTree = "<group>"; };
902B4113DC06F6372260E0AF2571D67B /* common.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = common.framework; path = build/cocoapods/framework/common.framework; sourceTree = "<group>"; }; 2AD7B05D8490BEB737073DC7016F31FD /* common.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = common.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; 9D940727FF8FB9C785EB98E56350EF41 /* Podfile */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
9E3FDD244DB653FA5E4C1E97E6367222 /* Pods-PeopleInSpaceWatch WatchKit Extension.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-PeopleInSpaceWatch WatchKit Extension.debug.xcconfig"; sourceTree = "<group>"; }; 9E3FDD244DB653FA5E4C1E97E6367222 /* Pods-PeopleInSpaceWatch WatchKit Extension.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Pods-PeopleInSpaceWatch WatchKit Extension.debug.xcconfig"; sourceTree = "<group>"; };
A7520423EC3A8725256FE2ADEBDCBDE4 /* Pods-PeopleInSpaceWatch WatchKit Extension-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-PeopleInSpaceWatch WatchKit Extension-acknowledgements.plist"; sourceTree = "<group>"; }; A7520423EC3A8725256FE2ADEBDCBDE4 /* Pods-PeopleInSpaceWatch WatchKit Extension-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-PeopleInSpaceWatch WatchKit Extension-acknowledgements.plist"; sourceTree = "<group>"; };
B80D442752296BE83B96879500B188C1 /* common.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = common.podspec; sourceTree = "<group>"; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; CE9575AD15C56E1BE14733BC55F1D2F0 /* common.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = common.release.xcconfig; sourceTree = "<group>"; };
D86A92CEA9CE35E4D6CD95F4F4D562F8 /* common.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = common.xcconfig; sourceTree = "<group>"; };
DAB8033F282232D40C2644C0FBD6F995 /* Pods-PeopleInSpaceWatch WatchKit Extension-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-PeopleInSpaceWatch WatchKit Extension-acknowledgements.markdown"; sourceTree = "<group>"; }; DAB8033F282232D40C2644C0FBD6F995 /* Pods-PeopleInSpaceWatch WatchKit Extension-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-PeopleInSpaceWatch WatchKit Extension-acknowledgements.markdown"; sourceTree = "<group>"; };
DC1D18ADBD5345A01CAE24C0079CBD0F /* Pods-PeopleInSpaceWatch WatchKit Extension-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-PeopleInSpaceWatch WatchKit Extension-dummy.m"; sourceTree = "<group>"; }; DC1D18ADBD5345A01CAE24C0079CBD0F /* Pods-PeopleInSpaceWatch WatchKit Extension-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-PeopleInSpaceWatch WatchKit Extension-dummy.m"; sourceTree = "<group>"; };
F1FACE141F597243D0441CDA0F8EA5F9 /* libPods-PeopleInSpaceWatch WatchKit Extension.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libPods-PeopleInSpaceWatch WatchKit Extension.a"; path = "libPods-PeopleInSpaceWatch WatchKit Extension.a"; sourceTree = BUILT_PRODUCTS_DIR; }; F1FACE141F597243D0441CDA0F8EA5F9 /* libPods-PeopleInSpaceWatch WatchKit Extension.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libPods-PeopleInSpaceWatch WatchKit Extension.a"; path = "libPods-PeopleInSpaceWatch WatchKit Extension.a"; sourceTree = BUILT_PRODUCTS_DIR; };
F82413CE0FCFD04402DCEE32C7E3542A /* common.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = common.framework; path = build/cocoapods/framework/common.framework; sourceTree = "<group>"; };
/* End PBXFileReference section */ /* End PBXFileReference section */
/* Begin PBXFrameworksBuildPhase section */ /* Begin PBXFrameworksBuildPhase section */
C3C02C9ABB51C0D1FD713B709A5F17EE /* Frameworks */ = { 0B27656A9FD73AE1C79682B421216737 /* Frameworks */ = {
isa = PBXFrameworksBuildPhase; isa = PBXFrameworksBuildPhase;
buildActionMask = 2147483647; buildActionMask = 2147483647;
files = ( files = (
@ -57,6 +58,14 @@
/* End PBXFrameworksBuildPhase section */ /* End PBXFrameworksBuildPhase section */
/* Begin PBXGroup section */ /* Begin PBXGroup section */
0D9EB16E9DA5DD26FCC61C66283B6C89 /* Frameworks */ = {
isa = PBXGroup;
children = (
F82413CE0FCFD04402DCEE32C7E3542A /* common.framework */,
);
name = Frameworks;
sourceTree = "<group>";
};
17A9B9613A3C5DA9922EBA3659C2A5B7 /* Targets Support Files */ = { 17A9B9613A3C5DA9922EBA3659C2A5B7 /* Targets Support Files */ = {
isa = PBXGroup; isa = PBXGroup;
children = ( children = (
@ -65,34 +74,35 @@
name = "Targets Support Files"; name = "Targets Support Files";
sourceTree = "<group>"; sourceTree = "<group>";
}; };
4217982DA34E4E0FF50878CE106EA834 /* common */ = { 715F8FF7EBB034DF99D4F60663952A87 /* Support Files */ = {
isa = PBXGroup; isa = PBXGroup;
children = ( children = (
FB5E3FB695DBF1A40AACA0783432385F /* Frameworks */, 119841385FF18F63B759D038AF309492 /* common.debug.xcconfig */,
510480DD1DFA7B7B3259CF63608B049C /* Pod */, CE9575AD15C56E1BE14733BC55F1D2F0 /* common.release.xcconfig */,
7AEE0193694C8B1329AAFF3E9A4B7E48 /* Support Files */, );
name = "Support Files";
path = "../watchos/PeopleInSpaceWatch/Pods/Target Support Files/common";
sourceTree = "<group>";
};
9368F09DCFEA1D84CDA1E6046BF31BD3 /* common */ = {
isa = PBXGroup;
children = (
0D9EB16E9DA5DD26FCC61C66283B6C89 /* Frameworks */,
C0179FCAD1B83EEAFDDEF0C02C98EF56 /* Pod */,
715F8FF7EBB034DF99D4F60663952A87 /* Support Files */,
); );
name = common; name = common;
path = ../../../common; path = ../../../common;
sourceTree = "<group>"; sourceTree = "<group>";
}; };
510480DD1DFA7B7B3259CF63608B049C /* Pod */ = { C0179FCAD1B83EEAFDDEF0C02C98EF56 /* Pod */ = {
isa = PBXGroup; isa = PBXGroup;
children = ( children = (
B80D442752296BE83B96879500B188C1 /* common.podspec */, 2AD7B05D8490BEB737073DC7016F31FD /* common.podspec */,
); );
name = Pod; name = Pod;
sourceTree = "<group>"; sourceTree = "<group>";
}; };
7AEE0193694C8B1329AAFF3E9A4B7E48 /* Support Files */ = {
isa = PBXGroup;
children = (
D86A92CEA9CE35E4D6CD95F4F4D562F8 /* common.xcconfig */,
);
name = "Support Files";
path = "../watchos/PeopleInSpaceWatch/Pods/Target Support Files/common";
sourceTree = "<group>";
};
CF1408CF629C7361332E53B88F7BD30C = { CF1408CF629C7361332E53B88F7BD30C = {
isa = PBXGroup; isa = PBXGroup;
children = ( children = (
@ -114,7 +124,7 @@
E363132CB4A8517D710D319A73DD8CB9 /* Development Pods */ = { E363132CB4A8517D710D319A73DD8CB9 /* Development Pods */ = {
isa = PBXGroup; isa = PBXGroup;
children = ( children = (
4217982DA34E4E0FF50878CE106EA834 /* common */, 9368F09DCFEA1D84CDA1E6046BF31BD3 /* common */,
); );
name = "Development Pods"; name = "Development Pods";
sourceTree = "<group>"; sourceTree = "<group>";
@ -132,14 +142,6 @@
path = "Target Support Files/Pods-PeopleInSpaceWatch WatchKit Extension"; path = "Target Support Files/Pods-PeopleInSpaceWatch WatchKit Extension";
sourceTree = "<group>"; sourceTree = "<group>";
}; };
FB5E3FB695DBF1A40AACA0783432385F /* Frameworks */ = {
isa = PBXGroup;
children = (
902B4113DC06F6372260E0AF2571D67B /* common.framework */,
);
name = Frameworks;
sourceTree = "<group>";
};
FED7A9DE4382F6F1CF2FCE315EBFC126 /* Products */ = { FED7A9DE4382F6F1CF2FCE315EBFC126 /* Products */ = {
isa = PBXGroup; isa = PBXGroup;
children = ( children = (
@ -151,7 +153,7 @@
/* End PBXGroup section */ /* End PBXGroup section */
/* Begin PBXHeadersBuildPhase section */ /* Begin PBXHeadersBuildPhase section */
72CF36946A42600337AEDCBD357694D4 /* Headers */ = { B9ABBE4EC232D19B4E7349B9CC59169C /* Headers */ = {
isa = PBXHeadersBuildPhase; isa = PBXHeadersBuildPhase;
buildActionMask = 2147483647; buildActionMask = 2147483647;
files = ( files = (
@ -163,16 +165,16 @@
/* Begin PBXNativeTarget section */ /* Begin PBXNativeTarget section */
4580107691245E4D9B22511BB71D0CFD /* Pods-PeopleInSpaceWatch WatchKit Extension */ = { 4580107691245E4D9B22511BB71D0CFD /* Pods-PeopleInSpaceWatch WatchKit Extension */ = {
isa = PBXNativeTarget; isa = PBXNativeTarget;
buildConfigurationList = BC674E0849A2558F900A14E0BBE4D4C0 /* Build configuration list for PBXNativeTarget "Pods-PeopleInSpaceWatch WatchKit Extension" */; buildConfigurationList = 9FC55EE579AC901DF6357BBBD4DB19AC /* Build configuration list for PBXNativeTarget "Pods-PeopleInSpaceWatch WatchKit Extension" */;
buildPhases = ( buildPhases = (
72CF36946A42600337AEDCBD357694D4 /* Headers */, B9ABBE4EC232D19B4E7349B9CC59169C /* Headers */,
CB3EDE7E960D2D4D65D16C4FD4DAFAEA /* Sources */, 56E796D9F97CBFFC2C2D86E089073DDB /* Sources */,
C3C02C9ABB51C0D1FD713B709A5F17EE /* Frameworks */, 0B27656A9FD73AE1C79682B421216737 /* Frameworks */,
); );
buildRules = ( buildRules = (
); );
dependencies = ( dependencies = (
F2F71677BE507642830C5C343B1DBBBB /* PBXTargetDependency */, A1C0840897375D6F9A0D747A47ED879D /* PBXTargetDependency */,
); );
name = "Pods-PeopleInSpaceWatch WatchKit Extension"; name = "Pods-PeopleInSpaceWatch WatchKit Extension";
productName = "Pods-PeopleInSpaceWatch WatchKit Extension"; productName = "Pods-PeopleInSpaceWatch WatchKit Extension";
@ -208,7 +210,7 @@
/* End PBXProject section */ /* End PBXProject section */
/* Begin PBXShellScriptBuildPhase section */ /* Begin PBXShellScriptBuildPhase section */
1507B811A92121AABDBE5909D1BD0742 /* [CP-User] Build common */ = { 43D98DE986E8E206E7884FFE41159824 /* [CP-User] Build common */ = {
isa = PBXShellScriptBuildPhase; isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647; buildActionMask = 2147483647;
files = ( files = (
@ -216,32 +218,44 @@
name = "[CP-User] Build common"; name = "[CP-User] Build common";
runOnlyForDeploymentPostprocessing = 0; runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh; shellPath = /bin/sh;
shellScript = " set -ev\n REPO_ROOT=\"$PODS_TARGET_SRCROOT\"\n \"$REPO_ROOT/../gradlew\" -p \"$REPO_ROOT\" :common:syncFramework -Pkotlin.native.cocoapods.target=$KOTLIN_TARGET -Pkotlin.native.cocoapods.configuration=$CONFIGURATION -Pkotlin.native.cocoapods.cflags=\"$OTHER_CFLAGS\" -Pkotlin.native.cocoapods.paths.headers=\"$HEADER_SEARCH_PATHS\" -Pkotlin.native.cocoapods.paths.frameworks=\"$FRAMEWORK_SEARCH_PATHS\"\n"; shellScript = " if [ \"YES\" = \"$COCOAPODS_SKIP_KOTLIN_BUILD\" ]; then\n echo \"Skipping Gradle build task invocation due to COCOAPODS_SKIP_KOTLIN_BUILD environment variable set to \"YES\"\"\n exit 0\n fi\n set -ev\n REPO_ROOT=\"$PODS_TARGET_SRCROOT\"\n \"$REPO_ROOT/../gradlew\" -p \"$REPO_ROOT\" $KOTLIN_PROJECT_PATH:syncFramework -Pkotlin.native.cocoapods.platform=$PLATFORM_NAME -Pkotlin.native.cocoapods.archs=\"$ARCHS\" -Pkotlin.native.cocoapods.configuration=$CONFIGURATION -Pkotlin.native.cocoapods.cflags=\"$OTHER_CFLAGS\" -Pkotlin.native.cocoapods.paths.headers=\"$HEADER_SEARCH_PATHS\" -Pkotlin.native.cocoapods.paths.frameworks=\"$FRAMEWORK_SEARCH_PATHS\"\n";
}; };
/* End PBXShellScriptBuildPhase section */ /* End PBXShellScriptBuildPhase section */
/* Begin PBXSourcesBuildPhase section */ /* Begin PBXSourcesBuildPhase section */
CB3EDE7E960D2D4D65D16C4FD4DAFAEA /* Sources */ = { 56E796D9F97CBFFC2C2D86E089073DDB /* Sources */ = {
isa = PBXSourcesBuildPhase; isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647; buildActionMask = 2147483647;
files = ( files = (
976C749918FF25BF3E6DB522154ED8B5 /* Pods-PeopleInSpaceWatch WatchKit Extension-dummy.m in Sources */, 0C749D8AAF913DDEC47FDD0DE771B069 /* Pods-PeopleInSpaceWatch WatchKit Extension-dummy.m in Sources */,
); );
runOnlyForDeploymentPostprocessing = 0; runOnlyForDeploymentPostprocessing = 0;
}; };
/* End PBXSourcesBuildPhase section */ /* End PBXSourcesBuildPhase section */
/* Begin PBXTargetDependency section */ /* Begin PBXTargetDependency section */
F2F71677BE507642830C5C343B1DBBBB /* PBXTargetDependency */ = { A1C0840897375D6F9A0D747A47ED879D /* PBXTargetDependency */ = {
isa = PBXTargetDependency; isa = PBXTargetDependency;
name = common; name = common;
target = 8217FBB9D1218C346C0781D0B8F2BBE8 /* common */; target = 8217FBB9D1218C346C0781D0B8F2BBE8 /* common */;
targetProxy = 91F8FC0B9E57B565D8646F5DD5FED220 /* PBXContainerItemProxy */; targetProxy = EE04E8D3C6A27073C3FCC773DECD080C /* PBXContainerItemProxy */;
}; };
/* End PBXTargetDependency section */ /* End PBXTargetDependency section */
/* Begin XCBuildConfiguration section */ /* Begin XCBuildConfiguration section */
1E34F27F5E5CFE2E6F5823DA67BFA4E8 /* Release */ = { 0B111895A7AE97EC60FD8B781FA7CC72 /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = 119841385FF18F63B759D038AF309492 /* common.debug.xcconfig */;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
SDKROOT = watchos;
SKIP_INSTALL = YES;
TARGETED_DEVICE_FAMILY = 4;
WATCHOS_DEPLOYMENT_TARGET = 2.0;
};
name = Debug;
};
1A5736533A2B7B75D49836A2FC39CC84 /* Release */ = {
isa = XCBuildConfiguration; isa = XCBuildConfiguration;
baseConfigurationReference = 149B6A848B81890030D6253DD114E942 /* Pods-PeopleInSpaceWatch WatchKit Extension.release.xcconfig */; baseConfigurationReference = 149B6A848B81890030D6253DD114E942 /* Pods-PeopleInSpaceWatch WatchKit Extension.release.xcconfig */;
buildSettings = { buildSettings = {
@ -262,19 +276,7 @@
}; };
name = Release; name = Release;
}; };
1FB60239666BEC12721F040F5B2F99A8 /* Debug */ = { 3E2E076D87D6AFE5B0D66EF03D75DB95 /* Debug */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = D86A92CEA9CE35E4D6CD95F4F4D562F8 /* common.xcconfig */;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
SDKROOT = watchos;
SKIP_INSTALL = YES;
TARGETED_DEVICE_FAMILY = 4;
WATCHOS_DEPLOYMENT_TARGET = 2.0;
};
name = Debug;
};
C8625A4A0A7FC50E74F0517F51D54319 /* Debug */ = {
isa = XCBuildConfiguration; isa = XCBuildConfiguration;
baseConfigurationReference = 9E3FDD244DB653FA5E4C1E97E6367222 /* Pods-PeopleInSpaceWatch WatchKit Extension.debug.xcconfig */; baseConfigurationReference = 9E3FDD244DB653FA5E4C1E97E6367222 /* Pods-PeopleInSpaceWatch WatchKit Extension.debug.xcconfig */;
buildSettings = { buildSettings = {
@ -294,6 +296,19 @@
}; };
name = Debug; name = Debug;
}; };
8346672A1828A890BA99B12718363CAE /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = CE9575AD15C56E1BE14733BC55F1D2F0 /* common.release.xcconfig */;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
SDKROOT = watchos;
SKIP_INSTALL = YES;
TARGETED_DEVICE_FAMILY = 4;
VALIDATE_PRODUCT = YES;
WATCHOS_DEPLOYMENT_TARGET = 2.0;
};
name = Release;
};
D51956542E1F2A75D23A41318D65FA37 /* Debug */ = { D51956542E1F2A75D23A41318D65FA37 /* Debug */ = {
isa = XCBuildConfiguration; isa = XCBuildConfiguration;
buildSettings = { buildSettings = {
@ -358,19 +373,6 @@
}; };
name = Debug; name = Debug;
}; };
EB22998F3D73623796B2BABE70C214D6 /* Release */ = {
isa = XCBuildConfiguration;
baseConfigurationReference = D86A92CEA9CE35E4D6CD95F4F4D562F8 /* common.xcconfig */;
buildSettings = {
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
SDKROOT = watchos;
SKIP_INSTALL = YES;
TARGETED_DEVICE_FAMILY = 4;
VALIDATE_PRODUCT = YES;
WATCHOS_DEPLOYMENT_TARGET = 2.0;
};
name = Release;
};
F46900EF7BED262D107B1A0457CCC609 /* Release */ = { F46900EF7BED262D107B1A0457CCC609 /* Release */ = {
isa = XCBuildConfiguration; isa = XCBuildConfiguration;
buildSettings = { buildSettings = {
@ -434,15 +436,6 @@
/* End XCBuildConfiguration section */ /* End XCBuildConfiguration section */
/* Begin XCConfigurationList section */ /* Begin XCConfigurationList section */
22394E93158CF2B7CD93BED2C7C16E84 /* Build configuration list for PBXAggregateTarget "common" */ = {
isa = XCConfigurationList;
buildConfigurations = (
1FB60239666BEC12721F040F5B2F99A8 /* Debug */,
EB22998F3D73623796B2BABE70C214D6 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */ = { 4821239608C13582E20E6DA73FD5F1F9 /* Build configuration list for PBXProject "Pods" */ = {
isa = XCConfigurationList; isa = XCConfigurationList;
buildConfigurations = ( buildConfigurations = (
@ -452,11 +445,20 @@
defaultConfigurationIsVisible = 0; defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release; defaultConfigurationName = Release;
}; };
BC674E0849A2558F900A14E0BBE4D4C0 /* Build configuration list for PBXNativeTarget "Pods-PeopleInSpaceWatch WatchKit Extension" */ = { 9FC55EE579AC901DF6357BBBD4DB19AC /* Build configuration list for PBXNativeTarget "Pods-PeopleInSpaceWatch WatchKit Extension" */ = {
isa = XCConfigurationList; isa = XCConfigurationList;
buildConfigurations = ( buildConfigurations = (
C8625A4A0A7FC50E74F0517F51D54319 /* Debug */, 3E2E076D87D6AFE5B0D66EF03D75DB95 /* Debug */,
1E34F27F5E5CFE2E6F5823DA67BFA4E8 /* Release */, 1A5736533A2B7B75D49836A2FC39CC84 /* Release */,
);
defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release;
};
F11FEA02DA0EC11D42BB6656A90E71FA /* Build configuration list for PBXAggregateTarget "common" */ = {
isa = XCConfigurationList;
buildConfigurations = (
0B111895A7AE97EC60FD8B781FA7CC72 /* Debug */,
8346672A1828A890BA99B12718363CAE /* Release */,
); );
defaultConfigurationIsVisible = 0; defaultConfigurationIsVisible = 0;
defaultConfigurationName = Release; defaultConfigurationName = Release;

View file

@ -0,0 +1,13 @@
APPLICATION_EXTENSION_API_ONLY = YES
CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/common
FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/../../../common/build/cocoapods/framework"
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
KOTLIN_PROJECT_PATH = :common
PODS_BUILD_DIR = ${BUILD_DIR}
PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)
PODS_ROOT = ${SRCROOT}
PODS_TARGET_SRCROOT = ${PODS_ROOT}/../../../common
PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier}
PRODUCT_MODULE_NAME = common
SKIP_INSTALL = YES
USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES

View file

@ -0,0 +1,13 @@
APPLICATION_EXTENSION_API_ONLY = YES
CONFIGURATION_BUILD_DIR = ${PODS_CONFIGURATION_BUILD_DIR}/common
FRAMEWORK_SEARCH_PATHS = $(inherited) "${PODS_ROOT}/../../../common/build/cocoapods/framework"
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
KOTLIN_PROJECT_PATH = :common
PODS_BUILD_DIR = ${BUILD_DIR}
PODS_CONFIGURATION_BUILD_DIR = ${PODS_BUILD_DIR}/$(CONFIGURATION)$(EFFECTIVE_PLATFORM_NAME)
PODS_ROOT = ${SRCROOT}
PODS_TARGET_SRCROOT = ${PODS_ROOT}/../../../common
PRODUCT_BUNDLE_IDENTIFIER = org.cocoapods.${PRODUCT_NAME:rfc1034identifier}
PRODUCT_MODULE_NAME = common
SKIP_INSTALL = YES
USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES = YES

View file

@ -4,15 +4,12 @@ plugins {
} }
android { android {
compileSdk = 30 compileSdk = Versions.androidCompileSdk
buildToolsVersion = "30.0.3"
defaultConfig { defaultConfig {
applicationId = "com.surrus.peopleinspace" applicationId = "com.surrus.peopleinspace"
minSdk = 30 minSdk = 25
targetSdk = 30 targetSdk = Versions.androidTargetSdk
versionCode = 1
versionName = "1.0"
} }
buildFeatures { buildFeatures {