mirror of
https://github.com/android10/Android-CleanArchitecture.git
synced 2025-08-14 07:30:44 +08:00
27 lines
621 B
Groovy
27 lines
621 B
Groovy
apply from: 'buildsystem/ci.gradle'
|
|
apply from: 'buildsystem/dependencies.gradle'
|
|
|
|
buildscript {
|
|
repositories {
|
|
jcenter()
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:1.2.0-beta1'
|
|
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.4'
|
|
}
|
|
}
|
|
|
|
task wrapper(type: Wrapper) {
|
|
description 'Creates the gradle wrapper.'
|
|
gradleVersion '2.3'
|
|
}
|
|
|
|
allprojects {
|
|
ext {
|
|
androidApplicationId = 'com.fernandocejas.android10.sample.presentation'
|
|
androidVersionCode = 1
|
|
androidVersionName = "1.0"
|
|
testInstrumentationRunner = "android.support.test.runner.AndroidJUnitRunner"
|
|
}
|
|
}
|