Files
packages.dart/packages/flutter_vibrate/android/build.gradle
T
2026-01-13 22:03:47 -08:00

44 lines
809 B
Groovy

group 'flutter.plugins.vibrate.vibrate'
version '1.0-SNAPSHOT'
buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.0.2'
}
}
rootProject.allprojects {
repositories {
google()
mavenCentral()
}
}
apply plugin: 'com.android.library'
android {
namespace "flutter.plugins.vibrate"
compileSdkVersion 30
defaultConfig {
minSdkVersion 16
targetSdkVersion 28
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
lintOptions {
disable 'InvalidPackage'
}
if (project.android.hasProperty("namespace")) {
namespace 'flutter.plugins.vibrate'
}
}