2015-08-30 14:16:27 +08:00
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
dependencies {
|
2016-09-29 03:49:25 +08:00
|
|
|
classpath 'com.android.tools.build:gradle:2.2.0'
|
2016-08-26 13:21:40 +08:00
|
|
|
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.8.0'
|
2015-08-30 14:16:27 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
apply plugin: 'com.android.application'
|
|
|
|
apply plugin: 'com.google.protobuf'
|
|
|
|
|
|
|
|
android {
|
2016-07-08 06:01:26 +08:00
|
|
|
compileSdkVersion 25
|
|
|
|
buildToolsVersion '24.0.0'
|
2015-08-30 14:16:27 +08:00
|
|
|
|
|
|
|
defaultConfig {
|
2016-05-11 06:35:02 +08:00
|
|
|
minSdkVersion 21
|
2016-08-26 13:21:40 +08:00
|
|
|
targetSdkVersion 25
|
2015-08-30 14:16:27 +08:00
|
|
|
versionCode 1
|
|
|
|
versionName "1.0"
|
2015-10-17 08:18:54 +08:00
|
|
|
|
|
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
2015-08-30 14:16:27 +08:00
|
|
|
}
|
|
|
|
buildTypes {
|
|
|
|
debug {
|
|
|
|
minifyEnabled false
|
|
|
|
}
|
|
|
|
}
|
2016-08-26 13:21:40 +08:00
|
|
|
|
|
|
|
productFlavors {
|
|
|
|
aosp {
|
|
|
|
applicationId 'com.android.launcher3'
|
|
|
|
testApplicationId 'com.android.launcher3.tests'
|
|
|
|
}
|
|
|
|
}
|
2015-08-30 14:16:27 +08:00
|
|
|
sourceSets {
|
|
|
|
main {
|
2016-02-19 07:09:21 +08:00
|
|
|
res.srcDirs = ['res']
|
2016-05-24 12:40:53 +08:00
|
|
|
java.srcDirs = ['src', 'src_config']
|
2016-08-26 13:21:40 +08:00
|
|
|
manifest.srcFile 'AndroidManifest-common.xml'
|
2015-08-30 14:16:27 +08:00
|
|
|
proto.srcDirs 'protos/'
|
|
|
|
}
|
2015-10-17 08:18:54 +08:00
|
|
|
|
|
|
|
androidTest {
|
|
|
|
java.srcDirs = ['tests/src']
|
2016-09-10 06:47:55 +08:00
|
|
|
res.srcDirs = ['tests/res']
|
2015-10-17 08:18:54 +08:00
|
|
|
manifest.srcFile "tests/AndroidManifest.xml"
|
|
|
|
}
|
2016-08-26 13:21:40 +08:00
|
|
|
|
|
|
|
aosp {
|
|
|
|
manifest.srcFile "AndroidManifest.xml"
|
|
|
|
}
|
2015-08-30 14:16:27 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2016-02-26 06:50:53 +08:00
|
|
|
compile 'com.android.support:support-v4:23.1.1'
|
|
|
|
compile 'com.android.support:recyclerview-v7:23.1.1'
|
2016-03-18 06:39:39 +08:00
|
|
|
compile 'com.android.support:palette-v7:23.2.0'
|
2015-08-30 14:16:27 +08:00
|
|
|
compile 'com.google.protobuf.nano:protobuf-javanano:3.0.0-alpha-2'
|
2015-10-17 08:18:54 +08:00
|
|
|
|
|
|
|
testCompile 'junit:junit:4.12'
|
2016-09-10 06:47:55 +08:00
|
|
|
androidTestCompile "org.mockito:mockito-core:1.+"
|
|
|
|
androidTestCompile 'com.google.dexmaker:dexmaker:1.2'
|
|
|
|
androidTestCompile 'com.google.dexmaker:dexmaker-mockito:1.2'
|
2016-02-26 06:50:53 +08:00
|
|
|
androidTestCompile 'com.android.support.test:runner:0.5'
|
|
|
|
androidTestCompile 'com.android.support.test.uiautomator:uiautomator-v18:2.1.2'
|
2016-03-18 06:39:39 +08:00
|
|
|
androidTestCompile 'com.android.support:support-annotations:23.2.0'
|
2015-08-30 14:16:27 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
protobuf {
|
|
|
|
// Configure the protoc executable
|
|
|
|
protoc {
|
|
|
|
artifact = 'com.google.protobuf:protoc:3.0.0-alpha-3'
|
2016-08-26 13:21:40 +08:00
|
|
|
|
|
|
|
generateProtoTasks {
|
|
|
|
all().each { task ->
|
|
|
|
task.builtins {
|
|
|
|
remove java
|
|
|
|
javanano {
|
2016-11-10 08:24:30 +08:00
|
|
|
option "java_package=launcher_log.proto|com.android.launcher3.userevent.nano"
|
2016-11-23 04:54:32 +08:00
|
|
|
option "enum_style=java"
|
2016-08-26 13:21:40 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-08-30 14:16:27 +08:00
|
|
|
}
|
|
|
|
}
|