blob: 4e97a734a6556a9dc1b135a9f708d9bac0248296 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright 2013 Google Inc. All Rights Reserved. -->
<resources>
<declare-styleable name="AdsAttrs">
<!--
The size of the ad. It must be one of BANNER, FULL_BANNER, LEADERBOARD,
MEDIUM_RECTANGLE, SMART_BANNER, WIDE_SKYSCRAPER, or
<width>x<height>.
-->
<attr name="adSize" format="string"/>
<!--
A comma-separated list of the supported ad sizes. The sizes must be one of
BANNER, FULL_BANNER, LEADERBOARD, MEDIUM_RECTANGLE, SMART_BANNER,
WIDE_SKYSCRAPER, or <width>x<height>.
-->
<attr name="adSizes" format="string"/>
<!-- The ad unit ID. -->
<attr name="adUnitId" format="string"/>
</declare-styleable>
</resources>
|