Skip to content

Commit

Permalink
update android adjust 4.33.5
Browse files Browse the repository at this point in the history
update android applovin 11.11.1
update android firebase-messaging 23.2.0
  • Loading branch information
irov committed Jul 29, 2023
1 parent c98f641 commit e8537f8
Show file tree
Hide file tree
Showing 5 changed files with 66 additions and 26 deletions.
70 changes: 55 additions & 15 deletions gradle/androidx.gradle
Original file line number Diff line number Diff line change
@@ -1,20 +1,60 @@
import com.Mengine.Utils

def ANDROID_APP_IMPLEMENTATION_ANDROIDX_CORE = Utils.getStringProperty(project, "ANDROID_APP_IMPLEMENTATION_ANDROIDX_CORE", "1.10.0")
def ANDROID_APP_IMPLEMENTATION_ANDROIDX_ANNOTATION = Utils.getStringProperty(project, "ANDROID_APP_IMPLEMENTATION_ANDROIDX_ANNOTATION", "1.6.0")
def ANDROID_APP_IMPLEMENTATION_ANDROIDX_MULTIDEX = Utils.getStringProperty(project, "ANDROID_APP_IMPLEMENTATION_ANDROIDX_MULTIDEX", "2.0.1")
def ANDROID_APP_IMPLEMENTATION_ANDROIDX_CONSTRAINTLAYOUT = Utils.getStringProperty(project, "ANDROID_APP_IMPLEMENTATION_ANDROIDX_CONSTRAINTLAYOUT", "2.1.4")
def ANDROID_APP_IMPLEMENTATION_ANDROIDX_PREFERENCE = Utils.getStringProperty(project, "ANDROID_APP_IMPLEMENTATION_ANDROIDX_PREFERENCE", "1.2.0")
def ANDROID_APP_IMPLEMENTATION_ANDROIDX_APPCOMPAT = Utils.getStringProperty(project, "ANDROID_APP_IMPLEMENTATION_ANDROIDX_APPCOMPAT", "1.6.1")
def ANDROID_APP_IMPLEMENTATION_ANDROIDX_WINDOW = Utils.getStringProperty(project, "ANDROID_APP_IMPLEMENTATION_ANDROIDX_WINDOW", "1.0.0")
def ANDROID_APP_IMPLEMENTATION_ANDROIDX_CORE = Utils.getStringProperty(project, "ANDROID_APP_IMPLEMENTATION_ANDROIDX_CORE", null)
def ANDROID_APP_IMPLEMENTATION_ANDROIDX_ANNOTATION = Utils.getStringProperty(project, "ANDROID_APP_IMPLEMENTATION_ANDROIDX_ANNOTATION", null)
def ANDROID_APP_IMPLEMENTATION_ANDROIDX_MULTIDEX = Utils.getStringProperty(project, "ANDROID_APP_IMPLEMENTATION_ANDROIDX_MULTIDEX", null)
def ANDROID_APP_IMPLEMENTATION_ANDROIDX_CONSTRAINTLAYOUT = Utils.getStringProperty(project, "ANDROID_APP_IMPLEMENTATION_ANDROIDX_CONSTRAINTLAYOUT", null)
def ANDROID_APP_IMPLEMENTATION_ANDROIDX_PREFERENCE = Utils.getStringProperty(project, "ANDROID_APP_IMPLEMENTATION_ANDROIDX_PREFERENCE", null)
def ANDROID_APP_IMPLEMENTATION_ANDROIDX_APPCOMPAT = Utils.getStringProperty(project, "ANDROID_APP_IMPLEMENTATION_ANDROIDX_APPCOMPAT", null)
def ANDROID_APP_IMPLEMENTATION_ANDROIDX_WINDOW = Utils.getStringProperty(project, "ANDROID_APP_IMPLEMENTATION_ANDROIDX_WINDOW", null)
def ANDROID_APP_IMPLEMENTATION_ANDROIDX_WINDOW_EXTENSIONS = Utils.getStringProperty(project, "ANDROID_APP_IMPLEMENTATION_ANDROIDX_WINDOW_EXTENSIONS", null)

