termux / termux-float

Termux add-on app to show the terminal in a floating terminal window.
https://f-droid.org/en/packages/com.termux.window
Other
465 stars 77 forks source link

Is libtermux.so neccessary? #18

Closed CrimsonFork closed 5 years ago

CrimsonFork commented 5 years ago

I've noticed that libtermux.so is located in both Termux and Termux:Float. Is thus really neccessary?

Sent from my Moto E (4) Plus using FastHub-Libre

ghost commented 5 years ago

Necessary. Termux:Float isn't standalone. There is "termux-view" dependency (see app/build.gradle):

dependencies {
    implementation 'androidx.annotation:annotation:1.0.1'
    implementation 'com.termux:terminal-view:0.50'

    testImplementation 'junit:junit:4.12'
}

which depends on "terminal-emulator". It uses JNI so libtermux.so is required.

Sources: