31 lines
		
	
	
		
			773 B
		
	
	
	
		
			Groovy
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			773 B
		
	
	
	
		
			Groovy
		
	
	
	
	
	
| apply plugin: 'com.android.library'
 | |
| apply plugin: 'maven-publish'
 | |
| apply from: '../.winboll/winboll_lib_build.gradle'
 | |
| apply from: '../.winboll/winboll_lint_build.gradle'
 | |
| 
 | |
| android {
 | |
|     
 | |
|     compileSdkVersion 32
 | |
|     buildToolsVersion "32.0.0"
 | |
| 
 | |
|     defaultConfig {
 | |
|         minSdkVersion 24
 | |
|         targetSdkVersion 30
 | |
|     }
 | |
|     buildTypes {
 | |
|         release {
 | |
|             minifyEnabled false
 | |
|             proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
 | |
|         }
 | |
|     }
 | |
| }
 | |
| 
 | |
| dependencies {
 | |
|     api fileTree(dir: 'libs', include: ['*.jar'])
 | |
|     // 网络连接类库
 | |
|     api 'com.squareup.okhttp3:okhttp:4.4.1'
 | |
|     // https://mvnrepository.com/artifact/com.fasterxml.jackson.core/jackson-databind
 | |
|     
 | |
|     api 'com.google.code.gson:gson:2.10.1'
 | |
| }
 | 
