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' } } namespace 'de.timfreiheit.mathjax.android' } dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) implementation 'androidx.appcompat:appcompat:1.6.0' }