Pete0009

About

Username
Pete0009
Joined
Visits
30
Last Active
Roles
Member

Comments

  • I figured out what was wrong! apparently, the ConnectAsync() uses some component from material design library, because right after I implemented material design on my project, the problem disappeared!
  • That is my Android app code and the error I get when I try to call onClickTry() Any updates on this? Thank you
  • error: E/AndroidRuntime: FATAL EXCEPTION: main Process: com.example.pedro.metaweartest3, PID: 20419 java.lang.IllegalStateException: Could not execute method for android:onClick at android.support.v7.app.AppCompatViewInflater$DeclaredOnClickLi…
  • public class MainActivity extends AppCompatActivity implements ServiceConnection { private MetaWearBoard board; private BtleService.LocalBinder localBinder; private final String MAC_ADDRESS = "CB:42:F6:6E:2C:7A"; private BluetoothManager btManage…
  • @Eric said: Quoting myself @Eric said: Wrap code blocks with ``` I'm sorry but I don't understand, what do you mean to use ```?
  • This is how I modified my code so it makes a Bluetooth scan to retrieve the board instead of passing it the mac address to create the object. The second part is the exception I get in the debugger. Why is this happening? Thank you
  • public class MainActivity extends AppCompatActivity implements ServiceConnection { private MetaWearBoard board; private BtleService.LocalBinder localBinder; private final String MAC_ADDRESS = "CB:42:F6:6E:2C:7A"; private BluetoothManager b…
  • This is my AndroidManifest.xml : <?xml version="1.0" encoding="utf-8"?> Also, I have been using the debugger to check my variabl…