Commit 5ead55d6 authored by Mygod's avatar Mygod

Rename plugin-lib to plugin

parent a03ef5df
......@@ -20,12 +20,12 @@ lazy val commonSettings = Seq(
val supportLibsVersion = "25.1.0"
lazy val root = Project(id = "shadowsocks-android", base = file("."))
.settings(commonSettings)
.aggregate(pluginLib, mobile)
.aggregate(plugin, mobile)
install in Android := (install in (mobile, Android)).value
run in Android := (run in (mobile, Android)).evaluated
lazy val pluginLib = Project(id = "plugin-lib", base = file("plugin-lib"))
lazy val plugin = project
.settings(commonSettings)
.settings(
libraryDependencies ++=
......@@ -43,4 +43,4 @@ lazy val mobile = project
"com.android.support" % "gridlayout-v7" % supportLibsVersion ::
Nil
)
.dependsOn(pluginLib)
.dependsOn(plugin)
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment