INNER CODE UNIT · Java
onDestroy
prscX/react-native-photo-editor · android/src/main/java/com/ahmedadeltito/photoeditor/BaseActivity.java:292
protected void onDestroy() {
if (bitmap != null) {
bitmap.recycle();
bitmap = null;
}
System.gc();
super.onDestroy();
}
}