|  | group 'io.flutter.plugins.flutter_plugin_android_lifecycle' | 
|  | version '1.0' | 
|  |  | 
|  | buildscript { | 
|  | repositories { | 
|  | google() | 
|  | jcenter() | 
|  | } | 
|  |  | 
|  | dependencies { | 
|  | classpath 'com.android.tools.build:gradle:3.5.0' | 
|  | } | 
|  | } | 
|  |  | 
|  | rootProject.allprojects { | 
|  | repositories { | 
|  | google() | 
|  | jcenter() | 
|  | } | 
|  | } | 
|  |  | 
|  | apply plugin: 'com.android.library' | 
|  |  | 
|  | android { | 
|  | compileSdkVersion 28 | 
|  |  | 
|  | defaultConfig { | 
|  | minSdkVersion 16 | 
|  | testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" | 
|  | } | 
|  | lintOptions { | 
|  | disable 'InvalidPackage' | 
|  | } | 
|  |  | 
|  | dependencies { | 
|  | implementation "androidx.annotation:annotation:1.1.0" | 
|  | } | 
|  | } | 
|  |  | 
|  | dependencies { | 
|  | testImplementation 'junit:junit:4.12' | 
|  | testImplementation 'org.mockito:mockito-core:1.10.19' | 
|  | } | 
|  |  |