This repository has been archived on 2025-01-10. You can view files and clone it, but cannot push or open issues or pull requests.
PiratX-Archive/libs/android-transcoder/build.gradle
2019-09-20 17:54:28 +02:00

30 lines
No EOL
569 B
Groovy

buildscript {
repositories {
jcenter()
}
}
apply plugin: 'com.android.library'
dependencies {
implementation 'androidx.legacy:legacy-support-v13:1.0.0'
}
android {
compileSdkVersion 28
buildToolsVersion '28.0.3'
defaultConfig {
minSdkVersion 18
targetSdkVersion 28
}
buildTypes {
release {
zipAlignEnabled true
minifyEnabled true
shrinkResources false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}