Hi,
I'm trying to package a binary distributed third party framework 'xxxxxx'. Due to our internal IT infrastructure I can not put a ZIP to an HTTP(s) server, so I set up an git repo with the structure
xxxxx/xxxxx.framework
xxxxx/resources.bundle
The app builds fie so far but the framework is not copied into the app. What o I need to specify so it also gets bundled into the app?
Thanks,
Thomas
{
"name": "FGxxxxx",
"version": "3.6.0.1",
"summary": "xxxxx iOS SDK",
"license": {
"type": "Commercial",
},
"authors": {
},
"platforms": {
"ios": "10.0"
},
"source": {
},
"resources" : [ "xxxxx/resources.bundle"],
"vendored_frameworks": "xxxxx/xxxxx.framework",
"frameworks": [
],
"libraries": ["z"],
"requires_arc": true
}