Back to project page AllBinary-Platform-Game.
The source code is released under:
AllBinary Open License Version 1.0 Copyright (c) 2011 AllBinary. By agreeing to this license you and any business entity you represent are legally bound to this legal agreement. You may transmit, m...
If you think the Android project AllBinary-Platform-Game listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package org.allbinary.game.testgamedemo.resource; //from w w w . j a v a2s .co m /* * Note that errors may occur even though your importing R correctly * This usually is caused by Duplicate R classes * Solution is usually to move the R class from the org.allbinary.game.game_name * package into the independent src directory not part of the multi process apk * Remark out for independent Activities */ import org.allbinary.android.input.motion.button.TouchButtonAndroidResources; import org.allbinary.game.testgamedemo.init.TestGameDemoResourceInitialization; public class TestGameDemoAndroidResourceInitialization extends TestGameDemoResourceInitialization { public void init() throws Exception { super.init(); new TouchButtonAndroidResources().init(); //TestGameDemoResources.init(); } }