28 lines
		
	
	
		
			556 B
		
	
	
	
		
			Groovy
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			556 B
		
	
	
	
		
			Groovy
		
	
	
	
	
	
apply plugin: 'com.android.library'
 | 
						|
 | 
						|
android {
 | 
						|
    compileSdkVersion 26
 | 
						|
    buildToolsVersion '28.0.3'
 | 
						|
 | 
						|
    defaultConfig {
 | 
						|
        minSdkVersion 15
 | 
						|
        targetSdkVersion 15
 | 
						|
    }
 | 
						|
 | 
						|
    buildTypes {
 | 
						|
        release {
 | 
						|
            minifyEnabled false
 | 
						|
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-project.txt'
 | 
						|
            debuggable false
 | 
						|
        }
 | 
						|
    }
 | 
						|
    compileOptions {
 | 
						|
        targetCompatibility 1.8
 | 
						|
        sourceCompatibility 1.8
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
dependencies {
 | 
						|
    compile 'com.android.support:support-v4:26.1.0'
 | 
						|
}
 |