Skip to content

Instantly share code, notes, and snippets.

View blackinitial's full-sized avatar
😊
Hi Folks

Ibrohim Hanafi blackinitial

😊
Hi Folks
View GitHub Profile
@blackinitial
blackinitial / rn-error-multidex.md
Last active June 8, 2020 13:50
Fix error react native run-android multidex issue

Error:

cd android && ./gradlew build --warning-mode=all
...
FAILURE: Build failed with an exception.
 
* What went wrong:
Execution failed for task ':app:transformClassesWithDexBuilderForDebug'.
> There was a failure while executing work items
   > A failure occurred while executing com.android.build.gradle.internal.transforms.DexArchiveBuilderTransform$DexConversionWorkAction
@blackinitial
blackinitial / match index and sum.js
Last active May 21, 2020 02:27
match array index selected with other array and sum
const selected = [0, 2]
const products = [
{
price: 20000,
...
},
...
]
totalPrice() {