Samsung / Castanets

Edge distributed web engine. Part of web engine processes are offloaded to a powerful devices and only graphical results are processed in local devices. This way, we overcome both CPU limitations and memory limitations of the low-end local devices
BSD 3-Clause "New" or "Revised" License
46 stars 43 forks source link

[Meerkat] Implement writing capability #366

Closed younghajung closed 3 years ago

younghajung commented 3 years ago

This patch implements writing capability on Meekat. The application can write the capability as follows.

ContentValues value = new ContentValues(); value.put("capability", "application capability"); try { getContentResolver().insert( Uri.parse("content://com.samsung.android.meerkat.CapabilityProvider"), value); } catch (Exception e) { }

Signed-off-by: yh106.jung yh106.jung@samsung.com