Skip to content

Commit

Permalink
Update Appodeal to v3.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
DmitriiFeshchenko committed Jan 5, 2024
1 parent 82601d6 commit ab0fe09
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 13 deletions.
4 changes: 2 additions & 2 deletions Appodeal.gdap
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

name="Appodeal"
binary_type="local"
binary="appodeal/Appodeal-1.0.0-release.aar"
binary="appodeal/Appodeal-2.0.0-release.aar"

[dependencies]

remote=["com.appodeal.ads:sdk:3.0.1.+"]
remote=["com.appodeal.ads:sdk:3.2.0.+"]
custom_maven_repos=["https://artifactory.appodeal.com/appodeal/"]
10 changes: 5 additions & 5 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@ plugins {
}

ext.libraryName = "Appodeal"
ext.libraryVersionCode = 1
ext.libraryVersionName = "1.0.0"
ext.libraryVersionCode = 2
ext.libraryVersionName = "2.0.0"

android {
namespace 'com.dnhnd.godotappodeal'
compileSdk 32
compileSdk 33

defaultConfig {
minSdk 21
targetSdk 32
targetSdk 33
versionCode libraryVersionCode
versionName libraryVersionName
}
Expand All @@ -38,6 +38,6 @@ android {

dependencies {
implementation 'androidx.appcompat:appcompat:1.5.1'
compileOnly 'com.appodeal.ads:sdk:3.0.1.+'
compileOnly 'com.appodeal.ads:sdk:3.2.0.+'
compileOnly fileTree(dir:"libs", include:["godot-lib.3.5.3.stable.release.aar"])
}
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ public void trackInAppPurchase(float amount, String currency) {

@UsedByGodot
public String[] getNetworks(int adType) {
return Appodeal.getNetworks(godotActivity, getAndroidAdTypes(adType)).toArray(new String[0]);
return Appodeal.getNetworks(getAndroidAdTypes(adType)).toArray(new String[0]);
}

@UsedByGodot
Expand Down Expand Up @@ -361,11 +361,6 @@ public void muteVideosIfCallsMuted(boolean isMuted) {
Appodeal.muteVideosIfCallsMuted(isMuted);
}

@UsedByGodot
public void disableWebViewCacheClear() {
Appodeal.disableWebViewCacheClear();
}

@UsedByGodot
public void startTestActivity() {
Appodeal.startTestActivity(godotActivity);
Expand Down

0 comments on commit ab0fe09

Please sign in to comment.