Skip to content

Commit

Permalink
RC2.0 Release Notes
Browse files Browse the repository at this point in the history
  • Loading branch information
Jose Cabal-Ugaz committed Nov 19, 2014
1 parent 68085f0 commit 008403f
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 4 deletions.
22 changes: 22 additions & 0 deletions RELEASE-NOTES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
## RC 1.21

+ AppNexus Native API 1.0, with support for MoPub and Facebook mediation.

### Other Bug Fixes:

+ ANLocation formatting on the ad call

+ KVO removeObserver exceptions

+ MRAID ad with custom close in expanded state did not correctly collapse back to default state.

+ Improved importing of SDK bundle resources.

### 3rd party SDK updates:

+ AdMob 6.12.2

+ Amazon 2.1.4

+ Facebook 3.20

+ MoPub 3.2.0



## RC 1.20
Expand Down
4 changes: 2 additions & 2 deletions sdk/native/ANNativeAdRequest.h
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
@property (nonatomic, readwrite, assign) BOOL shouldLoadMainImage;

/*!
* The delegate which is notified of a successful or failed request.
* The delegate which is notified of a successful or failed request. This should be set before calling [ANNativeAdRequest loadAd].
*/
@property (nonatomic, readwrite, weak) id<ANNativeAdRequestDelegate> delegate;

Expand All @@ -69,7 +69,7 @@
@end

/*!
* Defines the callbacks for one load of a ANNativeAdRequest instance.
* Defines the callbacks for each load of a ANNativeAdRequest instance.
*/
@protocol ANNativeAdRequestDelegate <NSObject>

Expand Down
2 changes: 1 addition & 1 deletion sdk/native/ANNativeAdResponse.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
* After the response is received as part of the [ANNativeAdRequest delegate] callback, a native view can
* be created and the native ad elements populated. When the view is ready for display, it should be
* registered with the response, and a delegate can optionally be attached to the response for callbacks
* related to actions on the native view. Here is sample code which goes through this workflow:
* related to actions on the native view. Here is a sample workflow:
*
* @code
* - (void)adRequest:(ANNativeAdRequest *)request didReceiveResponse:(ANNativeAdResponse *)response {
Expand Down
3 changes: 2 additions & 1 deletion sdk/native/ANNativeCustomAdapter.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
@property (nonatomic, readwrite, assign, getter=hasExpired) BOOL expired;

/*!
* Should instantiate a mediated ad request and begin a mediated ad load.
* Will be called by the AppNexus SDK when a mediated native ad request should be initiated.
*/
- (void)requestNativeAdWithServerParameter:(NSString *)parameterString
adUnitId:(NSString *)adUnitId
Expand Down Expand Up @@ -74,6 +74,7 @@
* Should notify the mediated SDK that the native view should no longer be tracked.
*/
- (void)unregisterViewFromTracking;

@end

/*!
Expand Down
4 changes: 4 additions & 0 deletions sdk/native/ANNativeMediatedAdResponse.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,15 @@
/*!
* Represents a response which should be created, populated, and returned
* by a custom adapter.
* @see ANNativeAdResponse for descriptions of all the properties.
*/
@interface ANNativeMediatedAdResponse : ANNativeAdResponse

/*!
* Designated initializer.
*
* @param adapter The mediation adapter which provided the native assets for this response.
* @param networkCode The network code for the mediated adapter.
*/
- (instancetype)initWithCustomAdapter:(id<ANNativeCustomAdapter>)adapter
networkCode:(ANNativeAdNetworkCode)networkCode;
Expand Down

0 comments on commit 008403f

Please sign in to comment.