Skip to content

Commit

Permalink
Merge pull request #21 from sakebook/release/0.2.0
Browse files Browse the repository at this point in the history
Release/0.2.0
  • Loading branch information
sakebook authored Sep 15, 2019
2 parents 5a46b5e + 017a407 commit eccbd5b
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 10 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 0.2.0

* Update dependencies.
* Flutter 1.9

## 0.1.0

* Change flutter channel to stable.
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ And PlatformView
```

## Layout
This plugin supported custom layout
This plugin supported custom layout. You need to create a layout file.

### Android
You can use anything if the parent is a ViewGroup.
Expand Down Expand Up @@ -152,13 +152,13 @@ class MyApp extends StatelessWidget {
},
androidParam: AndroidParam()
..placementId = "ca-app-pub-3940256099942544/2247696110" // test
..packageName = "sakebook.github.com.native_ads_example"
..layoutName = "native_ad_layout"
..packageName = "{{YOUR_ANDROID_APP_PACKAGE_NAME}}"
..layoutName = "{{YOUR_CREATED_LAYOUT_FILE_NAME}}"
..attributionText = "AD",
iosParam: IOSParam()
..placementId = "ca-app-pub-3940256099942544/3986624511" // test
..bundleId = "sakebook.github.com.nativeAdsExample"
..layoutName = "UnifiedNativeAdView"
..bundleId = "{{YOUR_IOS_APP_BUNDLE_ID}}"
..layoutName = "{{YOUR_CREATED_LAYOUT_FILE_NAME}}"
..attributionText = "SPONSORED",
onAdImpression: () => print("onAdImpression!!!"),
onAdClicked: () => print("onAdClicked!!!"),
Expand Down
4 changes: 2 additions & 2 deletions example/ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ PODS:
- nanopb/encode (= 0.3.901)
- nanopb/decode (0.3.901)
- nanopb/encode (0.3.901)
- native_ads (0.1.0):
- native_ads (0.2.0):
- Flutter
- Google-Mobile-Ads-SDK

Expand All @@ -56,7 +56,7 @@ SPEC CHECKSUMS:
GoogleAppMeasurement: 86a82f0e1f20b8eedf8e20326530138fd71409de
GoogleUtilities: e7dc37039b19df7fe543479d3e4a02ac8d11bb69
nanopb: 2901f78ea1b7b4015c860c2fdd1ea2fee1a18d48
native_ads: ed929d12e7883148741ca0070d5f4d12eea23203
native_ads: 401460e3e180d24c27beefc51e96e73c8250102b

PODFILE CHECKSUM: b6a0a141693093b304368d08511b46cf3d1d0ac5

Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ packages:
path: ".."
relative: true
source: path
version: "0.1.0"
version: "0.2.0"
path:
dependency: transitive
description:
Expand Down
2 changes: 1 addition & 1 deletion ios/native_ads.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
Pod::Spec.new do |s|
s.name = 'native_ads'
s.version = '0.1.0'
s.version = '0.2.0'
s.swift_version = '5.0'
s.summary = 'Flutter native ads with PlatformView'
s.description = <<-DESC
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: native_ads
description: Flutter plugin for AdMob Native Ads. Compatible with Android and iOS using PlatformView.
version: 0.1.0
version: 0.2.0
author: sakebook <[email protected]>
homepage: https://github.com/sakebook/flutter_native_ads

Expand Down

0 comments on commit eccbd5b

Please sign in to comment.