This repository has been archived by the owner on Dec 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 257
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[spmc] revert launcher by default; add makefile option
- Loading branch information
Showing
3 changed files
with
91 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- BEGIN_INCLUDE(manifest) --> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="com.semperpax.spmc" | ||
android:installLocation="auto" | ||
android:versionCode="13030300" | ||
android:versionName="13.3.3 (SPMC)" > | ||
|
||
<!-- This is the platform API where NativeActivity was introduced. --> | ||
<uses-sdk android:minSdkVersion="14" /> | ||
|
||
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> | ||
<uses-permission android:name="android.permission.INTERNET" /> | ||
<uses-permission android:name="android.permission.WAKE_LOCK" /> | ||
<uses-permission android:name="android.permission.GET_TASKS" /> | ||
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> | ||
|
||
<uses-feature android:name="android.hardware.touchscreen" android:required="false" /> | ||
|
||
<application android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:hasCode="true"> | ||
<activity | ||
android:name=".Splash" | ||
android:configChanges="orientation|keyboard|keyboardHidden|navigation|touchscreen" | ||
android:finishOnTaskLaunch="true" | ||
android:launchMode="singleInstance" | ||
android:screenOrientation="sensorLandscape" | ||
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" > | ||
<intent-filter> | ||
<action android:name="android.intent.action.MAIN" /> | ||
<category android:name="android.intent.category.LAUNCHER" /> | ||
<category android:name="tv.ouya.intent.category.APP"/> | ||
<category android:name="android.intent.category.HOME" /> | ||
<category android:name="android.intent.category.DEFAULT" /> | ||
<category android:name="android.intent.category.MONKEY" /> | ||
<category android:name="android.intent.category.LEANBACK_LAUNCHER" /> | ||
</intent-filter> | ||
<intent-filter> | ||
<action android:name="android.intent.action.VIEW" /> | ||
|
||
<category android:name="android.intent.category.DEFAULT" /> | ||
<category android:name="android.intent.category.BROWSABLE" /> | ||
|
||
<data android:mimeType="video/*" /> | ||
<data android:mimeType="audio/*" /> | ||
<data android:mimeType="image/*" /> | ||
|
||
<data android:scheme="file" /> | ||
<data android:scheme="content" /> | ||
<data android:scheme="http" /> | ||
<data android:scheme="https" /> | ||
<data android:scheme="ftp" /> | ||
<data android:scheme="ftps" /> | ||
<data android:scheme="rtp" /> | ||
<data android:scheme="rtsp" /> | ||
<data android:scheme="mms" /> | ||
<data android:scheme="dav" /> | ||
<data android:scheme="davs" /> | ||
<data android:scheme="ssh" /> | ||
<data android:scheme="sftp" /> | ||
<data android:scheme="smb" /> | ||
</intent-filter> | ||
</activity> | ||
|
||
<!-- | ||
Our activity is the built-in NativeActivity framework class. | ||
This will take care of integrating with our NDK code. | ||
--> | ||
<activity | ||
android:name=".Main" | ||
android:configChanges="orientation|keyboard|keyboardHidden|navigation|touchscreen" | ||
android:finishOnTaskLaunch="true" | ||
android:label="XBMC" | ||
android:launchMode="singleInstance" | ||
android:screenOrientation="sensorLandscape" | ||
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" > | ||
|
||
<!-- Tell NativeActivity the name of or .so --> | ||
<meta-data | ||
android:name="android.app.lib_name" | ||
android:value="xbmc" /> | ||
</activity> | ||
</application> | ||
|
||
</manifest><!-- END_INCLUDE(manifest) --> | ||
|