Skip to content

Commit

Permalink
feat: fix scons build for AdColony #61
Browse files Browse the repository at this point in the history
  • Loading branch information
gumaciel committed Aug 11, 2023
1 parent 1bcad7f commit 899e750
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions SConstruct
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,14 @@ if env['plugin'] == 'ads':
elif env['plugin'] == 'adcolony':
if env['simulator']:
xcframework_directory_adcolony = 'ios-arm64_i386_x86_64-simulator'
GoogleMobileAdsMediationAdColony = 'ios-arm64_x86_64-simulator'
else:
xcframework_directory_adcolony = 'ios-arm64_armv7'
GoogleMobileAdsMediationAdColony = 'ios-arm64_armv7'

env.Append(FRAMEWORKPATH=['#PoingGodotAdMob/Pods/AdColony/AdColony.xcframework/' + xcframework_directory_adcolony])
env.Append(FRAMEWORKPATH=['#PoingGodotAdMob/Pods/GoogleMobileAdsMediationAdColony/AdColonyAdapter-4.9.0.2/AdColonyAdapter.xcframework/' + xcframework_directory_adcolony])

# elif env['plugin'] == 'meta':
# # Meta framework paths
# # Add the appropriate paths for the Meta plugin
Expand Down

0 comments on commit 899e750

Please sign in to comment.