Skip to content
This repository has been archived by the owner on Nov 8, 2022. It is now read-only.
/ mobile-shared Public archive

Shared open source code for Instructure's mobile apps published as artifacts.

License

Notifications You must be signed in to change notification settings

instructure/mobile-shared

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

54 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Mobile Shared

Shared open source code for Instructure's mobile apps published as artifacts.

Maven

The espresso lib is published on bintray.

  • snapshot is released after every push to master
  • tagged versions are automatically published as stable releases
repositories {
    maven {
        url  "https://dl.bintray.com/instructure/maven" 
    }
}
    
dependencies {
    compile("com.github.instructure:espresso:snapshot") // snapshot release
    compile("com.github.instructure:espresso:1.0.0") // stable release
}