fastlane-plugin-versioning icon indicating copy to clipboard operation
fastlane-plugin-versioning copied to clipboard

Explicitly define plist path

Open KieranLafferty opened this issue 6 years ago • 2 comments

Hey there, wondering if it's possible to just explicitly set the plist_path using this plugin? Problem I am facing is that the build number is updating my app target but can't find my notification target. Would be much simpler for me if I could just specify the paths to each of the info plists instead.

Thanks for the help!

KieranLafferty avatar Jul 03 '18 03:07 KieranLafferty

have you tried to use target option and provide your extension target name there? I ended up having 2 calls to update both main and push extension build number

    increment_build_number_in_plist(
       build_number: "1",
       scheme: "MyApp"
    )

    increment_build_number_in_plist(
       build_number: "1",
       target: "MyApp.PushExtension"
    )

nemoeslovo avatar Feb 04 '19 06:02 nemoeslovo

@KieranLafferty - does doing a couple of invocations suffice?

jdouglas-nz avatar Mar 31 '20 20:03 jdouglas-nz