Productivity boost for cocos2d-x developers.
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.
- Don't forget
git submodule update --init
- Add this directory to Header Search Path in Build Settings
- Add all sources files from
avalon/
to your project - But choose the right platform stuff from
avalon/platform/
- Don't forget
git submodule update --init
- TODO: IMPORT COCOS2D-X PROJECT INTO WORKSPACE
- Add
LOCAL_WHOLE_STATIC_LIBRARIES += avalon_static
tojni/Android.mk
- Add
$(call import-module,$AVALON_PATH)
tojni/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)
- Please change
- Optional Declare additional features with
AVALON_FEATURES
- They could require third-party libs so please read the feature section too
-
Set
AVALON_PLATFORM_FLAVOR
toamazon
in yourjni/Android.mk
-
Add
payment
toAVALON_FEATURES
in yourjni/Android.mk
-
Copy the
com
folder fromavalon/platform/android-amazon/java/
to thesrc/
folder of you project -
Is there a
libs/
folder next tosrc/
? No? Create it. Now. -
Copy
avalon/platform/android-amazon/java/in-app-purchasing-$VERSION.jar
intolibs/
-
Ensure the internet permission in your
AndroidManifest.xml
<uses-permission android:name="android.permission.INTERNET"/>
-
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>
TBD
TBD
TBD
TBD
TBD
The MIT License (MIT)
Copyright (c) 2013 Michael Contento <[email protected]>
Jochen Heizmann <[email protected]>
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.