This file contains 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
This is what the logs look like from the crash. Just try and figur out what the problem is and fix that then report back | |
04-05 18:57:35.090 856-856/com.akpalu.TapThat D/dalvikvm﹕ Not late-enabling CheckJNI (already on) | |
04-05 18:57:38.450 856-856/com.akpalu.TapThat D/gralloc_goldfish﹕ Emulator without GPU emulation detected. | |
04-05 18:59:54.330 856-856/com.akpalu.TapThat D/AndroidRuntime﹕ Shutting down VM | |
04-05 18:59:54.350 856-856/com.akpalu.TapThat W/dalvikvm﹕ threadid=1: thread exiting with uncaught exception (group=0xb2a1dba8) | |
04-05 18:59:54.590 856-856/com.akpalu.TapThat D/dalvikvm﹕ GC_FOR_ALLOC freed 89K, 5% free 3123K/3276K, paused 146ms, total 147ms | |
04-05 18:59:54.650 856-856/com.akpalu.TapThat E/AndroidRuntime﹕ FATAL EXCEPTION: main | |
Process: com.akpalu.TapThat, PID: 856 | |
java.lang.RuntimeException: Unable to start activity ComponentInfo{com.akpalu.TapThat/com.akpalu.TapThat.levels.LevelSelect}: android.view.InflateException: Binary XML file line #9: Error inflating |
This file contains 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
# JSON_DB | |
This is a NoSQL implementation of a local database for android. It uses the JSON APIs amongst other standard Android APIs. It can be used to setup a quick NoSQL database in android. It has the same advantages as any other NoSQL database. It is easy to setup and to get started. | |
Getting started Guide | |
Installation | |
To use the library in yoUr project , just import the bin/json_db.jar file into your class path. | |
however , you could also add the project as an external Library in eclipse by adding it under the libraries in your project configuration. | |
Usage |
This file contains 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
javac -g -verbose -sourcepath mode/org.eclipse.core.runtime-3.1.0.jar -extdirs mode/org.eclipse.core.runtime-3.1.0.jar -d classfiles/ -s sourcefiles/ src/processing/mode/android/*.java src/processing/mode/android/signing/*.java core/src/processing/core/*.java core/src/processing/data/*.java core/src/processing/event/*.java core/src/processing/opengl/*.java core/src/processing/opengl/tess/*.java | |
^ | |
src/processing/mode/android/AndroidPreprocessor.java:48: cannot find symbol | |
symbol : class Sketch | |
location: class processing.mode.android.AndroidPreprocessor | |
public AndroidPreprocessor(final Sketch sketch, | |
^ | |
src/processing/mode/android/AndroidPreprocessor.java:56: cannot find symbol | |
symbol : class SketchException |