RoboErik | bfa153b | 2014-02-13 14:22:42 -0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 3 | package="com.android.onemedia" |
| 4 | android:versionCode="1" |
| 5 | android:versionName="1.0" > |
| 6 | |
| 7 | <uses-sdk android:minSdkVersion="19"/> |
| 8 | <uses-permission android:name="android.permission.INTERNET" /> |
| 9 | <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /> |
| 10 | |
| 11 | <application |
| 12 | android:allowBackup="true" |
| 13 | android:icon="@drawable/ic_launcher" |
| 14 | android:label="@string/app_name" |
| 15 | android:theme="@style/AppTheme" > |
| 16 | <activity |
| 17 | android:name="com.android.onemedia.OnePlayerActivity" |
| 18 | android:label="@string/app_name" > |
| 19 | <intent-filter> |
| 20 | <action android:name="android.intent.action.MAIN" /> |
| 21 | <category android:name="android.intent.category.LAUNCHER" /> |
| 22 | </intent-filter> |
| 23 | </activity> |
| 24 | <service |
| 25 | android:name="com.android.onemedia.OnePlayerService" |
Daniel Sandler | 45f7ee8 | 2014-06-05 02:54:13 -0400 | [diff] [blame] | 26 | android:exported="true" |
RoboErik | bfa153b | 2014-02-13 14:22:42 -0800 | [diff] [blame] | 27 | android:process="com.android.onemedia.service" /> |
RoboErik | bfa153b | 2014-02-13 14:22:42 -0800 | [diff] [blame] | 28 | </application> |
| 29 | |
| 30 | </manifest> |