Updates to new location and a bit of documentation
authorJaroslav Tulach <jtulach@netbeans.org>
Fri, 14 Mar 2014 10:55:18 +0100
changeset 141190061aedaef
parent 104 ede62082c40b
child 146 5547ab6ee3ce
Updates to new location and a bit of documentation
minesweeper/AndroidManifest.xml
     1.1 --- a/minesweeper/AndroidManifest.xml	Tue Mar 11 20:15:18 2014 +0100
     1.2 +++ b/minesweeper/AndroidManifest.xml	Fri Mar 14 10:55:18 2014 +0100
     1.3 @@ -33,23 +33,31 @@
     1.4          android:minSdkVersion="8"
     1.5          android:targetSdkVersion="16" />
     1.6  
     1.7 -    <uses-permission android:name="android.permission.INTERNET" />
     1.8      <application
     1.9          android:allowBackup="true"
    1.10          android:icon="@drawable/ic_launcher"
    1.11          android:label="@string/app_name"
    1.12          android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen">
    1.13 -        <activity android:name="org.apidesign.html.dlvkbrwsr.DlvkBrwsr" 
    1.14 +        <activity android:name="org.apidesign.brwsr.DlvkBrwsr" 
    1.15                    android:configChanges="orientation|screenSize">
    1.16              <intent-filter>
    1.17                  <action android:name="android.intent.action.MAIN" />
    1.18 -
    1.19                  <category android:name="android.intent.category.LAUNCHER" />
    1.20              </intent-filter>
    1.21          </activity>
    1.22 +        
    1.23 +        <!-- Configuration section. Defines: 
    1.24 +           - the HTML page to load on start
    1.25 +           - the class that contains the main initialization method
    1.26 +           - name of the initialization method in the given class
    1.27 +        -->
    1.28          <meta-data android:name="loadPage" android:value="file:///android_asset/pages/index.html" />
    1.29          <meta-data android:name="loadClass" android:value="org.apidesign.demo.minesweeper.Main" />
    1.30          <meta-data android:name="invoke" android:value="onPageLoad" />
    1.31      </application>
    1.32 -    
    1.33 +
    1.34 +    <!-- allows use of internet and also 'call-home' feature. See 
    1.35 +      licensing section in Javadoc
    1.36 +    -->    
    1.37 +    <uses-permission android:name="android.permission.INTERNET" />
    1.38  </manifest>
    1.39 \ No newline at end of file