Skip to content

Commit 3749cbb

Browse files
committed
SDK v7.5.1
* commit 'f288ddb5dbbafa9ad84b2c4e0d2f723d6074d043': Updated SDK version and Release notes Switched to JAR from AAR
2 parents 8dac114 + f288ddb commit 3749cbb

File tree

6 files changed

+10
-4
lines changed

6 files changed

+10
-4
lines changed

RELEASE-NOTES.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 7.5.1
2+
### Improvements/Bug Fixes
3+
MS-4464 Fixed crashes with OMID in v7.5
4+
15
## 7.5
26
### New Features
37
+ MS-4384 Added support for Auction timeout [https://wiki.xandr.com/x/sIS1Bg]

sdk/AndroidManifest.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@
1818

1919
<uses-permission android:name="android.permission.INTERNET" />
2020
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
21+
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
22+
2123
<application>
2224
<activity android:name="com.appnexus.opensdk.AdActivity"
2325
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"

sdk/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// Project properties
2-
version = "7.5"
2+
version = "7.5.1"
33
group='com.appnexus.opensdk'
44

55
// Android build
@@ -9,7 +9,7 @@ android {
99
compileSdkVersion 28
1010
buildToolsVersion '29.0.0'
1111
defaultConfig {
12-
versionCode 71 // An integer value that represents the version of the code, relative to other versions. Increase for each release.
12+
versionCode 72 // An integer value that represents the version of the code, relative to other versions. Increase for each release.
1313
versionName version
1414
consumerProguardFiles 'proguard-project.txt'
1515
minSdkVersion 14
@@ -37,7 +37,7 @@ android {
3737
}
3838

3939
dependencies {
40-
api fileTree(include: ['*.aar'], dir: 'libs')
40+
api fileTree(include: ['*.jar'], dir: 'libs')
4141

4242
testImplementation 'junit:junit:4.12'
4343
testImplementation 'org.assertj:assertj-core:2.6.0'
64.7 KB
Binary file not shown.
-53 KB
Binary file not shown.

sdk/src/com/appnexus/opensdk/utils/Settings.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public class Settings {
4646
public boolean debug_mode = false; // This should always be false here.
4747
public String ua = null;
4848

49-
public final String sdkVersion = "7.5";
49+
public final String sdkVersion = "7.5.1";
5050

5151
public String mcc;
5252
public String mnc;

0 commit comments

Comments
 (0)