Move first-execution copying of shaders / binaries to an IntentService.

This commit is contained in:
Eder Bastos
2014-07-06 20:26:52 -04:00
parent 0b74ad1b20
commit 94b1eeaf6f
4 changed files with 130 additions and 122 deletions

View File

@ -21,14 +21,13 @@
android:label="@string/app_name"
android:allowBackup="true">
<activity
android:name="org.dolphinemu.dolphinemu.DolphinEmulator"
android:configChanges="locale|keyboard|keyboardHidden|navigation|fontScale|uiMode"
android:name="org.dolphinemu.dolphinemu.gamelist.GameListActivity"
android:label="@string/app_name"
android:screenOrientation="landscape"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
android:theme="@android:style/Theme.Holo.Light" >
<!-- This intentfilter marks this Activity as the one that gets launched from Home screen.-->
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
@ -37,10 +36,6 @@
android:name="org.dolphinemu.dolphinemu.about.AboutActivity"
android:theme="@android:style/Theme.Holo.Light" />
<activity
android:name="org.dolphinemu.dolphinemu.gamelist.GameListActivity"
android:theme="@android:style/Theme.Holo.Light" />
<activity
android:name="org.dolphinemu.dolphinemu.emulation.EmulationActivity"
android:screenOrientation="landscape" />
@ -55,6 +50,8 @@
android:label="@string/settings"
android:theme="@android:style/Theme.Holo.Light" />
<service android:name=".AssetCopyService"/>
</application>
</manifest>