0
我想爲我的項目有一個通用的Fastlane文件。在每個項目中,我只想設置一些文件需要的變量。傳入變量爲import_from_git
我想象中的自定義中fastfile應該是這個樣子:
myVariable = "Tank"
myArray = ["1", "2", "3", "let's go"]
import_from_git(url: '[email protected]:foo/FastlaneFiles.git', path: 'Fastfile')
但是,這不會工作,我認爲它預計的定義是在一個車道。我該如何定義變量,以便通用的Fastlane可以使用它們? (我不喜歡設置環境變量)