Skip to content

Instantly share code, notes, and snippets.

View allenbangai's full-sized avatar
🏠
Working from home

Kamadje Allen allenbangai

🏠
Working from home
View GitHub Profile
@allenbangai
allenbangai / Specified AAPT2 executable does not exist:
Created October 15, 2019 00:57
Execution failed for task ':app:mergeDebugResources'.
Executing tasks: [:app:assembleDebug] in project C:\Users\DELL\AllelProgram\Books
> Task :app:preBuild UP-TO-DATE
> Task :app:preDebugBuild UP-TO-DATE
> Task :app:compileDebugAidl NO-SOURCE
> Task :app:checkDebugManifest UP-TO-DATE
> Task :app:compileDebugRenderscript NO-SOURCE
> Task :app:generateDebugBuildConfig UP-TO-DATE
> Task :app:javaPreCompileDebug UP-TO-DATE
> Task :app:mainApkListPersistenceDebug UP-TO-DATE
@allenbangai
allenbangai / java.lang.OutOfMemoryError.txt
Last active April 16, 2020 06:14
java.lang.OutOfMemoryError: Failed to allocate a 238555212 byte allocation with 167681136 free bytes and 162MB until OOM
allen
@allenbangai
allenbangai / sum_of_integers.java
Created August 6, 2020 15:27
Write a function that takes as parameters integers and returns the sum of all integers passed regardless of the number of pararameters
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package chapter8exercises;
import java.util.ArrayList;
import java.util.List;
import java.util.Objects;