-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathbuild.sbt
More file actions
35 lines (24 loc) · 731 Bytes
/
build.sbt
File metadata and controls
35 lines (24 loc) · 731 Bytes
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
30
31
32
33
34
35
// Include the Android plugin
androidDefaults
// Name of your app
name := "SSH Beam"
// Version of your app
version := "0.3.7"
// Version number of your app
versionCode := 14
// Version of Scala
scalaVersion := "2.10.2"
// Version of the Android platform SDK
platformName := "android-14"
// Add JSch (SSH library)
libraryDependencies += "com.jcraft" % "jsch" % "0.1.50"
// Scaloid
libraryDependencies += "org.scaloid" %% "scaloid" % "2.2-8"
// Support library
libraryDependencies += "com.android.support" % "support-v4" % "13.0.0"
// Preload Scaloid
preloadFilters += filterName("scaloid")
// Proguard options
proguardOptions += "-keep class com.jcraft.jsch.** { *; }"
// Release key alias
keyalias := "fx_applications"