Skip to content

Ratel13/avalon

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Avalon

Productivity boost for cocos2d-x developers.

Build Status

Avalon provides various extension, helpers, libraries, classes, templates & functions on top of cocos2d-x. It should speed up cross-platform development and automate annoying tasks.

Installation

General

iOS

  1. Don't forget git submodule update --init
  2. Add this directory to Header Search Path in Build Settings
  3. Add all sources files from avalon/ to your project
  4. But choose the right platform stuff from avalon/platform/

Android

  1. Don't forget git submodule update --init
  2. TODO: IMPORT COCOS2D-X PROJECT INTO WORKSPACE
  3. Add LOCAL_WHOLE_STATIC_LIBRARIES += avalon_static to jni/Android.mk
  4. Add $(call import-module,$AVALON_PATH) to jni/Android.mk
    • Please change $AVALON_PATH to the right path on your disk
    • Warning Keep in mind that all module imports are relative to $NDKROOT
    • Warning This line must be below include $(BUILD_SHARED_LIBRARY)
  5. Optional Declare additional features with AVALON_FEATURES
    • They could require third-party libs so please read the feature section too

Features

Payment

Amazon
  1. Set AVALON_PLATFORM_FLAVOR to amazon in your jni/Android.mk

  2. Add payment to AVALON_FEATURES in your jni/Android.mk

  3. Copy the com folder from avalon/platform/android-amazon/java/ to the src/ folder of you project

  4. Is there a libs/ folder next to src/? No? Create it. Now.

  5. Copy avalon/platform/android-amazon/java/in-app-purchasing-$VERSION.jar into libs/

  6. Ensure the internet permission in your AndroidManifest.xml

     <uses-permission android:name="android.permission.INTERNET"/>
    
  7. Ensure the following receiver configuration in your AndroidManifest.xml

     <receiver android:name="com.amazon.inapp.purchasing.ResponseReceiver" >
         <intent-filter>
             <action android:name="com.amazon.inapp.purchasing.NOTIFY"
                     android:permission="com.amazon.inapp.purchasing.Permission.NOTIFY" />
         </intent-filter>
     </receiver>
    
Google

TBD

Samsung

TBD

Ads

Revmob

TBD

Chartboost

TBD

GameCenter

TBD

Documentations

License

The MIT License (MIT)

Copyright (c) 2013 Michael Contento <michaelcontento@gmail.com>
                   Jochen Heizmann  <info@intermediaware.de>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

About

Various extensions, helper and functions for cocos2d-x

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 50.7%
  • Java 37.4%
  • Objective-C++ 6.1%
  • Objective-C 5.1%
  • Other 0.7%