Error -> Failed to allocate a 24 byte allocation with 918936 free bytes and 897KB until OOM, target footprint 536870912, growth limit 536870912; giving up on allocation because <1% of heap free after GC
im also add this line…
ManiFest File Code :
<application
android:name=".MainApplication"
android:allowBackup="true"
android:appComponentFactory="androidx.core.app.CoreComponentFactory"
android:dataExtractionRules="@xml/data_extraction_rules"
android:fullBackupContent="@xml/backup_rules"
android:hardwareAccelerated="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:largeHeap="true"
android:networkSecurityConfig="@xml/network_security_config"
android:requestLegacyExternalStorage="true"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Theme.AllInVideodownloderApplication"
android:usesCleartextTraffic="true"
tools:targetApi="31"></application>
build.gradle File Lines :
dexOptions {
incremental true
javaMaxHeapSize "4g"
preDexLibraries true
dexInProcess = true
}
defaultConfig {
multiDexEnabled true
}
Can anyone help with this issue?
New contributor
Sunil Jsp is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.