Skip to content

Instantly share code, notes, and snippets.

View ahmedbr's full-sized avatar
💻
Coding the FUTURE!

Ahmed Breem ahmedbr

💻
Coding the FUTURE!
View GitHub Profile
@ahmedbr
ahmedbr / AndroidManifest.xml
Created March 4, 2019 12:57 — forked from cofearabi/AndroidManifest.xml
Android sample appli which read Excel file and display the data of the sheet.
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.andexcelread0"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="21" />
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- google's material design colours from
http://www.google.com/design/spec/style/color.html#color-ui-color-palette -->
<!--reds-->
<color name="md_red_50">#FFEBEE</color>
<color name="md_red_100">#FFCDD2</color>
<color name="md_red_200">#EF9A9A</color>