I've got a trivial Android project running under Android studio. After 
going through tutorials I set up my own project which works.

The next step was to try to hook up the ioio board. I tried HelloIOIO, 
IOIOSimpleApp and HelloIOIOService, none of which I could get to work. It 
complained about not finding android-7, which after messing about, changing 
compileSdkVersion to 23 and a couple of other things which I can't remember.

In the end the application stopped because it couldn't connect. I went back 
to my own application which was still working fine. So I decided to make my 
own new application.

import android.os.Bundle;
import ioio.*;

public class MainActivity extends IOIOActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
    }
}

As soon as I changed the extends Activity to extends IOIOActivity it had no 
idea what IOIOActivity was.
Do I have to somehow point to IOIOLibCore-5.07.jar, IOIOLibAndroid-5.07.aar or 
what?
Where and how do I tell it to pick up what is missing?

Thanks,
Ilan


-- 
You received this message because you are subscribed to the Google Groups 
"ioio-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/ioio-users.
For more options, visit https://groups.google.com/d/optout.

Reply via email to