Sylvain Patenaude
03/24/2020, 5:17 PMios_framework_name
in the build.gradle file? Can we use that variable to change the name of the generated framework for iOS?Kris Wong
03/24/2020, 5:18 PMSylvain Patenaude
03/24/2020, 5:20 PMKris Wong
03/24/2020, 5:22 PMKris Wong
03/24/2020, 5:22 PMSylvain Patenaude
03/24/2020, 5:25 PMbuildscript {
ext.ios_framework_name = 'myToto2'
}
It doesn't seem like a custom variable, more of a property of ext. Not sure what ext is either though.Kris Wong
03/24/2020, 5:26 PMKris Wong
03/24/2020, 5:26 PMSylvain Patenaude
03/24/2020, 5:27 PMKris Wong
03/24/2020, 5:27 PMKris Wong
03/24/2020, 5:28 PMKris Wong
03/24/2020, 5:28 PMSylvain Patenaude
03/24/2020, 5:34 PMbaseName = "$MySDK-${version}"
doesn't work since it renames the whole framework (not just the root directory).Sylvain Patenaude
03/24/2020, 8:51 PM.../1.0.0/MySDK.framework
. But not sure how to accomplish this either.