-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
35 lines (34 loc) · 1.97 KB
/
Copy pathAndroidManifest.xml
File metadata and controls
35 lines (34 loc) · 1.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?xml version="1.0" encoding="utf-8"?>
<!--
~ Copyright (c) 2012. Blue Tang Studio LLC. All rights reserved.
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.locadz.android.example"
android:versionCode="1"
android:versionName="1.0">
<application android:icon="@drawable/icon" android:label="@string/app_name" android:debuggable="true">
<activity android:name=".Invoker"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<!-- Activity-specific Locadz ADUNIT ID -->
<!-- If both Activity-specific and App-wide Locadz ADUNIT IDs are specified, the
Activity-specific key will override the App-wide key. -->
<!-- If Activity-specific key is omitted, the App-wide key will be used. -->
<!-- <meta-data android:value="46a9e26bb1f5499ab7b00c9807ae034b" android:name="ADUNIT" /> -->
</activity>
<!-- Application-wide ADUNIT ID-->
<!-- If both Activity-specific and App-wide ADUNIT IDs are specified, the
Activity-specific ADUNIT ID will override the App-wide ADUNIT ID. -->
<!-- If Activity-specific ADUNIT ID is omitted, the App-wide ADUNIT ID will be used. -->
<meta-data android:value="643eb700781e4f47b017ea27d1aba3be" android:name="ADUNIT" />
<service android:enabled="true" android:name="com.locadz.AdUnitAllocationService"/>
</application>
<uses-sdk android:minSdkVersion="8" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
</manifest>