Skip to content

Instantly share code, notes, and snippets.

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

Sokari Gillis-Harry cybersokari

🏠
Working from home
View GitHub Profile
@cybersokari
cybersokari / AndroidManifest.xml
Created January 3, 2017 15:28 — forked from vikrum/AndroidManifest.xml
Firebase+Android sample app with background Service + local notifications.
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.bgfirebaseapp"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="16"
android:targetSdkVersion="17" />
@cybersokari
cybersokari / activity_main.xml
Last active September 7, 2015 16:14 — forked from anonymous/activity_main.xml
RelativeLayout XML for Udacity quiz question
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="16dp">
<TextView
android:text="I’m in this corner"
android:layout_height="wrap_content"
android:layout_width="wrap_content"