Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
madeye committed Aug 15, 2017
1 parent 9e43ffc commit c693f28
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
10 changes: 6 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,14 @@ scalaVersion := "2.11.8"
enablePlugins(AndroidApp)
android.useSupportVectors

resolvers += Resolver.jcenterRepo

name := "kcptun"
organization := "com.github.shadowsocks"
version := "0.0.5"
versionCode := Some(5)
version := "0.0.6"
versionCode := Some(6)

platformTarget := "android-25"
platformTarget := "android-26"

compileOrder := CompileOrder.JavaThenScala
javacOptions ++= "-source" :: "1.7" :: "-target" :: "1.7" :: Nil
Expand All @@ -21,7 +23,7 @@ shrinkResources := true
typedResources := false
resConfigs := Seq("ja", "ko", "ru", "zh-rCN", "zh-rTW")

libraryDependencies += "com.github.shadowsocks" %% "plugin" % "0.0.3"
libraryDependencies += "com.github.shadowsocks" %% "plugin" % "0.0.4"

lazy val goBuild = TaskKey[Unit]("go-build", "Build go and kcptun")
goBuild := {
Expand Down
2 changes: 1 addition & 1 deletion project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
addSbtPlugin("org.scala-android" % "sbt-android" % "1.7.7")
addSbtPlugin("org.scala-android" % "sbt-android" % "1.7.8")

addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.1.10")

Expand Down
2 changes: 1 addition & 1 deletion src/kcptun
Submodule kcptun updated 1 files
+0 −1 client/main.go
2 changes: 1 addition & 1 deletion src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<uses-feature android:name="android.hardware.touchscreen"
android:required="false"/>
<uses-sdk android:minSdkVersion="19"
android:targetSdkVersion="25"/>
android:targetSdkVersion="26"/>
<application android:allowBackup="false"
android:label="kcptun"
android:icon="@mipmap/ic_launcher">
Expand Down

0 comments on commit c693f28

Please sign in to comment.