mirror of
				https://codeberg.org/tom79/Fedilab.git
				synced 2025-10-20 11:20:16 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			32 lines
		
	
	
	
		
			888 B
		
	
	
	
		
			Groovy
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
	
		
			888 B
		
	
	
	
		
			Groovy
		
	
	
	
	
	
| apply plugin: 'com.android.library'
 | |
| 
 | |
| group = 'com.github.stom79'
 | |
| android {
 | |
|     compileSdkVersion 31
 | |
| 
 | |
| 
 | |
|     defaultConfig {
 | |
|         minSdkVersion 15
 | |
|         targetSdkVersion 31
 | |
|     }
 | |
|     buildTypes {
 | |
|         release {
 | |
|             minifyEnabled false
 | |
|             proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
 | |
|             buildConfigField("String","VERSION_NAME","\"${defaultConfig.versionName}\"")
 | |
|         }
 | |
|         debug{
 | |
|             buildConfigField("String","VERSION_NAME","\"${defaultConfig.versionName}\"")
 | |
|         }
 | |
|     }
 | |
|     compileOptions {
 | |
|         sourceCompatibility JavaVersion.VERSION_1_8
 | |
|         targetCompatibility JavaVersion.VERSION_1_8
 | |
|     }
 | |
| }
 | |
| 
 | |
| dependencies {
 | |
|     implementation fileTree(dir: 'libs', include: ['*.jar'])
 | |
|     implementation 'androidx.legacy:legacy-support-v4:1.0.0'
 | |
|     implementation "com.google.code.gson:gson:2.8.6"
 | |
| }
 |