unity
ios
pod
dependency
SomePluginFolder/Editor/
SomePlugin.xml Example
<?xml version="1.0" encoding="UTF-8"?>
<dependencies>
<androidPackages>
<androidPackage spec="com.android.support:support-annotations:28.0.0" />
<androidPackage spec="com.facebook.android:audience-network-sdk:5.10.1" />
</androidPackages>
<iosPods>
<iosPod name="FBAudienceNetwork" version="~> 5.10.0" />
<iosPod name="Helpshift" version="7.7.1-withCampaigns">
<sources>
<source>
https://github.com/CocoaPods/Specs
</source>
</sources>
</iosPod>
<iosPod name="SQLCipher" version="4.2">
<sources>
<source>
https://github.com/CocoaPods/Specs
</source>
</sources>
</iosPod>
</iosPods>
</dependencies>
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '9.0'
target 'Unity-iPhone' do
pod 'FBAudienceNetwork', '~> 5.10.0'
end
github example repo:
https://github.com/bigyo-fourdesire/testPodfile
Ref:
redirect: https://app.gitbook.com/@fourdesire/s/sdk-health-check/unity-2019-to-2020 前言 Unity 升 2020 之後 build Android 有一些問題,各有對應的地方要修改,但是讓 unity 把全部 gradle 重新產一遍就可以全部解決 參考 PR: https://github.com/fourdesire/bedtime-client/compare/feature/0.6.0...feature/0.6.0-i-refine_android_gradle_template Problem 1 ref: https://answers.unity.com/questions/1802208/build-error-27.html
Jul 30, 2021Delete all local branches except develop and master git branch | grep -v "develop" | grep -v "master" | xargs git branch -D Revert a single file git checkout [commit ID] -- path/to/file git commit -m 'commit message'
Jul 23, 2021可以新增 no 的選項在 plist ITSAppUsesNonExemptEncryption ref: https://help.apple.com/xcode/mac/current/#/dev0dc15d044 Add the line below in the build config script rootDict.SetBoolean ("ITSAppUsesNonExemptEncryption", false);
Jul 20, 2021To disable Rebuild from Bitcode in fastlane gym, use export_options: { compileBitcode: false } https://qiita.com/yum_fishing/items/5181612dd4b8806a317e
Jun 28, 2021or
By clicking below, you agree to our terms of service.
New to HackMD? Sign up