[-] Remove JNI libraries

This commit is contained in:
Azalea Gui
2023-01-29 15:14:50 -05:00
parent f332a7a578
commit 94f422df52
10 changed files with 0 additions and 33 deletions
-21
View File
@@ -7,22 +7,12 @@ android {
namespace 'org.hydev.wearsync'
compileSdk 33
sourceSets {
main {
jniLibs.srcDirs = ['libs']
}
}
defaultConfig {
applicationId "org.hydev.wearsync"
minSdk 26
targetSdk 33
versionCode 1
versionName "1.0"
ndk {
abiFilters "aarch64", "armeabi", "arm64", "x86", "x86_64"
}
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
@@ -67,17 +57,6 @@ dependencies {
// Database library
implementation "com.influxdb:influxdb-client-kotlin:6.3.0"
implementation "org.jetbrains.exposed:exposed-core:0.40.1"
implementation "org.jetbrains.exposed:exposed-dao:0.40.1"
implementation "org.jetbrains.exposed:exposed-jdbc:0.40.1"
// !IMPORTANT! Make sure to update native so when updating sqlite-jdbc
// Copy from sqlite-jdbc-3.40.0.0.jar!/org/sqlite/native/Linux-Android to app/libs
// ln -s arm armeabi
// ln -s arm armeabi-v7a
// ln -s aarch64 arm64
// ln -s aarch64 arm64-v8a
implementation 'org.xerial:sqlite-jdbc:3.40.0.0'
// Root library
implementation "com.github.topjohnwu.libsu:core:5.0.4"
Binary file not shown.
Binary file not shown.
-1
View File
@@ -1 +0,0 @@
aarch64
-1
View File
@@ -1 +0,0 @@
aarch64
-1
View File
@@ -1 +0,0 @@
arm
-1
View File
@@ -1 +0,0 @@
arm
Binary file not shown.
Binary file not shown.
@@ -16,14 +16,6 @@ import org.jetbrains.exposed.sql.*
import java.time.Instant
import java.util.*
object SleepSegment : Table("sleep_segment") {
val key = text("key")
val sid = text("sid")
val time = integer("time")
val isComplete = integer("isComplete")
val value = text("value")
}
@Measurement(name = "mi-sleep-day")
class SleepNight : SleepDaytime()
{