Skip to content

Instantly share code, notes, and snippets.

View zjunior06's full-sized avatar
💭
I may be slow to respond.

Zilberto Junior zjunior06

💭
I may be slow to respond.
View GitHub Profile
runtime_resource_overlay {
name: "GoogleConfigOverlay",
certificate: "platform",
sdk_version: "current",
product_specific: true
}
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.google.android.overlay.googleconfig">
<application android:label="GoogleConfigOverlay" android:hasCode="false"/>
<overlay android:priority="0" android:targetPackage="android" android:isStatic="true"/>
</manifest>
#!/usr/bin/env bash
# This script install Jenkins in your Ubuntu System
#
# This script must be run as root:
# $ sudo ./jenkins_install.sh
if [[ $EUID -ne 0 ]]; then
echo "This script must be run as root" 1>&2
exit 1
fi