77 lines
2.0 KiB
Groovy
77 lines
2.0 KiB
Groovy
/*
|
|
* Copyright (C) 2019 The Android Open Source Project
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* https://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
buildscript {
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
}
|
|
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:3.3.2'
|
|
}
|
|
}
|
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'com.google.android.material:material:1.1.0-alpha08'
|
|
implementation 'androidx.appcompat:appcompat:1.1.0-rc01'
|
|
implementation 'androidx.constraintlayout:constraintlayout:2.0.0-beta2'
|
|
implementation 'androidx.preference:preference:1.1.0-rc01'
|
|
}
|
|
|
|
// The sample build uses multiple directories to
|
|
// keep boilerplate and common code separate from
|
|
// the main sample code.
|
|
List<String> dirs = [
|
|
'main', // main sample code; look here for the interesting stuff.
|
|
'common', // components that are reused by multiple samples
|
|
'template'] // boilerplate code that is generated by the sample template process
|
|
|
|
android {
|
|
compileSdkVersion 29
|
|
|
|
defaultConfig {
|
|
minSdkVersion 14
|
|
targetSdkVersion 29
|
|
vectorDrawables.useSupportLibrary true
|
|
}
|
|
|
|
compileOptions {
|
|
sourceCompatibility 1.8
|
|
targetCompatibility 1.8
|
|
}
|
|
|
|
sourceSets {
|
|
main {
|
|
dirs.each { dir ->
|
|
java.srcDirs "src/${dir}/java"
|
|
res.srcDirs "src/${dir}/res"
|
|
}
|
|
}
|
|
androidTest.setRoot('tests')
|
|
androidTest.java.srcDirs = ['tests/src']
|
|
|
|
}
|
|
|
|
}
|