Skip to content

Commit

Permalink
Restructure library modules
Browse files Browse the repository at this point in the history
terminal/ -> terminal-emulator/
view/ -> terminal-view/
  • Loading branch information
fornwall committed Apr 2, 2017
1 parent 5cd705d commit 7d3a988
Show file tree
Hide file tree
Showing 54 changed files with 15 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -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/).
4 changes: 0 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion float/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ android {

dependencies {
compile 'com.android.support:support-annotations:25.3.1'
compile project(":view")
compile project(":terminal-view")
}

defaultConfig {
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
@@ -1 +1 @@
include ':app', ':terminal', ':view', ':float'
include ':app', ':terminal-emulator', ':terminal-view', ':float'
6 changes: 6 additions & 0 deletions terminal/build.gradle → terminal-emulator/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,12 @@ android {
}
}

tasks.withType(Test) {
testLogging {
events "started", "passed", "skipped", "failed"
}
}

dependencies {
testCompile 'junit:junit:4.12'
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion view/build.gradle → terminal-view/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ android {

dependencies {
compile 'com.android.support:support-annotations:25.3.1'
compile project(":terminal")
compile project(":terminal-emulator")
}

defaultConfig {
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 7d3a988

Please sign in to comment.