You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, i have an app that distributes packages by NPM and I need to change the location of the folders from frameworks, so that whoever consumes my package by npm can receive the framework and don't needed to apply framework in all they projects , how can I set a new folder for iOS and Android consume pushiO framwork from another folder? in 6.50.0 or less version i can do like this:
on iOS early 6.51.0 version i can do like this on podfile:
pod 'PushIOManager', :path => '../node_modules/@company/pushio/PushIOManager.podspec'
where the pushIO is the framework did i download in oracle web site
on Android early 6.51.0 version i can do like this on build.gradle:
include ':PushIOManager'
project(':PushIOManager').projectDir = new File(rootProject.projectDir, ''../node_modules/@company/pushio/pushio.aar')
how can i change this folder of frameworksm or i cant?
The text was updated successfully, but these errors were encountered:
Hello, i have an app that distributes packages by NPM and I need to change the location of the folders from frameworks, so that whoever consumes my package by npm can receive the framework and don't needed to apply framework in all they projects , how can I set a new folder for iOS and Android consume pushiO framwork from another folder? in 6.50.0 or less version i can do like this:
on iOS early 6.51.0 version i can do like this on podfile:
pod 'PushIOManager', :path => '../node_modules/@company/pushio/PushIOManager.podspec'
where the pushIO is the framework did i download in oracle web site
on Android early 6.51.0 version i can do like this on build.gradle:
include ':PushIOManager'
project(':PushIOManager').projectDir = new File(rootProject.projectDir, ''../node_modules/@company/pushio/pushio.aar')
how can i change this folder of frameworksm or i cant?
The text was updated successfully, but these errors were encountered: