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

30 lines
569 B
Groovy
Raw Normal View History

buildscript {
repositories {
jcenter()
}
}
apply plugin: 'com.android.library'
dependencies {
2019-09-20 17:54:28 +02:00
implementation 'androidx.legacy:legacy-support-v13:1.0.0'
}
android {
compileSdkVersion 28
2018-10-20 22:22:23 +02:00
buildToolsVersion '28.0.3'
defaultConfig {
minSdkVersion 18
targetSdkVersion 28
}
buildTypes {
release {
zipAlignEnabled true
2018-01-19 23:13:04 +01:00
minifyEnabled true
shrinkResources false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
2018-01-19 23:13:04 +01:00
}