diff --git a/Android/agsplayer/gradle.properties b/Android/agsplayer/gradle.properties index 189b4143c54..b74d1f3bebf 100644 --- a/Android/agsplayer/gradle.properties +++ b/Android/agsplayer/gradle.properties @@ -7,10 +7,6 @@ # Specifies the JVM arguments used for the daemon process. # The setting is particularly useful for tweaking memory settings. org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8 -org.gradle.caching=true -org.gradle.parallel=true -org.gradle.configureondemand=true -org.gradle.jvmargs=-Dfile.encoding=UTF-8 # When configured, Gradle will run in incubating parallel mode. # This option should only be used with decoupled projects. More details, visit # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects diff --git a/Android/agsplayer/settings.gradle b/Android/agsplayer/settings.gradle index 15d0bdb8630..8ca12692e33 100644 --- a/Android/agsplayer/settings.gradle +++ b/Android/agsplayer/settings.gradle @@ -3,4 +3,4 @@ project (":runtime").projectDir = new File(settingsDir, '../library/runtime') include ':app' rootProject.name = "AGS Player" -apply from: new File(settingsDir, '../gradle/buildCacheSettings.gradle') \ No newline at end of file +# apply from: new File(settingsDir, '../gradle/buildCacheSettings.gradle') \ No newline at end of file diff --git a/Android/gradle/buildCacheSettings.gradle b/Android/gradle/buildCacheSettings.gradle index 331e7884ecf..de236ee2ec2 100644 --- a/Android/gradle/buildCacheSettings.gradle +++ b/Android/gradle/buildCacheSettings.gradle @@ -1,14 +1,14 @@ -ext.isCiServer = System.getenv().containsKey("CIRRUS_CI") -ext.isMasterBranch = System.getenv()["CIRRUS_BRANCH"] == "master" -ext.buildCacheHost = System.getenv().getOrDefault("CIRRUS_HTTP_CACHE_HOST", "localhost:12321") +# ext.isCiServer = System.getenv().containsKey("CIRRUS_CI") +# ext.isMasterBranch = System.getenv()["CIRRUS_BRANCH"] == "master" +# ext.buildCacheHost = System.getenv().getOrDefault("CIRRUS_HTTP_CACHE_HOST", "localhost:12321") -buildCache { - local { - enabled = !isCiServer - } - remote(HttpBuildCache) { - url = "http://${buildCacheHost}/" - enabled = isCiServer - push = isMasterBranch - } -} +# buildCache { +# local { +# enabled = !isCiServer +# } +# remote(HttpBuildCache) { +# url = "http://${buildCacheHost}/" +# enabled = isCiServer +# push = isMasterBranch +# } +# }