/[projects]/android/admob/samples/LunarLander/AndroidManifest.xml
ViewVC logotype

Annotation of /android/admob/samples/LunarLander/AndroidManifest.xml

Parent Directory Parent Directory | Revision Log Revision Log


Revision 337 - (hide annotations) (download) (as text)
Wed Sep 23 12:54:05 2009 UTC (14 years, 9 months ago) by torben
File MIME type: text/xml
File size: 1955 byte(s)
import admob library
1 torben 337 <?xml version="1.0" encoding="utf-8"?>
2     <!--
3     * Copyright (C) 2007 Google Inc.
4     *
5     * Licensed under the Apache License, Version 2.0 (the "License");
6     * you may not use this file except in compliance with the License.
7     * You may obtain a copy of the License at
8     *
9     * http://www.apache.org/licenses/LICENSE-2.0
10     *
11     * Unless required by applicable law or agreed to in writing, software
12     * distributed under the License is distributed on an "AS IS" BASIS,
13     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14     * See the License for the specific language governing permissions and
15     * limitations under the License.
16     -->
17    
18     <!-- Declare the contents of this Android application. The namespace
19     attribute brings in the Android platform namespace, and the package
20     supplies a unique name for the application. When writing your
21     own application, the package name must be changed from "com.example.*"
22     to come from a domain that you own or have control over. -->
23     <manifest xmlns:android="http://schemas.android.com/apk/res/android"
24     package="com.example.admob.lunarlander"
25     android:versionName="20090728-ANDROID-3312276cc1406347"
26     android:versionCode="20090728">
27    
28     <!-- Requires Android 1.1 or above -->
29     <uses-sdk android:minSdkVersion="3" />
30    
31     <application android:icon="@drawable/app_lunar_lander" android:label="@string/app_name">
32     <activity android:name="LunarLander">
33     <intent-filter>
34     <action android:name="android.intent.action.MAIN" />
35     <category android:name="android.intent.category.LAUNCHER" />
36     </intent-filter>
37     </activity>
38    
39     <!-- The application's publisher ID assigned by AdMob -->
40     <meta-data android:value="a1496ced2842262" android:name="ADMOB_PUBLISHER_ID" />
41    
42     </application>
43    
44     <!-- AdMob SDK permissions -->
45     <uses-permission android:name="android.permission.INTERNET" />
46    
47     </manifest>

  ViewVC Help
Powered by ViewVC 1.1.20