dependencies {
implementation "androidx.core:core:$ANDROID_APP_IMPLEMENTATION_ANDROIDX_CORE"
implementation "androidx.annotation:annotation:$ANDROID_APP_IMPLEMENTATION_ANDROIDX_ANNOTATION"
implementation "androidx.multidex:multidex:$ANDROID_APP_IMPLEMENTATION_ANDROIDX_MULTIDEX"
implementation "androidx.constraintlayout:constraintlayout:$ANDROID_APP_IMPLEMENTATION_ANDROIDX_CONSTRAINTLAYOUT"
implementation "androidx.preference:preference:$ANDROID_APP_IMPLEMENTATION_ANDROIDX_PREFERENCE"
implementation "androidx.appcompat:appcompat:$ANDROID_APP_IMPLEMENTATION_ANDROIDX_APPCOMPAT"
implementation "androidx.window:window:$ANDROID_APP_IMPLEMENTATION_ANDROIDX_WINDOW"
implementation "androidx.window:window-extensions:1.0.0-alpha01"
if (ANDROID_APP_IMPLEMENTATION_ANDROIDX_CORE != null) {
implementation "androidx.core:core:$ANDROID_APP_IMPLEMENTATION_ANDROIDX_CORE"
} else {
implementation "androidx.core:core:1.10.1"
}

if (ANDROID_APP_IMPLEMENTATION_ANDROIDX_ANNOTATION != null) {
implementation "androidx.annotation:annotation:$ANDROID_APP_IMPLEMENTATION_ANDROIDX_ANNOTATION"
} else {
implementation "androidx.annotation:annotation:1.6.0"
}

if (ANDROID_APP_IMPLEMENTATION_ANDROIDX_MULTIDEX != null) {
implementation "androidx.multidex:multidex:$ANDROID_APP_IMPLEMENTATION_ANDROIDX_MULTIDEX"
} else {
implementation "androidx.multidex:multidex:2.0.1"
}

if (ANDROID_APP_IMPLEMENTATION_ANDROIDX_CONSTRAINTLAYOUT != null) {
implementation "androidx.constraintlayout:constraintlayout:$ANDROID_APP_IMPLEMENTATION_ANDROIDX_CONSTRAINTLAYOUT"
} else {
implementation "androidx.constraintlayout:constraintlayout:2.1.4"
}

if (ANDROID_APP_IMPLEMENTATION_ANDROIDX_PREFERENCE != null) {
implementation "androidx.preference:preference:$ANDROID_APP_IMPLEMENTATION_ANDROIDX_PREFERENCE"
} else {
implementation "androidx.preference:preference:1.2.1"
}

if (ANDROID_APP_IMPLEMENTATION_ANDROIDX_APPCOMPAT != null) {
implementation "androidx.appcompat:appcompat:$ANDROID_APP_IMPLEMENTATION_ANDROIDX_APPCOMPAT"
} else {
implementation "androidx.appcompat:appcompat:1.6.1"
}

if (ANDROID_APP_IMPLEMENTATION_ANDROIDX_WINDOW != null) {
implementation "androidx.window:window:$ANDROID_APP_IMPLEMENTATION_ANDROIDX_WINDOW"
} else {
implementation "androidx.window:window:1.1.0"
}

if (ANDROID_APP_IMPLEMENTATION_ANDROIDX_WINDOW_EXTENSIONS != null) {
implementation "androidx.window:window-extensions:$ANDROID_APP_IMPLEMENTATION_ANDROIDX_WINDOW_EXTENSIONS"
} else {
implementation "androidx.window:window-extensions:1.0.0-alpha01"
}
}
2 changes: 1 addition & 1 deletion gradle/plugins/Adjust/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ if (MENGINE_APP_PLUGIN_FIREBASE_MESSAGING == true) {
}

dependencies {
implementation 'com.adjust.sdk:adjust-android:4.33.4'
implementation 'com.adjust.sdk:adjust-android:4.33.5'
}

apply from: rootProject.projectDir.getAbsolutePath() + '/plugins/plugin_extensions.gradle'
2 changes: 1 addition & 1 deletion gradle/plugins/Amazon/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ android {
}

