aboutsummaryrefslogtreecommitdiff
path: root/samples/hello-oboe
diff options
context:
space:
mode:
Diffstat (limited to 'samples/hello-oboe')
-rw-r--r--samples/hello-oboe/build.gradle12
1 files changed, 6 insertions, 6 deletions
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'
}