-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* commit '1538ed35eca7c59ac84b85a4c1b7299f888f3f72': Updated Release Notes MS-5054 Visibility Detector MS-5011 MS-5040 Viewable Impression Android Video position preroll onPause is not getting tracked when application is in background SDK v8.0 OMSDKv1.3.31 MS-5042 Remove discontinued Adapters MS-4973 Remove deprecated APIs
- Loading branch information
Showing
214 changed files
with
1,485 additions
and
8,176 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
examples/java/SimpleBanner/app/src/main/java/com/example/simplebanner/MainApplication.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package com.example.simplebanner | ||
|
||
import android.app.Application | ||
import android.widget.Toast | ||
import com.appnexus.opensdk.XandrAd | ||
|
||
class MainApplication: Application() { | ||
override fun onCreate() { | ||
super.onCreate() | ||
XandrAd.init(10094, this, true) { | ||
Toast.makeText(this, "Init Completed", Toast.LENGTH_SHORT).show() | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 20 additions & 0 deletions
20
examples/java/SimpleSRM/app/src/main/java/com/example/simplesrm/MainApplication.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
package com.example.simplesrm; | ||
|
||
import android.app.Application; | ||
import android.widget.Toast; | ||
|
||
import com.appnexus.opensdk.InitListener; | ||
import com.appnexus.opensdk.XandrAd; | ||
|
||
public class MainApplication extends Application { | ||
@Override | ||
public void onCreate() { | ||
super.onCreate(); | ||
XandrAd.init(10094, this, true, new InitListener() { | ||
@Override | ||
public void onInitFinished() { | ||
Toast.makeText(getApplicationContext(), "Init Completed", Toast.LENGTH_SHORT).show(); | ||
} | ||
}); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 20 additions & 0 deletions
20
.../java/SimpleVideo/app/src/main/java/com/appnexus/example/simplevideo/MainApplication.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
package com.appnexus.example.simplevideo; | ||
|
||
import android.app.Application; | ||
import android.widget.Toast; | ||
|
||
import com.appnexus.opensdk.InitListener; | ||
import com.appnexus.opensdk.XandrAd; | ||
|
||
public class MainApplication extends Application { | ||
@Override | ||
public void onCreate() { | ||
super.onCreate(); | ||
XandrAd.init(10094, this, true, new InitListener() { | ||
@Override | ||
public void onInitFinished() { | ||
Toast.makeText(getApplicationContext(), "Init Completed", Toast.LENGTH_SHORT).show(); | ||
} | ||
}); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
examples/kotlin/LazyLoadDemo/app/src/main/java/com/xandr/lazyloaddemo/MainApplication.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package com.xandr.lazyloaddemo | ||
|
||
import android.app.Application | ||
import android.widget.Toast | ||
import com.appnexus.opensdk.XandrAd | ||
|
||
class MainApplication: Application() { | ||
override fun onCreate() { | ||
super.onCreate() | ||
XandrAd.init(10094, this, true) { | ||
Toast.makeText(this, "Init Completed", Toast.LENGTH_SHORT).show() | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
14 changes: 14 additions & 0 deletions
14
...ples/kotlin/SimpleDemo/app/src/main/java/appnexus/example/kotlinsample/MainApplication.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package appnexus.example.kotlinsample | ||
|
||
import android.app.Application | ||
import android.widget.Toast | ||
import com.appnexus.opensdk.XandrAd | ||
|
||
class MainApplication: Application() { | ||
override fun onCreate() { | ||
super.onCreate() | ||
XandrAd.init(10094, this, true) { | ||
Toast.makeText(this, "Init Completed", Toast.LENGTH_SHORT).show() | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.