Loading...
Logo
Processing Forum
zotzot's Profile
3 Posts
6 Responses
0 Followers

Activity Trend

Last 30 days
Show:
Private Message
    Hi to all.
    i've created a small app to explore twitter friendship.
    it works well on desktop.

    Loading it on a samsung Tab 10.1, it returns this error:
    1. android.os.NetworkOnMainThreadException
    i've read some articles about it, understanding (in simple words) that newer version of android (3.0 +) won't allow networking in the main thread, to avoid to block the application during the loading.
    it makes sense to me. but as i'm just sketching out some ideas and i won't bother to create a multithread superfine application, i'm wondering if there's a way to disable this feature.

    i've found on stackoverflow this solution (for java applications). it states to add these lines:
    1. StrictMode.ThreadPolicy policy = new StrictMode.ThreadPolicy.Builder().permitAll().build();
    2. StrictMode.setThreadPolicy(policy); 
    as i don't really know how this sort of things work i tried to put it in the setup() function.
    it loads without errors, but it don't solve the problem.
    maybe isn't the right solution for processing.

    any suggestion on how to solve the problem?
    Hi to all, i know there are others post on this but i tried everything suggested with no results.

    i'm working on mac os 10.6.8

    following the wiki guide
    i've installed 
    - android sdk tools 20.0.1
    - android sdk platform-tools 14
    - sdk paltform 10
    - google APIs 10

    and downloaded processing 2.0a8.

    following this thread, from AVD manager i've started the emulator.
    emulator window name was "5554:processing-0207".
    in preference .txt i corrected the line with the right port name:
    android.emulator.port=5554

    saved and restarted processing.

    following this other thread,
    i started the emulator from AVD manager.
    whe was completely loaded, i've ran the sketch.

    again, it states:
    "Lost connection with device while launching. Try again".

    this is the console log:
    1. Android SDK Tools Revision 20.0.1
    2. Installed at /Applications/android-sdk-macosx
    3. Project Type: Application
    4. Project Target:   Android 2.3.3
    5. API level:        10
    6. Library dependencies:
    7. No Libraries

    8. ------------------
    9. API<=15: Adding annotations.jar to the classpath.
    10. Merging AndroidManifest files into one.
    11. Manifest merger disabled. Using project manifest only.
    12. No AIDL files to compile.
    13. No RenderScript files to compile.
    14. Generating resource IDs...
    15. Generating BuildConfig class.
    16. Converting compiled files and external libraries into /var/folders/oC/oCNrKWRUGl8nf6zQlkSZQk+++TI/-Tmp-/android8401496608843444431sketch/bin/classes.dex...
    17. Creating full resource package...
    18. Current build type is different than previous build: forced apkbuilder run.
    19. Creating android_test01-debug-unaligned.apk and signing it with a debug key...
    20. Running zip align on final apk...
    21. Shutting down any existing adb server...

    any other suggestion?
    i'd like to extract data from an html document using xPath.
    I've seen there are different libraries for java to do this, but i did'n found any example in processing.
    Can somebody suggest me the easist way to do it?
    thanks