| group 'io.flutter.plugins.androidalarmmanager' |
| version '1.0-SNAPSHOT' |
| def args = ["-Xlint:deprecation","-Xlint:unchecked","-Werror"] |
| |
| buildscript { |
| repositories { |
| google() |
| mavenCentral() |
| } |
| |
| dependencies { |
| classpath 'com.android.tools.build:gradle:3.3.0' |
| } |
| } |
| |
| rootProject.allprojects { |
| repositories { |
| google() |
| mavenCentral() |
| } |
| } |
| |
| project.getTasks().withType(JavaCompile){ |
| options.compilerArgs.addAll(args) |
| } |
| |
| apply plugin: 'com.android.library' |
| |
| android { |
| compileSdkVersion 29 |
| defaultConfig { |
| minSdkVersion 16 |
| testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" |
| } |
| lintOptions { |
| disable 'InvalidPackage' |
| disable 'GradleDependency' |
| baseline file("lint-baseline.xml") |
| } |
| |
| |
| testOptions { |
| unitTests.includeAndroidResources = true |
| unitTests.returnDefaultValues = true |
| unitTests.all { |
| testLogging { |
| events "passed", "skipped", "failed", "standardOut", "standardError" |
| outputs.upToDateWhen {false} |
| showStandardStreams = true |
| } |
| } |
| } |
| compileOptions { |
| sourceCompatibility JavaVersion.VERSION_1_8 |
| targetCompatibility JavaVersion.VERSION_1_8 |
| } |
| } |
| |
| dependencies { |
| implementation 'androidx.appcompat:appcompat:1.0.0' |
| api 'androidx.core:core:1.0.1' |
| } |