You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
87 lines
2.2 KiB
87 lines
2.2 KiB
7 months ago
|
<#--
|
||
|
Copyright 2014 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
|
||
|
|
||
|
http://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.4.2'
|
||
|
}
|
||
|
}
|
||
|
|
||
|
apply plugin: 'com.android.library'
|
||
|
|
||
|
repositories {
|
||
|
google()
|
||
|
jcenter()
|
||
|
<#if sample.repository?has_content>
|
||
|
<#list sample.repository as rep>
|
||
|
${rep}
|
||
|
</#list>
|
||
|
</#if>
|
||
|
}
|
||
|
|
||
|
<#if sample.dependency_shared?has_content>
|
||
|
dependencies {
|
||
|
<#list sample.dependency_shared as dep>
|
||
|
<#-- Output dependency after checking if it is a play services depdency and
|
||
|
needs the latest version number attached. -->
|
||
|
<@update_play_services_dependency dep="${dep}" />
|
||
|
</#list>
|
||
|
}</#if>
|
||
|
|
||
|
// 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 {
|
||
|
<#if sample.compileSdkVersion?? && sample.compileSdkVersion?has_content>
|
||
|
compileSdkVersion ${sample.compileSdkVersion}
|
||
|
<#else>
|
||
|
compileSdkVersion ${compile_sdk}
|
||
|
</#if>
|
||
|
|
||
|
buildToolsVersion ${build_tools_version}
|
||
|
|
||
|
defaultConfig {
|
||
|
minSdkVersion ${min_sdk}
|
||
|
targetSdkVersion ${compile_sdk}
|
||
|
}
|
||
|
|
||
|
compileOptions {
|
||
|
sourceCompatibility JavaVersion.VERSION_1_7
|
||
|
targetCompatibility JavaVersion.VERSION_1_7
|
||
|
}
|
||
|
|
||
|
sourceSets {
|
||
|
main {
|
||
|
dirs.each { dir ->
|
||
|
<#noparse>
|
||
|
java.srcDirs "src/${dir}/java"
|
||
|
res.srcDirs "src/${dir}/res"
|
||
|
</#noparse>
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|
||
|
}
|