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/android/SCsub | |
parent | dbdce7d6f53c2a7b0d6294097e4b8e6712a34403 (diff) |
Fix maven repositories bug
Diffstat (limited to 'platform/android/SCsub')
-rw-r--r-- | platform/android/SCsub | 7 |
1 files changed, 5 insertions, 2 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="" |