├── CONTRIBUTING.md ├── LICENSE ├── README.md └── nativetemplates ├── build.gradle ├── proguard-rules.pgcfg └── src └── main ├── AndroidManifest.xml ├── java └── com │ └── google │ └── android │ └── ads │ └── nativetemplates │ ├── NativeTemplateStyle.java │ └── TemplateView.java └── res ├── drawable ├── gnt_outline_shape.xml └── gnt_rounded_corners_shape.xml ├── layout ├── gnt_medium_template_view.xml └── gnt_small_template_view.xml └── values ├── attrs.xml ├── colors.xml └── dimens.xml /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-mobile-android-native-templates/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-mobile-android-native-templates/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-mobile-android-native-templates/HEAD/README.md -------------------------------------------------------------------------------- /nativetemplates/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-mobile-android-native-templates/HEAD/nativetemplates/build.gradle -------------------------------------------------------------------------------- /nativetemplates/proguard-rules.pgcfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-mobile-android-native-templates/HEAD/nativetemplates/proguard-rules.pgcfg -------------------------------------------------------------------------------- /nativetemplates/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-mobile-android-native-templates/HEAD/nativetemplates/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /nativetemplates/src/main/java/com/google/android/ads/nativetemplates/NativeTemplateStyle.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-mobile-android-native-templates/HEAD/nativetemplates/src/main/java/com/google/android/ads/nativetemplates/NativeTemplateStyle.java -------------------------------------------------------------------------------- /nativetemplates/src/main/java/com/google/android/ads/nativetemplates/TemplateView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-mobile-android-native-templates/HEAD/nativetemplates/src/main/java/com/google/android/ads/nativetemplates/TemplateView.java -------------------------------------------------------------------------------- /nativetemplates/src/main/res/drawable/gnt_outline_shape.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-mobile-android-native-templates/HEAD/nativetemplates/src/main/res/drawable/gnt_outline_shape.xml -------------------------------------------------------------------------------- /nativetemplates/src/main/res/drawable/gnt_rounded_corners_shape.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-mobile-android-native-templates/HEAD/nativetemplates/src/main/res/drawable/gnt_rounded_corners_shape.xml -------------------------------------------------------------------------------- /nativetemplates/src/main/res/layout/gnt_medium_template_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-mobile-android-native-templates/HEAD/nativetemplates/src/main/res/layout/gnt_medium_template_view.xml -------------------------------------------------------------------------------- /nativetemplates/src/main/res/layout/gnt_small_template_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-mobile-android-native-templates/HEAD/nativetemplates/src/main/res/layout/gnt_small_template_view.xml -------------------------------------------------------------------------------- /nativetemplates/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-mobile-android-native-templates/HEAD/nativetemplates/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /nativetemplates/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-mobile-android-native-templates/HEAD/nativetemplates/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /nativetemplates/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleads/googleads-mobile-android-native-templates/HEAD/nativetemplates/src/main/res/values/dimens.xml --------------------------------------------------------------------------------