Skip to content

Commit

Permalink
Merge pull request #65 from android/caren/fix_nearbymsgs
Browse files Browse the repository at this point in the history
Fix NearbyMessagesDevices build
  • Loading branch information
codingjeremy committed Sep 18, 2019
2 parents 5319ab5 + ea8d0f3 commit 67005e7
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 12 deletions.
18 changes: 9 additions & 9 deletions NearbyMessagesDevices/app/build.gradle
@@ -1,13 +1,13 @@
apply plugin: 'com.android.application'

android {
compileSdkVersion 23
buildToolsVersion "23.0.3"
compileSdkVersion 26
buildToolsVersion "28.0.3"

defaultConfig {
applicationId "com.google.android.gms.nearby.messages.samples.nearbydevices"
minSdkVersion 9
targetSdkVersion 23
minSdkVersion 14
targetSdkVersion 26
versionCode 1
versionName "1.0"
}
Expand All @@ -20,9 +20,9 @@ android {
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:23.4.0'
compile 'com.android.support:design:23.4.0'
compile 'com.google.code.gson:gson:2.4'
compile 'com.google.android.gms:play-services-nearby:9.0.0'
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:26.1.0'
implementation 'com.android.support:design:26.1.0'
implementation 'com.google.code.gson:gson:2.4'
implementation 'com.google.android.gms:play-services-nearby:9.0.0'
}
4 changes: 3 additions & 1 deletion NearbyMessagesDevices/build.gradle
Expand Up @@ -2,10 +2,11 @@

buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.1.0'
classpath 'com.android.tools.build:gradle:3.5.0'

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
Expand All @@ -14,6 +15,7 @@ buildscript {

allprojects {
repositories {
google()
jcenter()
}
}
Expand Down
@@ -1,6 +1,6 @@
#Mon Dec 28 10:00:20 PST 2015
#Wed Sep 18 15:14:30 PDT 2019
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-2.10-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-5.4.1-all.zip

0 comments on commit 67005e7

Please sign in to comment.