blob: da7e3e8bdcc3ef55914c0097b0e55d8c9f4f8cad [file]
plugins {
id 'com.android.library'
}
android {
namespace 'org.aomedia.avif.android'
compileSdk 31
ndkVersion "25.2.9519653"
defaultConfig {
minSdk 21
targetSdk 31
versionCode 1
versionName "1.0"
testInstrumentationRunner 'androidx.test.runner.AndroidJUnitRunner'
externalNativeBuild {
cmake {
if (project.hasProperty('android.extraCMakeFlags')) {
def extraCMakeFlags = project.property('android.extraCMakeFlags')
if (extraCMakeFlags != null && !extraCMakeFlags.toString().isEmpty()) {
arguments extraCMakeFlags.toString()
}
}
}
}
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
externalNativeBuild {
cmake {
version '3.22.1'
path 'src/main/jni/CMakeLists.txt'
}
}
}
dependencies {
implementation "androidx.annotation:annotation:1.6.0"
androidTestImplementation 'junit:junit:4.+'
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
androidTestImplementation 'com.google.truth:truth:1.1.3'
androidTestImplementation 'androidx.test:runner:1.5.2'
}