I am building a game in Unity3D for iOS and Android. For leaderboards and achievements, I want to use GREE in Android and Gamecenter in iOS. So, when building from Unity3D, is it possible to configure in such a way that GREE libs and files are not present in XCode project and iOS have no dependancy with GREE?
Unity3D Build Configuration to omit a package for iOS
378 Views Asked by Srijith Vijayamohan At
1
There are 1 best solutions below
Related Questions in ANDROID
- Delay in loading Html Page(WebView) from assets folder in real android device
- MPAndroidChart method setWordWrapEnabled() not found
- Designing a 'new post' android activity
- Android :EditText inside ListView always update first item in the listview
- Android: Transferring Data via ContentIntent
- Wrong xml being inflated android
- AsyncTask Class
- Unable to receive extras in Android Intent
- Website zoomed out on Android default browser
- Square FloatingActionButton with Android Design Library
- Google Maps API Re-size
- Push toolbar content below statusbar
- Android FragmentPagerAdapter Circular listview
- Layout not shifting up when keyboard is open
- auDIO_OUTPUT_FLAG_FAST denied by client can't connect to localhost
Related Questions in IOS
- Overlapping UICollectionView in storyboard
- Cannot pod spec lint because of undeclared type errors
- Is the transactionReceipt data present in dataWithContentsOfURL?
- UIWebView Screen Fitting Issue
- ZXingObjC encoding issues
- iOS: None of the valid provisioning profiles allowed the specific entitlements
- How to hide "Now playing url" in control center
- CloudKit: Preventing Duplicate Records
- Slow performance on ipad erasing image
- Swift code with multiple NSDateFormatter - optimization
- iOS 8.3 Safari crashes on input type=file
- TTTTimeIntervalFormatter always returns strings in English
- How do I add multiple in app purchases in Swift Spritekit?
- Setup code for xibs in iOS. -awakFromNb:
- iOS Voice Over only reads out the title of any alert views
Related Questions in UNITY-GAME-ENGINE
- Using arrow keys to rotate an object
- know object behind another object is fully visible
- Unity3d AudioSource not creatable
- Unity3d - Input.GetKey returns true more than once
- Flurry Ads on Unity3D with Prime31 plugin
- Make screenshot of DirectX window that is hidden and doesn't have focus
- Coroutine being detected as inactive despite being active
- Unity3D: Adding charged force in relation to position
- Unity - Particles emitting non-random
- 3d mouse aim camera 3rd person vertical C#
- Unity: How would I go about creating a power up system?
- Unity - Gui Button issues (Android)
- Unity3d strange Collider behaviour
- Start() function doesn't work properly after Application.LoadLevel
- Gravity works weird
Related Questions in GAME-CENTER
- EXE_BAD_BADACCESS trying to access GKMatch?
- Game Centre - Submitting to a Non-Default Leaderboard
- GameCenter iTunesConnect - Leaderboard is not a member of a leaderboard set attached to version
- IOS Sprite Kit Game Center Can't Add Leaderboard in Itunes Connect
- Application is not recognized by Game Center after iOS Certificate renewal
- How to prevent Game Center from altering icon badge?
- Game Center Authentication More than Once Swift
- Game Center groups
- iOS - issue with rematchWithCompletionHandler in Sandbox
- (GKMatch GKVoiceChat) - both Players get disconnected after didFindMatch is called
- GameCenter high scores doesn't include recently set score
- GameCenter Integration with SpriteKit
- How have you dealt with with Game Center leaderboards in your Universal game?
- Can you create ios game center leaderboard sets after app goes live
- Saving a highscore for Game Center in Swift 2
Related Questions in GREE
- GREE(Open feint) in ios - Update score not working in test account
- Unity3D Build Configuration to omit a package for iOS
- Migrate from openFeint to Gree platform
- GREE Integration endup with Errors
- Calling an Action from an Action
- Is there something like python decorators for c#?
- Gree iOS Achievements show Dashboard
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
In the script, you can use the Platform Dependent Compilation to control which part of code get compiled and which part not. For example, you can write something like this:
Because you have just the same script for both iOS and Android, this script you write will be no issue for build. And for the purpose of preventing libs and files (I think they might all be plugin) show in wrong project folder, you can try to use the folders in your /Assets/Plugins/ folder. Put all iOS-only files to /Assets/Plugins/iOS/ and all Android-only files to /Assets/Plugins/Android/. After building for different platform, Unity will copy the files in corresponding folder to your iOS/Android project.