2015-08-30 14:16:27 +08:00
|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
dependencies {
|
2016-05-10 07:57:48 +08:00
|
|
|
classpath 'com.android.tools.build:gradle:2.1.0'
|
2015-08-30 14:16:27 +08:00
|
|
|
classpath 'com.google.protobuf:protobuf-gradle-plugin:0.7.0'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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 {
|
|
|
|
applicationId "com.android.launcher3"
|
2016-05-11 06:35:02 +08:00
|
|
|
minSdkVersion 21
|
2016-05-20 02:19:39 +08:00
|
|
|
targetSdkVersion 'N'
|
2015-08-30 14:16:27 +08:00
|
|
|
versionCode 1
|
|
|
|
versionName "1.0"
|
2015-10-17 08:18:54 +08:00
|
|
|
|
|
|
|
testApplicationId "com.android.launcher3.tests"
|
|
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
2015-08-30 14:16:27 +08:00
|
|
|
}
|
|
|
|
buildTypes {
|
|
|
|
debug {
|
|
|
|
minifyEnabled false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
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']
|
2015-08-30 14:16:27 +08:00
|
|
|
manifest.srcFile 'AndroidManifest.xml'
|
|
|
|
proto.srcDirs 'protos/'
|
|
|
|
}
|
2015-10-17 08:18:54 +08:00
|
|
|
|
|
|
|
androidTest {
|
|
|
|
java.srcDirs = ['tests/src']
|
|
|
|
manifest.srcFile "tests/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-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'
|
|
|
|
}
|
|
|
|
}
|