Restructure library modules

terminal/ -> terminal-emulator/
view/ -> terminal-view/
This commit is contained in:
Fredrik Fornwall 2017-04-02 14:21:36 +02:00
parent 5cd705d6d1
commit 7d3a988d2f
54 changed files with 15 additions and 10 deletions

View File

@ -11,8 +11,8 @@
<option value="$PROJECT_DIR$" />
<option value="$PROJECT_DIR$/app" />
<option value="$PROJECT_DIR$/float" />
<option value="$PROJECT_DIR$/terminal" />
<option value="$PROJECT_DIR$/view" />
<option value="$PROJECT_DIR$/terminal-emulator" />
<option value="$PROJECT_DIR$/terminal-view" />
</set>
</option>
<option name="resolveModulePerSourceSet" value="false" />

3
LICENSE.md Normal file
View File

@ -0,0 +1,3 @@
Released under [the GPLv3 license](https://www.gnu.org/licenses/gpl.html).
Contains code from `Terminal Emulator for Android` by which is released under [the Apache License 2.0](https://www.apache.org/licenses/).

View File

@ -12,10 +12,6 @@ Termux app
Note that this repository is for the app itself (the user interface and the terminal emulation). For the packages installable inside the app, see [termux/termux-packages](https://github.com/termux/termux-packages)
License
=======
Released under [the GPLv3 license](https://www.gnu.org/licenses/gpl.html). Contains code from `Terminal Emulator for Android` which is released under [the Apache License 2.0](https://www.apache.org/licenses/).
Terminal resources
==================
* [XTerm control sequences](http://invisible-island.net/xterm/ctlseqs/ctlseqs.html)

View File

@ -7,7 +7,7 @@ android {
dependencies {
compile 'com.android.support:support-annotations:25.3.1'
compile "com.android.support:support-v4:25.3.1"
compile project(":view")
compile project(":terminal-view")
}
defaultConfig {

View File

@ -6,7 +6,7 @@ android {
dependencies {
compile 'com.android.support:support-annotations:25.3.1'
compile project(":view")
compile project(":terminal-view")
}
defaultConfig {

View File

@ -1 +1 @@
include ':app', ':terminal', ':view', ':float'
include ':app', ':terminal-emulator', ':terminal-view', ':float'

View File

@ -33,6 +33,12 @@ android {
}
}
tasks.withType(Test) {
testLogging {
events "started", "passed", "skipped", "failed"
}
}
dependencies {
testCompile 'junit:junit:4.12'
}

View File

@ -6,7 +6,7 @@ android {
dependencies {
compile 'com.android.support:support-annotations:25.3.1'
compile project(":terminal")
compile project(":terminal-emulator")
}
defaultConfig {