File "AndroidManifest.xml"

Path: /WAF - Wireless Android Framework/WAF_0.1_Android/AndroidManifest.xml
File size: 9.03 KB
MIME-type:
Charset: utf-8

<?xml version="1.0" encoding="utf-8"?>

<!--
*********************************************************************************
BASIC! is an implementation of the Basic programming language for
Android devices.

Copyright (C) 2010 - 2014 Paul Laughton

This file is part of BASIC! for Android

    BASIC! is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    BASIC! is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with BASIC!.  If not, see <http://www.gnu.org/licenses/>.

    You may contact the author or current maintainers at http://rfobasic.freeforums.org

**********************************************************************************
-->

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="rfo.mougino.waf"
    android:versionCode="100"
    android:versionName="0.1" >

     <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
     <uses-permission android:name="android.permission.INTERNET" android:required="false"></uses-permission>
     <uses-permission android:name="android.permission.VIBRATE" android:required="false"></uses-permission>
     <uses-permission android:name="android.permission.WAKE_LOCK" android:required="false"></uses-permission>

    <uses-feature android:name="android.hardware.telephony" android:required="false" />
    <uses-feature android:name="android.hardware.bluetooth" android:required="false" />
    <uses-feature android:name="android.hardware.location" android:required="false" />
    <uses-feature android:name="android.hardware.sensor.accelerometer" android:required="false" />
    <uses-feature android:name="android.hardware.camera" android:required="false" />
    <uses-feature android:name="android.hardware.microphone" android:required="false" />
    <uses-feature android:name="android.hardware.location.network" android:required="false" />
    <uses-feature android:name="android.hardware.location.gps" android:required="false" />
    <uses-feature android:name="android.hardware.camera.autofocus" android:required="false" />
    <uses-feature android:name="android.hardware.touchscreen" android:required="false" />

    <uses-sdk android:minSdkVersion="7" android:targetSdkVersion="18" />

    <supports-screens android:xlargeScreens="true" />

    <application
        android:hardwareAccelerated="false"
        android:allowBackup="true"
        android:icon="@drawable/icon"
        android:label="@string/app_name" >
        <receiver
            android:name=".BootUpReceiver"
            android:enabled="false" >
            <intent-filter>
                <action android:name="android.intent.action.BOOT_COMPLETED" />

                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </receiver>

        <activity
            android:id="@+id/basic_screen"
            android:name="Basic"
            android:configChanges="keyboardHidden|orientation|screenSize"
            android:label="@string/app_name" >

            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
                <category android:name="android.intent.category.MULTIWINDOW_LAUNCHER" />
            </intent-filter>
        </activity>

        <meta-data
            android:name="com.google.android.gms.version"
            android:value="@integer/google_play_services_version"
        />
        <activity
            android:name="com.google.android.gms.ads.AdActivity"
            android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize" 
        />

        <activity
            android:id="@+id/editor_screen"
            android:name=".Editor"
            android:configChanges="keyboardHidden|orientation|screenSize"
            android:label="@string/editor_name" >
        </activity>

        <activity
            android:id="@+id/settings_screen"
            android:name="Settings"
            android:label="@string/settings_name" >
        </activity>

        <activity
            android:id="@+id/load_screen"
            android:name="LoadFile"
            android:configChanges="keyboardHidden|orientation|screenSize"
            android:label="@string/load_name" >
        </activity>

        <activity
            android:id="@+id/delete_screen"
            android:name="Delete"
            android:configChanges="keyboardHidden|orientation|screenSize"
            android:label="@string/delete_name" >
        </activity>

        <activity
            android:id="@+id/run_screen"
            android:name="Run"
            android:configChanges="keyboardHidden|orientation|screenSize"
            android:label="@string/run_name" >
        </activity>

        <activity
            android:id="@+id/search_screen"
            android:name="Search"
            android:configChanges="keyboardHidden|orientation|screenSize"
            android:label="@string/search_name"
            android:windowSoftInputMode="adjustResize" >
        </activity>

        <activity
            android:id="@+id/format_screen"
            android:name="Format"
            android:configChanges="keyboardHidden|orientation|screenSize"
            android:label="@string/format_name" >
        </activity>

        <activity
            android:id="@+id/help_screen"
            android:name="Help"
            android:label="@string/help_name"
            android:windowSoftInputMode="stateAlwaysVisible" >
        </activity>

        <activity
            android:id="@+id/gr_screen"
            android:name="GR"
            android:configChanges="keyboardHidden|orientation|screenSize"
            android:label="@string/gr_name"
            android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
        </activity>

        <activity
            android:name="AutoRun"
            android:configChanges="keyboardHidden|orientation|screenSize"
            android:label="@string/auto_run_name" >
        </activity>

        <activity
            android:id="@+id/select_screen"
            android:name="Select"
            android:configChanges="keyboardHidden|orientation|screenSize"
            android:label="@string/select_name" >
        </activity>

        <activity
            android:id="@+id/text_input_screen"
            android:name="TextInput"
            android:configChanges="keyboardHidden|orientation|screenSize"
            android:label="@string/textinput_name" >
        </activity>

        <activity
            android:id="@+id/text_get_screen"
            android:name="TGet"
            android:configChanges="keyboardHidden|orientation|screenSize"
            android:label="@string/textinput_name" >
        </activity>

        <activity
            android:id="@+id/web_view_screen"
            android:name="Web"
            android:configChanges="keyboardHidden|orientation|screenSize"
            android:label="@string/web_view_name"
            android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
        </activity>

        <activity
            android:id="@+id/camera_screen"
            android:name="CameraView"
            android:configChanges="keyboardHidden|orientation|screenSize"
            android:label="Camera"
            android:theme="@android:style/Theme.Translucent.NoTitleBar" >
        </activity>

        <activity
            android:id="@+id/notify_screen"
            android:name="HandleNotify"
            android:configChanges="keyboardHidden|orientation|screenSize"
            android:label="Notify"
            android:theme="@android:style/Theme.Translucent.NoTitleBar" >
        </activity>

        <activity
            android:id="@+id/device_list_screen"
            android:name="DeviceListActivity"
            android:configChanges="keyboardHidden|orientation|screenSize"
            android:label="@string/select_device"
            android:theme="@android:style/Theme.Dialog" >
        </activity>

        <activity
            android:name="Null"
            android:label="@string/select_name" >
        </activity>

        <uses-library android:name="com.sec.android.app.multiwindow" android:required="false" />
        <meta-data android:name="com.sec.android.support.multiwindow" android:value="true" />
        <meta-data android:name="com.sec.android.multiwindow.DEFAULT_SIZE_W" android:value="632.0dip" />
        <meta-data android:name="com.sec.android.multiwindow.DEFAULT_SIZE_H" android:value="598.0dip" />
        <meta-data android:name="com.sec.android.multiwindow.MINIMUM_SIZE_W" android:value="632.0dip" />
        <meta-data android:name="com.sec.android.multiwindow.MINIMUM_SIZE_H" android:value="598.0dip" />
    </application>

</manifest>