diff options
-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$$ } } |