minesweeper/AndroidManifest.xml
author Jaroslav Tulach <jtulach@netbeans.org>
Sun, 16 Mar 2014 08:30:22 +0100
changeset 107 f8f222243d3c
parent 82 28985adb4f62
child 109 0052fd533761
permissions -rw-r--r--
Updating to real release of dlvkbrwsr
     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     <uses-permission android:name="android.permission.INTERNET" />
    37     <application
    38         android:allowBackup="true"
    39         android:icon="@drawable/ic_launcher"
    40         android:label="@string/app_name"
    41         android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen">
    42         <activity android:name="org.apidesign.html.brwsr.DlvkBrwsr" 
    43                   android:configChanges="orientation|screenSize">
    44             <intent-filter>
    45                 <action android:name="android.intent.action.MAIN" />
    46 
    47                 <category android:name="android.intent.category.LAUNCHER" />
    48             </intent-filter>
    49         </activity>
    50         <meta-data android:name="loadPage" android:value="file:///android_asset/pages/index.html" />
    51         <meta-data android:name="loadClass" android:value="org.apidesign.demo.minesweeper.Main" />
    52         <meta-data android:name="invoke" android:value="onPageLoad" />
    53     </application>
    54     
    55 </manifest>