Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Added support for InMobi SDK 10.8.0
  • Loading branch information
sunilkuna5-inmobi committed Nov 15, 2024
commit 47fac7f00f9259815c71540e6233953569f4aa09
10 changes: 6 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
InMobi SDK for Android
======================

Modified: 30 August, 2024
Modified: 13 November, 2024

SDK Version: 10.7.7
SDK Version: 10.8.0

Thanks for monetizing with InMobi!
If you haven't already, [sign up](https://www.inmobi.com/user/index?locale=en_us#signup) for an account to start monetizing your app!
Expand All @@ -20,7 +20,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.inmobi.monetization:inmobi-ads-kotlin:10.7.7'
implementation 'com.inmobi.monetization:inmobi-ads-kotlin:10.8.0'
}
```

Expand All @@ -31,7 +31,9 @@ To download the latest SDK as a AAR, please visit [http://inmobi.com/sdk](https:
**To continue integrating with the InMobi SDK, please see the [Integration Guidelines](https://support.inmobi.com/monetize/android-guidelines/) for Android.**

## New in this version
• Android 14 support
• Bug Fixes

** Refer to [Release Notes](https://support.inmobi.com/monetize/sdk-documentation/android-guidelines/changelogs-android) for Older Versions.**

## Requirements
- Android 4.1 (API level 16) and higher
Expand Down
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ buildscript {
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.4.2'
classpath 'com.android.tools.build:gradle:8.6.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
Expand All @@ -15,13 +15,13 @@ buildscript {

ext {
androidMinSdkVersion = 16
androidTargetSdkVersion = 31
androidCompileSdkVersion = 31
androidTargetSdkVersion = 34
androidCompileSdkVersion = 35

appVersionCode = 1
appVersionName = "1.0.0"

inmobiSdkVersion = "10.7.7"
inmobiSdkVersion = "10.8.0"
picasso = "2.8"
browser = "1.3.0"
recyclerview = "1.1.0"
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-all.zip
6 changes: 3 additions & 3 deletions samples/bannerSample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ android {
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_11
}
dexOptions {
javaMaxHeapSize "4g"
Expand All @@ -37,5 +37,5 @@ android {
dependencies {
// implementation fileTree(dir: 'libs', include: ['*.aar'])
implementation 'androidx.appcompat:appcompat:1.2.0'
implementation ('com.inmobi.monetization:inmobi-ads-kotlin:10.7.7')
implementation "com.inmobi.monetization:inmobi-ads-kotlin:$inmobiSdkVersion"
}
4 changes: 2 additions & 2 deletions samples/customABSample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ android {
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_11
}

}
Expand Down
4 changes: 2 additions & 2 deletions samples/interstitialSample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ android {
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_11
}
dexOptions {
javaMaxHeapSize "4g"
Expand Down
4 changes: 2 additions & 2 deletions samples/nativeSample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ android {
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_11
}
}

Expand Down