Skip to content

Commit 1a0fecd

Browse files
committed
Merge branch 'master' of github.com:NeoTerm/NeoTerm
2 parents 1b82b16 + cdb03dd commit 1a0fecd

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ android {
1616
externalNativeBuild {
1717
cmake {
1818
cppFlags "-std=c++11"
19-
abiFilters 'x86_64', 'arm64-v8a', 'armeabi-v7a'
19+
abiFilters 'x86', 'x86_64', 'arm64-v8a', 'armeabi-v7a'
2020
}
2121
}
2222
sourceSets {

app/src/main/cpp/neoterm.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
#include <sys/ioctl.h>
88
#include <sys/wait.h>
99
#include <termios.h>
10+
#include <unistd.h>
11+
#include <string.h>
1012

1113
#define __neoterm_no_return __attribute__((__noreturn__))
1214

chrome-tabs/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ android {
2222
}
2323

2424
dependencies {
25-
compile 'com.github.michael-rapp:android-util:1.15.0'
25+
api 'com.github.michael-rapp:android-util:1.15.0'
2626
implementation rootProject.ext.deps["annotations"]
2727
implementation rootProject.ext.deps["appcompat-v7"]
2828
testImplementation rootProject.ext.deps["junit"]

0 commit comments

Comments
 (0)