-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
PODS: | ||
- openaikotlin (0.0.1) | ||
- openai-kotlin (0.0.1) | ||
|
||
DEPENDENCIES: | ||
- openaikotlin (from `../shared`) | ||
- openai-kotlin (from `../shared`) | ||
|
||
EXTERNAL SOURCES: | ||
openaikotlin: | ||
openai-kotlin: | ||
:path: "../shared" | ||
|
||
SPEC CHECKSUMS: | ||
openaikotlin: d873fcb3f9141d4595b6f9c972cc569a8dce6b08 | ||
openai-kotlin: 4b0ac2aec10e8ed5737d6d94b797c3834c7d82c0 | ||
|
||
PODFILE CHECKSUM: 64290bb500b09d8bb1d6e7169a11beb5183bd77d | ||
PODFILE CHECKSUM: 74035878c52d4bf553fe5a2385732cf95e984d93 | ||
|
||
COCOAPODS: 1.11.3 |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Large diffs are not rendered by default.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
This file was deleted.
This file was deleted.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
Pod::Spec.new do |spec| | ||
spec.name = 'openai-kotlin' | ||
spec.version = '0.0.1' | ||
spec.homepage = 'Link to the Shared Module homepage' | ||
spec.source = { :http=> ''} | ||
spec.authors = '' | ||
spec.license = '' | ||
spec.summary = 'Some description for the Shared Module' | ||
spec.vendored_frameworks = 'build/cocoapods/framework/openaikotlin.framework' | ||
spec.libraries = 'c++' | ||
spec.ios.deployment_target = '14.1' | ||
|
||
|
||
spec.pod_target_xcconfig = { | ||
'KOTLIN_PROJECT_PATH' => ':shared', | ||
'PRODUCT_MODULE_NAME' => 'openaikotlin', | ||
} | ||
|
||
spec.script_phases = [ | ||
{ | ||
:name => 'Build openai-kotlin', | ||
:execution_position => :before_compile, | ||
:shell_path => '/bin/sh', | ||
:script => <<-SCRIPT | ||
if [ "YES" = "$OVERRIDE_KOTLIN_BUILD_IDE_SUPPORTED" ]; then | ||
echo "Skipping Gradle build task invocation due to OVERRIDE_KOTLIN_BUILD_IDE_SUPPORTED environment variable set to \"YES\"" | ||
exit 0 | ||
fi | ||
set -ev | ||
REPO_ROOT="$PODS_TARGET_SRCROOT" | ||
"$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" | ||
SCRIPT | ||
} | ||
] | ||
|
||
end |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.