Skip to content

Commit

Permalink
API 1.0 (prebid#144)
Browse files Browse the repository at this point in the history
* new updated API pertaining to the intend to implement
  • Loading branch information
ppuviarasu authored Feb 21, 2019
1 parent c90872e commit 47ab8b9
Show file tree
Hide file tree
Showing 1,316 changed files with 10,397 additions and 148,005 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,11 @@
**/out
**/Payload/
**/PrebidMobileDemo.app/
#**/Products
**/Products
**/example/Swift/PrebidDemo/Pods/
**/example/ObjectiveC/PrebidDemo/Pods/
**/screenshot*
PrebidMobile.framework

########################################################################################
# macOS.gitignore
Expand Down
6 changes: 2 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
language: objective-c
language: swift
osx_image: xcode8
env:
- XAMARIN_DEVICES_ID_PR=92132fb4 XAMARIN_DEVICES_ID_CRON=a3dab23a
before_script: "./scripts/add-keys.sh"
after_script: "./scripts/remove-key.sh"
script:
- "./scripts/buildPrebidMobile.sh"
- "./scripts/testPrebidMobile.sh"
- "./scripts/testPrebidMobile.sh"
12 changes: 5 additions & 7 deletions PrebidMobile.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|

s.name = "PrebidMobile"
s.version = "0.5.3"
s.version = "1.0"
s.summary = "PrebidMobile is a lightweight framework that integrates directly with Prebid Server."

s.description = <<-DESC
Expand All @@ -11,7 +11,7 @@ Pod::Spec.new do |s|


s.license = { :type => "Apache License, Version 2.0", :text => <<-LICENSE
Copyright 2017 Prebid.org, Inc.
Copyright 2018-2019 Prebid.org, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand All @@ -28,12 +28,10 @@ Pod::Spec.new do |s|
}

s.author = { "Prebid.org, Inc." => "[email protected]" }
s.platform = :ios, "8.0"
s.platform = :ios, "11.0"
s.swift_version = '3.2'
s.source = { :git => "https://github.com/prebid/prebid-mobile-ios.git", :tag => "#{s.version}" }
s.source_files = "sdk/PrebidMobile", "sdk/PrebidMobile/**/*.{h,m}", "sdk/PrebidServerAdapter/**/*.{h,m}"
s.public_header_files = "sdk/PrebidServerAdapter/PBServerAdapter.h", "sdk/PrebidMobile/*.h", "sdk/PrebidMobile/Logging/*.h"
s.exclude_files = "sdk/PrebidMobile/**/PrebidMobile-umbrella.h"
s.requires_arc = true
s.source_files = "src/PrebidMobile/PrebidMobile","src/PrebidMobile/PrebidMobile/*.{h,swift}","src/PrebidMobile/PrebidMobile/**/*.swift"
s.xcconfig = {
:LIBRARY_SEARCH_PATHS => '$(inherited)',
:OTHER_CFLAGS => '$(inherited)',
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Get started with Prebid Mobile by creating a Prebid Server account [here](http:/
Easily include the Prebid Mobile SDK for your priamy ad server in your Podfile/

```
platform :ios, '8.0'
platform :ios, '11.0'
target 'MyAmazingApp' do
pod 'PrebidMobile'
Expand Down
13 changes: 13 additions & 0 deletions example/ObjectiveC/PrebidDemo/Podfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'

target 'PrebidDemo' do


# Pods for PrebidDemo

pod 'Google-Mobile-Ads-SDK'

pod 'mopub-ios-sdk'

end
30 changes: 30 additions & 0 deletions example/ObjectiveC/PrebidDemo/Podfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
PODS:
- Google-Mobile-Ads-SDK (7.39.0)
- mopub-ios-sdk (5.5.0):
- mopub-ios-sdk/MoPubSDK (= 5.5.0)
- mopub-ios-sdk/Avid (5.5.0):
- mopub-ios-sdk/Core
- mopub-ios-sdk/Core (5.5.0)
- mopub-ios-sdk/Moat (5.5.0):
- mopub-ios-sdk/Core
- mopub-ios-sdk/MoPubSDK (5.5.0):
- mopub-ios-sdk/Avid
- mopub-ios-sdk/Core
- mopub-ios-sdk/Moat

DEPENDENCIES:
- Google-Mobile-Ads-SDK
- mopub-ios-sdk

SPEC REPOS:
https://github.com/cocoapods/specs.git:
- Google-Mobile-Ads-SDK
- mopub-ios-sdk

SPEC CHECKSUMS:
Google-Mobile-Ads-SDK: d0f10a7c4d7015db23075ff316602350d12049db
mopub-ios-sdk: 937b82dd76d8a396ba6a22ae005a1e24c61bf28b

PODFILE CHECKSUM: 046766c8e4e0e44a0c7bac93f52bd49e0cb7fac3

COCOAPODS: 1.5.3
4 changes: 4 additions & 0 deletions example/ObjectiveC/PrebidDemo/PrebidDemo-Bridging-Header.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
//
// Use this file to import your target's public headers that you would like to expose to Swift.
//

Loading

0 comments on commit 47ab8b9

Please sign in to comment.