1
0
mirror of https://github.com/barry-smithjr/bobrovsky-button.git synced 2025-12-15 17:13:07 -06:00

Initial Commit

This commit is contained in:
Barry Smith
2016-04-13 13:46:48 -05:00
commit 15afc9f600
45 changed files with 725 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.smackedsilly.bobrovskybutton" >
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>