1. Added API 15 support (Android 4.0.3)

This commit is contained in:
vadym 2020-08-03 06:06:06 -07:00
parent e732c1bc2d
commit 3c9683c859

View File

@ -6,10 +6,10 @@ android {
compileSdkVersion 29
defaultConfig {
applicationId "io.github.chronosx88.yggdrasil"
minSdkVersion 21
minSdkVersion 15
targetSdkVersion 29
versionCode 3
versionName "1.3"
versionCode 4
versionName "1.4"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
project.ext.set("archivesBaseName", project.getParent().name+"-"+versionName)
}
@ -38,17 +38,6 @@ android {
}
}
task ndkBuild(type: Exec) {
def rootDir = project.rootDir
workingDir = new File(rootDir,"yggdrasil")
commandLine 'make'
}
gradle.projectsEvaluated {
tasks.compileDebugKotlin.dependsOn(ndkBuild)
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation project(path: ':yggdrasil')