Recent content by ansh462

  1. A

    Permission issue on sysfs access from android application ( .java source code )

    Android application in java having permission issues when accessing sysfs entry. try{ FileOutputStream fos = new FileOutputStream("/sys/class/shift_reg/shift_reg/value"); byte mybyte = 1; fos.write(mybyte); fos.close(); } catch ( Exception e) { Log.d(TAG, "Failed in writing to Shift...