diff options
Diffstat (limited to 'remoteExample')
-rw-r--r-- | remoteExample/build.gradle | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/remoteExample/build.gradle b/remoteExample/build.gradle index cae24e03..f3b0c749 100644 --- a/remoteExample/build.gradle +++ b/remoteExample/build.gradle @@ -5,9 +5,16 @@ apply plugin: 'com.android.application' +repositories { + jcenter() + maven { url "https://jitpack.io" } + maven { url 'https://maven.google.com' } +} + + android { compileSdkVersion 27 - buildToolsVersion '27.0.1' + buildToolsVersion '27.0.3' defaultConfig { minSdkVersion 15 @@ -18,5 +25,4 @@ android { } dependencies { - compile fileTree(dir: 'libs', include: ['*.jar', '*.aar']) } |