Skip to content

Commit

Permalink
[Simulator/Android] Fix deprecations reported by Gradle 8.9
Browse files Browse the repository at this point in the history
  • Loading branch information
mickbot-92 committed Jul 27, 2024
1 parent 42516c7 commit 78b540b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ion/src/simulator/android/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ apk_deps += $(addprefix $(BUILD_DIR)/app/res/,mipmap/ic_launcher.png mipmap-v26/

$(BUILD_DIR)/%.apk: $(apk_deps)
$(call rule_label,GRADLE)
$(Q) ANDROID_HOME=$(ANDROID_HOME) EPSILON_VERSION=$(EPSILON_VERSION) OMEGA_VERSION=$(OMEGA_VERSION) BUILD_DIR=$(BUILD_DIR) EPSILON_VARIANT=$* ion/src/simulator/android/gradlew -b ion/src/simulator/android/build.gradle assembleRelease
$(Q) ANDROID_HOME=$(ANDROID_HOME) EPSILON_VERSION=$(EPSILON_VERSION) OMEGA_VERSION=$(OMEGA_VERSION) BUILD_DIR=$(BUILD_DIR) EPSILON_VARIANT=$* ion/src/simulator/android/gradlew -p ion/src/simulator/android/ assembleRelease
$(Q) cp $(BUILD_DIR)/app/outputs/apk/release/android-release*.apk $@

endif
4 changes: 2 additions & 2 deletions ion/src/simulator/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def fileIfPath(path) {

buildscript {
repositories {
jcenter()
mavenCentral()
google()
}
dependencies {
Expand All @@ -22,7 +22,7 @@ buildscript {

allprojects {
repositories {
jcenter()
mavenCentral()
google()
}
buildDir = BUILD_DIR
Expand Down

0 comments on commit 78b540b

Please sign in to comment.