Skip to content
This repository has been archived by the owner on Nov 15, 2022. It is now read-only.

Migrated gradle to more recent versions #4

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,15 @@ on the command line:

To start the sample, say "ok glass, show me a demo" from the Glass clock
screen or use the touch menu.

## Notices for Linux users

The Android SDK build tools ship outdated 32bit binaries in version
20.0.0. Users of modern Linux kernels in 64bit mode might need to install
additional libraries to run the build tools. In particular, this is:

- `util-linux` (32bit)
- `clang` (32bit)
- `zstd` (32bit)
- `zlib` (32bit)

6 changes: 5 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@

buildscript {
repositories {
google()
mavenCentral()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:1.1.0'
classpath 'com.android.tools.build:gradle:3.1.2'

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

allprojects {
repositories {
google()
mavenCentral()
jcenter()
}
}
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=http\://services.gradle.org/distributions/gradle-2.3-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7-all.zip