minesweeper/AndroidManifest.xml
author Jaroslav Tulach <jaroslav.tulach@apidesign.org>
Thu, 14 Aug 2014 07:50:10 +0200
branchAppStore
changeset 197 197472ca59d4
parent 155 b66f2620591f
parent 171 205a4b9e9152
child 193 0c7070a30735
child 237 83302b8a5cdf
permissions -rw-r--r--
Adressing comments from the first AppStore review: 1. don't mention android, 2. don't use word 'demo', replace it with 'showcase'.
     1 <?xml version="1.0" encoding="utf-8"?>
     2 <!--
     3 
     4     The MIT License (MIT)
     5 
     6     Copyright (C) 2013 Jaroslav Tulach <jaroslav.tulach@apidesign.org>
     7 
     8     Permission is hereby granted, free of charge, to any person obtaining a copy
     9     of this software and associated documentation files (the "Software"), to deal
    10     in the Software without restriction, including without limitation the rights
    11     to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
    12     copies of the Software, and to permit persons to whom the Software is
    13     furnished to do so, subject to the following conditions:
    14 
    15     The above copyright notice and this permission notice shall be included in
    16     all copies or substantial portions of the Software.
    17 
    18     THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    19     IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    20     FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
    21     AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
    22     LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
    23     OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
    24     THE SOFTWARE.
    25 
    26 -->
    27 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
    28     package="org.apidesign.demo.minesweeper"
    29     android:versionCode="1"
    30     android:versionName="1.0-SNAPSHOT" >
    31 
    32     <uses-sdk
    33         android:minSdkVersion="8"
    34         android:targetSdkVersion="16" />
    35 
    36     <application
    37         android:allowBackup="true"
    38         android:icon="@drawable/ic_launcher"
    39         android:label="Minesweeper"
    40         android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen">
    41         <activity android:name="org.apidesign.brwsr.DlvkBrwsr" 
    42                   android:configChanges="orientation|screenSize">
    43             <intent-filter>
    44                 <action android:name="android.intent.action.MAIN" />
    45                 <category android:name="android.intent.category.LAUNCHER" />
    46             </intent-filter>
    47         </activity>
    48         
    49         <!-- Configuration section. Defines: 
    50            - the HTML page to load on start
    51            - the class that contains the main initialization method
    52            - name of the initialization method in the given class
    53         -->
    54         <meta-data android:name="loadPage" android:value="file:///android_asset/pages/index.html" />
    55         <meta-data android:name="loadClass" android:value="org.apidesign.demo.minesweeper.MinesModel" />
    56         <meta-data android:name="invoke" android:value="main" />
    57     </application>
    58 
    59     <!-- allows use of internet and also 'call-home' feature. See 
    60       licensing section in Javadoc
    61     -->    
    62     <uses-permission android:name="android.permission.INTERNET" />
    63 </manifest>