24 lines
708 B
Django/Jinja
24 lines
708 B
Django/Jinja
{# Copyright 2016 The Chromium Authors. All rights reserved. #}
|
|
{# Use of this source code is governed by a BSD-style license that can be #}
|
|
{# found in the LICENSE file. #}
|
|
// Generated by //build/android/generate_gradle.py
|
|
|
|
// This section is used to find the plugins.
|
|
buildscript {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
dependencies {
|
|
classpath "com.android.tools.build:gradle:{{ android_gradle_plugin_version }}"
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:{{ kotlin_gradle_plugin_version }}"
|
|
}
|
|
}
|
|
|
|
// This is used by individual modules to find/fetch dependencies.
|
|
allprojects {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
} |