aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--samples/LiveEffect/build.gradle8
-rw-r--r--samples/MegaDrone/build.gradle5
-rw-r--r--samples/RhythmGame/build.gradle7
-rw-r--r--samples/audio-device/build.gradle6
-rw-r--r--samples/build.gradle2
-rw-r--r--samples/hello-oboe/build.gradle12
6 files changed, 17 insertions, 23 deletions
diff --git a/samples/LiveEffect/build.gradle b/samples/LiveEffect/build.gradle
index c612f3be..7a953e33 100644
--- a/samples/LiveEffect/build.gradle
+++ b/samples/LiveEffect/build.gradle
@@ -1,12 +1,12 @@
apply plugin: 'com.android.application'
android {
- compileSdkVersion 26
+ compileSdkVersion 27
defaultConfig {
applicationId 'com.google.sample.oboe.liveeffect'
minSdkVersion 16
- targetSdkVersion 26
+ targetSdkVersion 27
versionCode 1
versionName '1.0'
ndk {
@@ -31,7 +31,7 @@ android {
}
dependencies {
- implementation 'com.android.support:appcompat-v7:26.1.0'
- implementation 'com.android.support.constraint:constraint-layout:1.1.0'
+ implementation 'com.android.support:appcompat-v7:27.1.1'
+ implementation 'com.android.support.constraint:constraint-layout:1.1.2'
implementation project(':audio-device')
}
diff --git a/samples/MegaDrone/build.gradle b/samples/MegaDrone/build.gradle
index cbe4ffc8..52bc4bb7 100644
--- a/samples/MegaDrone/build.gradle
+++ b/samples/MegaDrone/build.gradle
@@ -42,8 +42,5 @@ android {
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:27.1.1'
- implementation 'com.android.support.constraint:constraint-layout:1.1.0'
- testImplementation 'junit:junit:4.12'
- androidTestImplementation 'com.android.support.test:runner:1.0.2'
- androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
+ implementation 'com.android.support.constraint:constraint-layout:1.1.2'
}
diff --git a/samples/RhythmGame/build.gradle b/samples/RhythmGame/build.gradle
index 4c98f3df..45022e1b 100644
--- a/samples/RhythmGame/build.gradle
+++ b/samples/RhythmGame/build.gradle
@@ -31,9 +31,6 @@ android {
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
- implementation 'com.android.support:appcompat-v7:27.1.0'
- implementation 'com.android.support.constraint:constraint-layout:1.0.2'
- testImplementation 'junit:junit:4.12'
- androidTestImplementation 'com.android.support.test:runner:1.0.1'
- androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
+ implementation 'com.android.support:appcompat-v7:27.1.1'
+ implementation 'com.android.support.constraint:constraint-layout:1.1.2'
}
diff --git a/samples/audio-device/build.gradle b/samples/audio-device/build.gradle
index 763cb099..dc9dbbb8 100644
--- a/samples/audio-device/build.gradle
+++ b/samples/audio-device/build.gradle
@@ -1,10 +1,10 @@
apply plugin: 'com.android.library'
android {
- compileSdkVersion 26
+ compileSdkVersion 27
defaultConfig {
minSdkVersion 16
- targetSdkVersion 26
+ targetSdkVersion 27
versionCode 1
versionName "1.0"
}
@@ -17,5 +17,5 @@ android {
}
dependencies {
- compile 'com.android.support:appcompat-v7:26.+'
+ implementation 'com.android.support:appcompat-v7:27.1.1'
}
diff --git a/samples/build.gradle b/samples/build.gradle
index 8e03641c..cd125a84 100644
--- a/samples/build.gradle
+++ b/samples/build.gradle
@@ -25,7 +25,7 @@ buildscript {
jcenter()
}
dependencies {
- classpath 'com.android.tools.build:gradle:3.2.0-alpha14'
+ classpath 'com.android.tools.build:gradle:3.2.0-beta01'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
diff --git a/samples/hello-oboe/build.gradle b/samples/hello-oboe/build.gradle
index 13840d51..a7ad8c1a 100644
--- a/samples/hello-oboe/build.gradle
+++ b/samples/hello-oboe/build.gradle
@@ -1,12 +1,12 @@
apply plugin: 'com.android.application'
android {
- compileSdkVersion 26
+ compileSdkVersion 27
defaultConfig {
applicationId 'com.google.sample.oboe.hellooboe'
minSdkVersion 16
- targetSdkVersion 26
+ targetSdkVersion 27
versionCode 1
versionName '1.0'
externalNativeBuild {
@@ -33,8 +33,8 @@ android {
}
dependencies {
- compile fileTree(include: ['*.jar'], dir: 'libs')
- compile project(':audio-device')
- compile 'com.android.support:appcompat-v7:26.+'
- compile 'com.android.support.constraint:constraint-layout:1.0.2'
+ implementation fileTree(include: ['*.jar'], dir: 'libs')
+ implementation project(':audio-device')
+ implementation 'com.android.support:appcompat-v7:27.1.1'
+ implementation 'com.android.support.constraint:constraint-layout:1.1.2'
}