fedilab-Android-App/mathjaxandroid/build.gradle

24 lines
544 B
Groovy
Raw Normal View History

2023-01-16 13:56:25 +01:00
apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
android {
compileSdkVersion 33
defaultConfig {
minSdkVersion 8
targetSdkVersion 33
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
2023-12-12 15:47:15 +01:00
namespace 'de.timfreiheit.mathjax.android'
2023-01-16 13:56:25 +01:00
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.6.0'
}