2019-06-29 02:35:14 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2019-09-14 14:41:00 +02:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2019-09-24 22:54:27 +02:00
|
|
|
package="emu.skyline">
|
2019-07-03 01:19:45 +02:00
|
|
|
|
2019-09-14 14:41:00 +02:00
|
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
|
|
|
<uses-permission android:name="android.permission.READ_INTERNAL_STORAGE" />
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
2019-06-29 02:35:14 +02:00
|
|
|
|
|
|
|
<application
|
2019-07-24 22:19:43 +02:00
|
|
|
android:allowBackup="true"
|
2019-09-24 22:54:27 +02:00
|
|
|
android:icon="@drawable/logo_skyline"
|
2019-07-24 22:19:43 +02:00
|
|
|
android:label="@string/app_name"
|
|
|
|
android:supportsRtl="true"
|
|
|
|
android:theme="@style/AppTheme"
|
2019-09-24 22:54:27 +02:00
|
|
|
tools:ignore="GoogleAppIndexingWarning"
|
|
|
|
android:fullBackupContent="@xml/backup_descriptor">
|
2019-09-14 14:41:00 +02:00
|
|
|
<activity
|
2019-09-24 22:54:27 +02:00
|
|
|
android:name="emu.skyline.LogActivity"
|
2019-09-14 14:41:00 +02:00
|
|
|
android:label="@string/log"
|
2019-09-24 22:54:27 +02:00
|
|
|
android:parentActivityName="emu.skyline.MainActivity">
|
2019-07-24 22:19:43 +02:00
|
|
|
<meta-data
|
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
2019-09-24 22:54:27 +02:00
|
|
|
android:value="emu.skyline.MainActivity" />
|
2019-07-24 22:19:43 +02:00
|
|
|
</activity>
|
2019-07-03 01:19:45 +02:00
|
|
|
<activity
|
2019-09-24 22:54:27 +02:00
|
|
|
android:name="emu.skyline.SettingsActivity"
|
2019-07-24 22:19:43 +02:00
|
|
|
android:label="@string/settings"
|
2019-09-24 22:54:27 +02:00
|
|
|
android:parentActivityName="emu.skyline.MainActivity">
|
2019-07-03 01:19:45 +02:00
|
|
|
<meta-data
|
2019-07-24 22:19:43 +02:00
|
|
|
android:name="android.support.PARENT_ACTIVITY"
|
2019-09-24 22:54:27 +02:00
|
|
|
android:value="emu.skyline.MainActivity" />
|
2019-07-03 01:19:45 +02:00
|
|
|
</activity>
|
2019-09-24 22:54:27 +02:00
|
|
|
<activity android:name="emu.skyline.MainActivity">
|
2019-06-29 02:35:14 +02:00
|
|
|
<intent-filter>
|
2019-09-14 14:41:00 +02:00
|
|
|
<action android:name="android.intent.action.MAIN" />
|
2019-06-29 02:35:14 +02:00
|
|
|
|
2019-09-14 14:41:00 +02:00
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
2019-06-29 02:35:14 +02:00
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
</application>
|
|
|
|
|
2019-09-14 14:41:00 +02:00
|
|
|
</manifest>
|