-
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update android applovin 11.11.1 update android firebase-messaging 23.2.0
- Loading branch information
Showing
5 changed files
with
66 additions
and
26 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
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" | ||
} | ||
} |
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