-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
29 lines (28 loc) · 937 Bytes
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
lazy val gallery = project.in( file( "." ) )
.enablePlugins( AndroidLib )
.settings( Settings.common )
.settings(
libraryDependencies ++=
Dependencies.easyImage ::
Dependencies.flexbox ::
Dependencies.glide ::
Dependencies.photoView ::
Dependencies.supportAppcompat ::
Nil,
name := "gallery",
publishArtifact in ( Compile, packageDoc ) := false,
renderVectorDrawables := true,
resolvers ++=
( "Google Maven" at "https://maven.google.com" ) ::
( "jitpack" at "https://jitpack.io" ) ::
Resolver.jcenterRepo ::
Nil
)
lazy val sample = project
.enablePlugins( AndroidApp )
.settings( Settings.common )
.settings(
organization := organization.value + ".gallery.sample",
run := ( run in Android ).evaluated
)
.dependsOn( gallery )