36 lines
No EOL
1.3 KiB
XML
36 lines
No EOL
1.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="net.thauvin.erik.android.tesremoteprogrammer">
|
|
|
|
<uses-permission android:name="android.permission.CALL_PHONE" />
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
|
|
<application
|
|
android:allowBackup="true"
|
|
android:fullBackupContent="@xml/mybackupscheme"
|
|
android:icon="@mipmap/ic_launcher"
|
|
android:label="@string/app_name"
|
|
android:supportsRtl="true"
|
|
android:theme="@style/AppTheme">
|
|
<activity
|
|
android:name=".SplashActivity"
|
|
android:label="@string/app_name"
|
|
android:theme="@style/SplashTheme">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
<activity
|
|
android:name=".MainActivity"
|
|
android:screenOrientation="portrait" />
|
|
<activity
|
|
android:name=".ProgrammingActivity"
|
|
android:screenOrientation="portrait" />
|
|
<activity
|
|
android:name=".StepsActivity"
|
|
android:screenOrientation="landscape" />
|
|
</application>
|
|
|
|
</manifest> |