Question Open source license in Android BSP

VINOTHKUMAR_1

Commendable
Jun 13, 2017
4
0
1,510
I am working on IMX6Q with Android 7. I want to add the Open source license in Android BSP . I done this implementation by placing my license file in the system/etc path.
The file format as HTML.
I checked also, the file present as well as my requirement. But, what is the main problem is when I click this Open source License UI i unable to view it. I got following error when click UI "Failed to find viewer" in terminal. And in UI "There is a problem loading the licenses".

I want to know, is there any default configuration to disable/enable web view ?


https://android.googlesource.com/pl...android/settings/SettingsLicenseActivity.java

try {
startActivity(intent);
finish();
} catch (ActivityNotFoundException e) {
Log.e(TAG, "Failed to find viewer", e);
showErrorAndFinish();
}
}
private void showErrorAndFinish() {
Toast.makeText(this, R.string.settings_license_activity_unavailable, Toast.LENGTH_LONG)
.show();
finish();
}


Thanks & Regards,
VinothS