Guest User

Untitled

a guest
Nov 20th, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.50 KB | None | 0 0
  1. Error:(25, 13) Failed to resolve: org.mongodb:stitch:1.0.0-SNAPSHOT
  2. Show in Filw
  3. Show in Project Structure Dialog
  4.  
  5. maven {
  6. url "https://oss.sonatype.org/content/repositories/snapshots"
  7. }
  8.  
  9. // Top-level build file where you can add configuration options common to
  10. all sub-projects/modules.
  11.  
  12. buildscript {
  13. repositories {
  14. jcenter()
  15. maven {
  16. url "https://oss.sonatype.org/content/repositories/snapshots"
  17. }
  18. }
  19. dependencies {
  20. classpath 'com.android.tools.build:gradle:3.0.0'
  21.  
  22. // NOTE: Do not place your application dependencies here; they belong
  23. // in the individual module build.gradle files
  24. }
  25. }
  26.  
  27. allprojects {
  28. repositories {
  29. jcenter()
  30. }
  31. }
  32.  
  33. task clean(type: Delete) {
  34. delete rootProject.buildDir
  35. }
  36.  
  37. compile 'org.mongodb:stitch:1.0.0-SNAPSHOT'
  38.  
  39. apply plugin: 'com.android.application'
  40.  
  41. android {
  42. compileSdkVersion 23
  43. buildToolsVersion '26.0.2'
  44.  
  45. defaultConfig {
  46. applicationId "com.example.hasslerisaac.ruffy"
  47. minSdkVersion 14
  48. targetSdkVersion 23
  49. versionCode 1
  50. versionName "1.0"
  51. }
  52. buildTypes {
  53. release {
  54. minifyEnabled false
  55. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  56. }
  57. }
  58. }
  59.  
  60. dependencies {
  61. compile fileTree(include: ['*.jar'], dir: 'libs')
  62. testCompile 'junit:junit:4.12'
  63. compile 'com.android.support:appcompat-v7:23.2.0'
  64. compile 'org.mongodb:stitch:1.0.0-SNAPSHOT'
  65. }
Add Comment
Please, Sign In to add comment