Android Programming Guide
SETTING ADC
After the file is copied, there are two ways to send the deployment intent to set the ADC.
Using ADB to send broadcast
adb shell am broadcast -a "sw.programme.adcclient.SetSettingAll"
adb shell am broadcast -a "sw.programme.adcclient.SystemSettings"
OR
Source code
Intent intent = new Intent("sw.programme.adcclient.SetSettingAll");
sendBroadcast(intent);
Intent intent = new Intent("sw.programme.adcclient.SystemSettings");
sendBroadcast(intent);
102
Need help?
Do you have a question about the RK25 and is the answer not in the manual?
Questions and answers