Merge pull request #31 from akram02/master

change compile to api
This commit is contained in:
Kiva 2018-11-08 12:20:10 +08:00 committed by GitHub
commit cdb03ddbc5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 2 deletions

View File

@ -16,7 +16,7 @@ android {
externalNativeBuild {
cmake {
cppFlags "-std=c++11"
abiFilters 'x86_64', 'arm64-v8a', 'armeabi-v7a'
abiFilters 'x86', 'x86_64', 'arm64-v8a', 'armeabi-v7a'
}
}
sourceSets {

View File

@ -7,6 +7,8 @@
#include <sys/ioctl.h>
#include <sys/wait.h>
#include <termios.h>
#include <unistd.h>
#include <string.h>
#define __neoterm_no_return __attribute__((__noreturn__))

View File

@ -22,7 +22,7 @@ android {
}
dependencies {
compile 'com.github.michael-rapp:android-util:1.15.0'
api 'com.github.michael-rapp:android-util:1.15.0'
implementation rootProject.ext.deps["annotations"]
implementation rootProject.ext.deps["appcompat-v7"]
testImplementation rootProject.ext.deps["junit"]