32 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Groovy
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			1.0 KiB
		
	
	
	
		
			Groovy
		
	
	
	
	
	
| apply plugin: 'com.android.application'
 | |
| 
 | |
| android {
 | |
|     compileSdkVersion 29
 | |
|     buildToolsVersion '29.0.2'
 | |
|     defaultConfig {
 | |
|         applicationId "com.github.penfeizhou.doric"
 | |
|         minSdkVersion 16
 | |
|         targetSdkVersion 29
 | |
|         versionCode 1
 | |
|         versionName "1.0"
 | |
|         testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
 | |
|     }
 | |
|     buildTypes {
 | |
|         release {
 | |
|             minifyEnabled false
 | |
|             proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
 | |
|         }
 | |
|     }
 | |
| }
 | |
| 
 | |
| dependencies {
 | |
|     implementation fileTree(dir: 'libs', include: ['*.jar'])
 | |
|     implementation 'androidx.appcompat:appcompat:1.1.0'
 | |
|     implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
 | |
|     implementation project(':doric')
 | |
|     implementation 'com.github.bumptech.glide:glide:4.10.0'
 | |
|     implementation 'com.github.bumptech.glide:annotations:4.10.0'
 | |
|     implementation 'com.github.penfeizhou.android.animation:glide-plugin:1.2.0'
 | |
|     annotationProcessor 'com.github.bumptech.glide:compiler:4.10.0'
 | |
| }
 |