mirror of
				https://codeberg.org/tom79/Fedilab.git
				synced 2025-10-20 11:20:16 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
	
		
			545 B
		
	
	
	
		
			Groovy
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
	
		
			545 B
		
	
	
	
		
			Groovy
		
	
	
	
	
	
| apply plugin: 'com.android.library'
 | |
| apply plugin: 'kotlin-android'
 | |
| android {
 | |
|     compileSdkVersion 35
 | |
| 
 | |
|     defaultConfig {
 | |
|         minSdkVersion 21
 | |
|         targetSdkVersion 34
 | |
|     }
 | |
|     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.7.0'
 | |
| }
 | |
| 
 |