123456789101112131415161718192021222324252627282930313233343536373839404142 |
- group 'flutter.plugins.vibrate.vibrate'
- version '1.0-SNAPSHOT'
-
- buildscript {
- repositories {
- jcenter()
- maven {
- url "https://maven.google.com"
- }
- }
-
- dependencies {
- classpath 'com.android.tools.build:gradle:2.3.3'
- }
- }
-
- rootProject.allprojects {
- repositories {
- jcenter()
- maven {
- url "https://maven.google.com"
- }
- }
- }
-
- apply plugin: 'com.android.library'
-
- android {
- compileSdkVersion 25
- buildToolsVersion '25.0.3'
-
- defaultConfig {
- minSdkVersion 16
- targetSdkVersion 25
- versionCode 1
- versionName "1.0"
- testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
- }
- lintOptions {
- disable 'InvalidPackage'
- }
- }
|