aboutsummaryrefslogtreecommitdiff
path: root/wearable/wear/WearAccessibilityApp/Wearable/build.gradle
diff options
context:
space:
mode:
Diffstat (limited to 'wearable/wear/WearAccessibilityApp/Wearable/build.gradle')
-rw-r--r--wearable/wear/WearAccessibilityApp/Wearable/build.gradle84
1 files changed, 84 insertions, 0 deletions
diff --git a/wearable/wear/WearAccessibilityApp/Wearable/build.gradle b/wearable/wear/WearAccessibilityApp/Wearable/build.gradle
new file mode 100644
index 00000000..c1f3a89c
--- /dev/null
+++ b/wearable/wear/WearAccessibilityApp/Wearable/build.gradle
@@ -0,0 +1,84 @@
+
+buildscript {
+ repositories {
+ maven {
+ url 'https://maven.google.com'
+ }
+ jcenter()
+ }
+
+ dependencies {
+ classpath 'com.android.tools.build:gradle:3.0.0'
+ }
+}
+
+apply plugin: 'com.android.application'
+
+repositories {
+ jcenter()
+ maven {
+ url 'https://maven.google.com'
+ }
+}
+
+
+
+dependencies {
+
+ compile 'com.android.support:wear:27.0.0'
+ compile 'com.android.support.constraint:constraint-layout:1.0.2'
+ compile 'com.android.support:appcompat-v7:27.0.0'
+
+
+ compile 'com.google.android.gms:play-services-wearable:11.6.0'
+ compile 'com.android.support:support-v13:27.0.0'
+
+ provided 'com.google.android.wearable:wearable:2.1.0'
+
+ compile 'com.google.android.support:wearable:2.1.0'
+
+}
+
+// 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 26
+
+ buildToolsVersion "26.0.2"
+
+ defaultConfig {
+ versionCode 1
+ versionName "1.0"
+
+ minSdkVersion 23
+
+ targetSdkVersion 26
+
+ multiDexEnabled true
+
+ }
+
+ compileOptions {
+ sourceCompatibility JavaVersion.VERSION_1_7
+ targetCompatibility JavaVersion.VERSION_1_7
+ }
+
+ sourceSets {
+ main {
+ dirs.each { dir ->
+ java.srcDirs "src/${dir}/java"
+ res.srcDirs "src/${dir}/res"
+ }
+ }
+ androidTest.setRoot('tests')
+ androidTest.java.srcDirs = ['tests/src']
+
+ }
+}