This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| fastlane_version "1.94.0" | |
| default_platform :ios | |
| platform :ios do | |
| desc "Run Unity Editor tests" | |
| lane :test_unit do | |
| unity( | |
| run_editor_tests: true | |
| ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| public interface IUsersAPI | |
| { | |
| // GET api/users/:id | |
| void GetUser(int id, Action<string> onSuccess, Action<string> onFailure); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| // DDDImageConverter.swift | |
| // Unity-iPhone | |
| // | |
| // Created by dddnuts on 5/1/16. | |
| // | |
| // | |
| import UIKit | |
| import Photos |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public void GetHomeTimeline() | |
| { | |
| var url = "https://api.twitter.com/1.1/statuses/home_timeline.json"; | |
| var session = Twitter.Session; | |
| var oauth = OAuth.OAuthRequest.ForProtectedResource("GET", | |
| Environments.TwitterConsumerKey, | |
| Environments.TwitterConsumerSecret, | |
| session.authToken.token, | |
| session.authToken.secret); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| // DDDImageConverter.swift | |
| // Unity-iPhone | |
| // | |
| // Created by dddnuts on 5/1/16. | |
| // | |
| // | |
| import UIKit | |
| import Photos |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| // DDDImagePickerPlugin.mm | |
| // Unity-iPhone | |
| // | |
| // Created by dddnuts on 4/29/16. | |
| // | |
| // | |
| #import <Foundation/Foundation.h> | |
| #import <QBImagePicker/QBImagePicker.h> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| github "questbeat/QBImagePicker" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| table { | |
| /* Scroll on overflow */ | |
| display: block; | |
| overflow: auto; | |
| } |