The Shared Memory library allows for the creation of memory regions that may be simultaneously accessed by multiple Android processes or applications. Developed to overcome the Android 1MB IPC limitation, this Shared Memory library allows you to exchange larger amounts of data between your Android applications.
Include the below dependencies in your build.gradle
project.
buildscript {
repositories {
google()
maven { url "https://newtronlabs.jfrog.io/artifactory/libs-release-local" }
}
dependencies {
classpath 'com.android.tools.build:gradle:7.0.4'
classpath 'com.newtronlabs.android:plugin:5.0.2'
}
}
allprojects {
repositories {
google()
maven { url "https://newtronlabs.jfrog.io/artifactory/libs-release-local" }
}
}
subprojects {
apply plugin: 'com.newtronlabs.android'
}
In the build.gradle
for your app.
dependencies {
compileOnly 'com.newtronlabs.sharedmemory:sharedmemory:5.0.0-alpha01'
}
From the application that wishes to shared its memory, allocate a shated memory region with a given name.
// Allocate 2MB
int sizeInBytes = 2*(1024*1024);
String regionName = "Test-Region";
ISharedMemory sharedMemory = SharedMemoryProducer.getInstance().allocate(regionName, sizeInBytes);
Write data to memory:
byte[] strBytes = "Hello World!".getBytes();
sharedMemory.writeBytes(strBytes, 0, 0, strBytes.length);
Once an application has shared a memory region it can be accessed by other processes or application which are aware of it.
In order for an application to access a region of memory shaered by an external application perform the following:
// This is the application id of the application or process which shared the region.
String producerAppId = "com.newtronlabs.smproducerdemo";
// Name under wich the remote region was created.
String regionName = "Test-Region"
// Note: The remote application must have allocated a memory region with the same
// name or this call will fail and return null.
IRemoteSharedMemory remoteMemory
= RemoteMemoryAdapter.getDefaultAdapter().getSharedMemory(context, producerAppId, regionName);
// Allocate memory to read shared content.
byte[] dataBytes = new byte[remoteMemory.getSize()];
String dataStr = new String(dataBytes);
Log.d("Newtron", "Memory Read:"+dataStr);
A set of more complex exmaples can be found in this repo's samples folders: SmProducer and SmConsumer.
Please support the continued development of these libraries. We host and develop these libraries for free. Any support is deeply appriciated. Thank you!
BTC Address: 39JmAfnNhaEPKz5wjQjQQj4jcv9BM11NQb
https://gist.github.com/NewtronLabs/216f45db2339e0bc638e7c14a6af9cc8