dependencies {
implementation 'com.amazon.android:aps-sdk:9.8.1'
implementation 'com.amazon.android:aps-sdk:9.8.3'
}

apply from: rootProject.projectDir.getAbsolutePath() + '/plugins/plugin_extensions.gradle'
16 changes: 8 additions & 8 deletions gradle/plugins/AppLovin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ if (MENGINE_APP_PLUGIN_APPLOVIN_MEDIATION_AMAZON == true) {
}

dependencies {
implementation 'com.applovin:applovin-sdk:11.10.1'
implementation 'com.applovin:applovin-sdk:11.11.1'

if (MENGINE_APP_PLUGIN_APPLOVIN_MEDIATION_ADCOLONY == true) {
implementation 'com.applovin.mediation:adcolony-adapter:4.8.0.4'
Expand All @@ -125,7 +125,7 @@ dependencies {
}

if (MENGINE_APP_PLUGIN_APPLOVIN_MEDIATION_CHARTBOOST == true) {
implementation 'com.applovin.mediation:chartboost-adapter:9.3.1.0'
implementation 'com.applovin.mediation:chartboost-adapter:9.4.0.0'
}

if (MENGINE_APP_PLUGIN_APPLOVIN_MEDIATION_CRITEO == true) {
Expand All @@ -145,11 +145,11 @@ dependencies {
}

if (MENGINE_APP_PLUGIN_APPLOVIN_MEDIATION_HYPRMX == true) {
implementation 'com.applovin.mediation:hyprmx-adapter:6.2.0.1'
implementation 'com.applovin.mediation:hyprmx-adapter:6.2.0.2'
}

if (MENGINE_APP_PLUGIN_APPLOVIN_MEDIATION_INMOBI == true) {
implementation 'com.applovin.mediation:inmobi-adapter:10.1.4.1'
implementation 'com.applovin.mediation:inmobi-adapter:10.1.4.2'
implementation 'com.squareup.picasso:picasso:2.71828'
}

Expand All @@ -174,7 +174,7 @@ dependencies {
}

if (MENGINE_APP_PLUGIN_APPLOVIN_MEDIATION_MINTEGRAL == true) {
implementation 'com.applovin.mediation:mintegral-adapter:16.4.71.0'
implementation 'com.applovin.mediation:mintegral-adapter:16.4.81.0'
}

if (MENGINE_APP_PLUGIN_APPLOVIN_MEDIATION_MOBILEFUSE == true) {
Expand Down Expand Up @@ -202,19 +202,19 @@ dependencies {
}

if (MENGINE_APP_PLUGIN_APPLOVIN_MEDIATION_TAPJOY == true) {
implementation 'com.applovin.mediation:tapjoy-adapter:13.1.1.0'
implementation 'com.applovin.mediation:tapjoy-adapter:13.1.2.0'
}

if (MENGINE_APP_PLUGIN_APPLOVIN_MEDIATION_UNITYADS == true) {
implementation 'com.applovin.mediation:unityads-adapter:4.8.0.0'
}

if (MENGINE_APP_PLUGIN_APPLOVIN_MEDIATION_VERVE == true) {
implementation 'com.applovin.mediation:verve-adapter:2.18.1.1'
implementation 'com.applovin.mediation:verve-adapter:2.19.0.0'
}

if (MENGINE_APP_PLUGIN_APPLOVIN_MEDIATION_YANDEX == true) {
implementation 'com.applovin.mediation:yandex-adapter:5.9.0.1'
implementation 'com.applovin.mediation:yandex-adapter:5.10.0.0'
}
}

Expand Down
2 changes: 1 addition & 1 deletion gradle/plugins/FirebaseMessaging/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ android {
}

dependencies {
implementation 'com.google.firebase:firebase-messaging:23.1.2'
implementation 'com.google.firebase:firebase-messaging:23.2.0'
}

apply from: rootProject.projectDir.getAbsolutePath() + '/plugins/plugin_extensions.gradle'

0 comments on commit e8537f8

Please sign in to comment.