diff --git a/build.gradle b/build.gradle index c55aabb..f2a3344 100644 --- a/build.gradle +++ b/build.gradle @@ -1,9 +1,11 @@ buildscript { repositories { mavenCentral() + google() } dependencies { - classpath 'com.android.tools.build:gradle:1.0.0' + classpath 'com.android.tools.build:gradle:8.5.0' + } } @@ -15,5 +17,6 @@ subprojects { } repositories { mavenCentral() + google() } } \ No newline at end of file diff --git a/common/build.gradle b/common/build.gradle index 431bf30..782ab48 100644 --- a/common/build.gradle +++ b/common/build.gradle @@ -19,8 +19,8 @@ android { } dependencies { - compile 'com.android.support:support-annotations:21.0.0' - compile 'com.google.android.gms:play-services-wearable:+' - compile 'com.jakewharton:butterknife:6.0.+' - compile 'com.jakewharton.timber:timber:2.5.+' + implementation 'com.android.support:support-annotations:21.0.0' + implementation 'com.google.android.gms:play-services-wearable:+' + implementation 'com.jakewharton:butterknife:6.0.+' + implementation 'com.jakewharton.timber:timber:2.5.+' } diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 2da147f..40383e3 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ -#Mon Dec 01 11:14:01 EST 2014 +#Sun Aug 11 20:30:35 IDT 2024 distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists +distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-2.2.1-all.zip diff --git a/mobile/build.gradle b/mobile/build.gradle index 87e3045..985348a 100644 --- a/mobile/build.gradle +++ b/mobile/build.gradle @@ -1,6 +1,6 @@ buildscript { dependencies { - classpath 'com.jakewharton.hugo:hugo-plugin:1.1.+' + classpath 'com.jakewharton.hugo:hugo-plugin:1.2.1' } } @@ -64,13 +64,13 @@ android { dependencies { wearApp project(':wear') - compile project(':common') - compile files('libs/GLWallpaperService.jar') - compile 'com.afollestad:material-dialogs:0.3.0' - compile 'com.android.support:appcompat-v7:21.0.0' - compile 'com.google.android.support:wearable:1.1.+' - compile 'com.google.android.gms:play-services-wearable:+' - compile 'com.android.support:support-annotations:21.0.0' + implementation project(':common') + implementation files('libs/GLWallpaperService.jar') + implementation 'com.afollestad:material-dialogs:0.3.0' + implementation 'com.android.support:appcompat-v7:21.0.0' + implementation 'com.google.android.support:wearable:1.1.+' + implementation 'com.google.android.gms:play-services-wearable:+' + implementation 'com.android.support:support-annotations:21.0.0' } apply from: 'https://raw.github.com/twotoasters/HelloAndroidStudio/master/gradle/keystore.gradle' diff --git a/wear/build.gradle b/wear/build.gradle index 228bc46..1d2f28d 100644 --- a/wear/build.gradle +++ b/wear/build.gradle @@ -59,10 +59,10 @@ android { } dependencies { - compile project(':common') - compile 'com.google.android.support:wearable:1.1.+' - compile 'com.google.android.gms:play-services-wearable:+' - compile 'com.android.support:recyclerview-v7:21.0.0' + implementation project(':common') + implementation 'com.google.android.support:wearable:1.1.+' + implementation 'com.google.android.gms:play-services-wearable:+' + implementation 'com.android.support:recyclerview-v7:21.0.0' } apply from: 'https://raw.github.com/twotoasters/HelloAndroidStudio/master/gradle/keystore.gradle'