27 lines
		
	
	
		
			549 B
		
	
	
	
		
			Groovy
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			549 B
		
	
	
	
		
			Groovy
		
	
	
	
	
	
| apply plugin: 'com.android.library'
 | |
| 
 | |
| android {
 | |
| 
 | |
|     compileSdkVersion config['compile-sdk']
 | |
|     buildToolsVersion config['build-tools']
 | |
| 
 | |
|     defaultConfig {
 | |
|         minSdkVersion config['min-sdk']
 | |
|         targetSdkVersion config['target-sdk']
 | |
|         versionCode 1
 | |
|         versionName version
 | |
|     }
 | |
| }
 | |
| 
 | |
| dependencies {
 | |
| 
 | |
|     api project(':markwon-core')
 | |
|     implementation project(path: ':markwon-round-textview')
 | |
|     implementation project(path: ':markwon-iframe-ext')
 | |
| 
 | |
|     deps.with {
 | |
|         api it['x-recycler-view']
 | |
|     }
 | |
| }
 | |
| 
 | |
| registerArtifact(this) | 
