Apologies for spam; we've changed our policy by requiring approval for accounts, and deleted all existing spam and user - thanks for your help flagging content. We continue to test our forums and Vanilla software, aiming for release early in 2013. If you need to give us feedback outside the forum, contact us via http://createdigitalmusic.com/contact/ or on Facebook
Android PdTest works but a new project with identical code don't
  • I've followed the wiki instructions to have pd in eclipse and i run pdTest and it works.

    What i do next is create a Android project, copy there all resources and all the code of the PdTest activity, i set PdCore as library and there are no errors on the project, once i run it there is no sine sound nor PD_RUNS: messages.

    this is the project : http://minus.com/mbi6j2AWuc/1f

    what can be happening?
  • my best advice would be to add lots of Log.d(TAG,"..... statements, to make sure all the correct functions are getting called.  Just browsing through the code, nothing looks odd.

    I'll try running it in a bit.
  • The code is exactly the same as PdTest i don't know what can be wrong. Please test it in your workspace and see if it works there 

    Thank you 

    L.
  • I really need help !

    I'v tried the same process in windows and i get the same problem: project has the same code as TestPd, has no errors but doesn't have sound output nor PD_RUNS: messages when it runs. While original TestPd does work fine.

    please, can somebody execute the project in their workspace?

    i'm quite desesperated 
  • You need to copy the Android manifest, too.
  • It works now !!!

    Thank you very much Peter
  • I told the new project manifest that there was a pd service in the project, as it is in the example project

    AndroidManifest.xml:

    <?xml version="1.0" encoding="utf-8"?> http://schemas.android.com/apk/res/android" package="org.puredata.android.test" android:versionCode="1" android:versionName="1.0">

    THIS ------->

        <service android:name="org.puredata.android.service.PdService" />
        <activity android:label="Pure Data Preferences"
            android:name="org.puredata.android.service.PdPreferences"
            android:screenOrientation="portrait" />
    

    END <------------

    Hope andymc2010 will find it usefull and tell us that it's working

  • Sorry it so long to test it.

    But I can confirm that this works. I now a working app from a completely new project.

    Thanks a lot!! :)