diff options
author | mrezai <mhd.rezai@gmail.com> | 2016-01-09 16:51:22 +0330 |
---|---|---|
committer | mrezai <mhd.rezai@gmail.com> | 2016-01-09 16:51:22 +0330 |
commit | 50cbe736def293ef7eebecc213895d07fdacf138 (patch) | |
tree | 1ec5120a2f447610c9381b6d88574f5fdf79b8cd /platform | |
parent | dbdce7d6f53c2a7b0d6294097e4b8e6712a34403 (diff) |
Fix maven repositories bug
Diffstat (limited to 'platform')
-rw-r--r-- | platform/android/SCsub | 7 | ||||
-rw-r--r-- | platform/android/build.gradle.template | 4 |
2 files changed, 6 insertions, 5 deletions
diff --git a/platform/android/SCsub b/platform/android/SCsub index 30cb9d9660..3d645de38f 100644 --- a/platform/android/SCsub +++ b/platform/android/SCsub @@ -45,8 +45,11 @@ gradle_text = gradle_basein.read() gradle_maven_repos_text="" -for x in env.android_maven_repos: - gradle_maven_repos_text+=x+"\n" +if len(env.android_maven_repos) > 0: + gradle_maven_repos_text+="maven {\n" + for x in env.android_maven_repos: + gradle_maven_repos_text+="\t\t"+x+"\n" + gradle_maven_repos_text+="\t}\n" gradle_maven_dependencies_text="" diff --git a/platform/android/build.gradle.template b/platform/android/build.gradle.template index e78ee6ae34..9461cd2e99 100644 --- a/platform/android/build.gradle.template +++ b/platform/android/build.gradle.template @@ -12,9 +12,7 @@ apply plugin: 'com.android.application' allprojects { repositories { mavenCentral() - maven { - $$GRADLE_REPOSITORY_URLS$$ - } + $$GRADLE_REPOSITORY_URLS$$ } } |