| group 'io.flutter.plugins.urllauncher' |
| version '1.0-SNAPSHOT' |
| |
| buildscript { |
| repositories { |
| google() |
| mavenCentral() |
| } |
| |
| dependencies { |
| classpath 'com.android.tools.build:gradle:4.2.0' |
| } |
| } |
| |
| rootProject.allprojects { |
| repositories { |
| google() |
| mavenCentral() |
| } |
| } |
| |
| apply plugin: 'com.android.library' |
| |
| android { |
| compileSdkVersion 33 |
| |
| defaultConfig { |
| minSdkVersion 16 |
| testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" |
| } |
| lintOptions { |
| disable 'AndroidGradlePluginVersion', 'InvalidPackage', 'GradleDependency' |
| } |
| |
| |
| testOptions { |
| unitTests.includeAndroidResources = true |
| unitTests.returnDefaultValues = true |
| unitTests.all { |
| testLogging { |
| events "passed", "skipped", "failed", "standardOut", "standardError" |
| outputs.upToDateWhen {false} |
| showStandardStreams = true |
| } |
| } |
| } |
| } |
| |
| dependencies { |
| compileOnly 'androidx.annotation:annotation:1.2.0' |
| testImplementation 'junit:junit:4.13.2' |
| testImplementation 'org.mockito:mockito-core:5.1.1' |
| testImplementation 'androidx.test:core:1.0.0' |
| testImplementation 'org.robolectric:robolectric:4.4.1' |
| } |