├── adcatalog ├── res │ ├── drawable │ │ ├── icon.png │ │ ├── honeycomblogosmall.png │ │ ├── backrepeat.xml │ │ └── gamelevelbuttonbackground.xml │ ├── layout │ │ ├── tabred.xml │ │ ├── tabblue.xml │ │ ├── tabgreen.xml │ │ ├── openglviewexample.xml │ │ ├── video.xml │ │ ├── scrollviewexample.xml │ │ ├── videopreroll.xml │ │ ├── videoexample.xml │ │ ├── main.xml │ │ ├── advancedlayouts.xml │ │ ├── tabviewexample.xml │ │ ├── pageswipe.xml │ │ ├── banners.xml │ │ ├── gamelevels.xml │ │ └── interstitials.xml │ ├── anim │ │ ├── push_right_in.xml │ │ ├── push_right_out.xml │ │ ├── push_left_in.xml │ │ └── push_left_out.xml │ ├── layout-xlarge │ │ ├── openglviewexample.xml │ │ ├── scrollviewexample.xml │ │ └── banners.xml │ └── values │ │ └── strings.xml ├── project.properties ├── src │ └── com │ │ └── google │ │ └── ad │ │ └── catalog │ │ ├── layouts │ │ ├── Video.java │ │ ├── ScrollViewExample.java │ │ ├── ListViewExample.java │ │ ├── AdvancedLayouts.java │ │ ├── OpenGLViewExample.java │ │ ├── Cube.java │ │ ├── CubeRenderer.java │ │ ├── ListViewExampleListAdapter.java │ │ └── TabbedViewExample.java │ │ ├── Constants.java │ │ ├── AdCatalogUtils.java │ │ ├── GameLevels.java │ │ ├── LogAndToastAdListener.java │ │ ├── PageSwipe.java │ │ ├── VideoPreroll.java │ │ ├── TrackingVideoView.java │ │ ├── Interstitials.java │ │ ├── Banners.java │ │ ├── AdCatalog.java │ │ ├── VideoPlayer.java │ │ └── VideoExample.java ├── AndroidManifest.xml └── COPYING └── README.md /adcatalog/res/drawable/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corymsmith/googleads-mobile-android-adcatalog/master/adcatalog/res/drawable/icon.png -------------------------------------------------------------------------------- /adcatalog/res/drawable/honeycomblogosmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corymsmith/googleads-mobile-android-adcatalog/master/adcatalog/res/drawable/honeycomblogosmall.png -------------------------------------------------------------------------------- /adcatalog/res/drawable/backrepeat.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /adcatalog/res/drawable/gamelevelbuttonbackground.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | -------------------------------------------------------------------------------- /adcatalog/res/layout/tabred.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | -------------------------------------------------------------------------------- /adcatalog/res/layout/tabblue.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | -------------------------------------------------------------------------------- /adcatalog/res/layout/tabgreen.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | -------------------------------------------------------------------------------- /adcatalog/res/anim/push_right_in.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /adcatalog/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system use, 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | 10 | # Project target. 11 | target=android-19 12 | android.library.reference.1=../../libproject/google-play-services_lib 13 | -------------------------------------------------------------------------------- /adcatalog/res/layout/openglviewexample.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 15 | 16 | -------------------------------------------------------------------------------- /adcatalog/res/layout-xlarge/openglviewexample.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 15 | 16 | -------------------------------------------------------------------------------- /adcatalog/res/layout/video.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 13 | 17 | 20 | 21 | -------------------------------------------------------------------------------- /adcatalog/res/anim/push_right_out.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /adcatalog/res/anim/push_left_in.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /adcatalog/res/anim/push_left_out.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /adcatalog/res/layout/scrollviewexample.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 11 | 13 | 16 | 17 | 18 | 24 | 25 | -------------------------------------------------------------------------------- /adcatalog/res/layout-xlarge/scrollviewexample.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 11 | 13 | 17 | 18 | 19 | 25 | 26 | -------------------------------------------------------------------------------- /adcatalog/res/layout/videopreroll.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 13 |