35 lines
		
	
	
		
			577 B
		
	
	
	
		
			Groovy
		
	
	
		
		
			
		
	
	
			35 lines
		
	
	
		
			577 B
		
	
	
	
		
			Groovy
		
	
	
| 
								 | 
							
								group 'com.benjaminabel.vibration'
							 | 
						||
| 
								 | 
							
								version '1.0-SNAPSHOT'
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								buildscript {
							 | 
						||
| 
								 | 
							
								    repositories {
							 | 
						||
| 
								 | 
							
								        google()
							 | 
						||
| 
								 | 
							
								        mavenCentral()
							 | 
						||
| 
								 | 
							
								    }
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    dependencies {
							 | 
						||
| 
								 | 
							
								        classpath 'com.android.tools.build:gradle:3.5.0'
							 | 
						||
| 
								 | 
							
								    }
							 | 
						||
| 
								 | 
							
								}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								rootProject.allprojects {
							 | 
						||
| 
								 | 
							
								    repositories {
							 | 
						||
| 
								 | 
							
								        google()
							 | 
						||
| 
								 | 
							
								        mavenCentral()
							 | 
						||
| 
								 | 
							
								    }
							 | 
						||
| 
								 | 
							
								}
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								apply plugin: 'com.android.library'
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								android {
							 | 
						||
| 
								 | 
							
								    compileSdkVersion 28
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								    defaultConfig {
							 | 
						||
| 
								 | 
							
								        minSdkVersion 16
							 | 
						||
| 
								 | 
							
								        testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
							 | 
						||
| 
								 | 
							
								    }
							 | 
						||
| 
								 | 
							
								    lintOptions {
							 | 
						||
| 
								 | 
							
								        disable 'InvalidPackage'
							 | 
						||
| 
								 | 
							
								    }
							 | 
						||
| 
								 | 
							
								}
							 |