Coder Social home page Coder Social logo

ouya-csharp's Introduction

ouya-csharp

C# bindings for the OUYA Development Kit 1.0.7

To get your Mono for Android game showing up in the OUYA Launcher, you will need to:

  • set the project to use API Level 16

  • add the Launcher image (732x412 pixels) in Resources/Drawable-xhdpi/ouya_icon.png

  • add the following IntentFilter attribute to your Activity class

    [IntentFilter(new[] { Intent.ActionMain } , Categories = new[] { Intent.CategoryLauncher, OuyaIntent.CategoryGame })]

  • add your application key key.der file to your project under Resources/Raw.

Deploy the game to the device. Now it will show up in the OUYA Launcher.

Disclaimer: This project is a community-supported extension to the OUYA Development Kit and is in no way connected to OUYA, Inc. The OUYA name is owned by OUYA, Inc.

Prerequisites

The library uses the new async/await keywords that were introduced in Xamarin.Android 4.8. In order to use these keywords in Visual Studio 2010, you will need the Async CTP version 3.0 installed.

Examples

Using the new async/await style APIs is very simple. This example retrieves the products from the Store, initiates a purchase for the first item and if successful, retrieves the receipts.

    products = await facade.RequestProductListAsync("__TEST__01", "__TEST__02");
    var purchaseResult = await facade.RequestPurchaseAsync(products[0]);
    if (purchaseResult)
        receipts = await facade.RequestReceiptsAsync();

Error handling for this example simply involves wrapping it in a try..catch block.

ouya-csharp's People

Contributors

konajugames avatar aranda avatar

Watchers

Cosificando avatar James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.