| def localProperties = new Properties() |
| def localPropertiesFile = rootProject.file('local.properties') |
| if (localPropertiesFile.exists()) { |
| localPropertiesFile.withReader('UTF-8') { reader -> |
| localProperties.load(reader) |
| } |
| } |
| |
| def flutterRoot = localProperties.getProperty('flutter.sdk') |
| if (flutterRoot == null) { |
| throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.") |
| } |
| |
| def flutterVersionCode = localProperties.getProperty('flutter.versionCode') |
| if (flutterVersionCode == null) { |
| flutterVersionCode = '1' |
| } |
| |
| def flutterVersionName = localProperties.getProperty('flutter.versionName') |
| if (flutterVersionName == null) { |
| flutterVersionName = '1.0' |
| } |
| |
| apply plugin: 'com.android.application' |
| apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle" |
| |
| android { |
| compileSdkVersion 31 |
| |
| lintOptions { |
| disable 'InvalidPackage' |
| } |
| |
| defaultConfig { |
| // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). |
| applicationId "com.example.espresso_example" |
| minSdkVersion 16 |
| targetSdkVersion 29 |
| versionCode flutterVersionCode.toInteger() |
| versionName flutterVersionName |
| testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" |
| } |
| |
| buildTypes { |
| release { |
| // TODO: Add your own signing config for the release build. |
| // Signing with the debug keys for now, so `flutter run --release` works. |
| signingConfig signingConfigs.debug |
| } |
| } |
| } |
| |
| flutter { |
| source '../..' |
| } |
| |
| dependencies { |
| testImplementation 'junit:junit:4.13.2' |
| testImplementation "com.google.truth:truth:1.0" |
| androidTestImplementation 'androidx.test:runner:1.1.1' |
| androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.1' |
| |
| // Core library |
| api 'androidx.test:core:1.2.0' |
| |
| // AndroidJUnitRunner and JUnit Rules |
| androidTestImplementation 'androidx.test:runner:1.1.0' |
| androidTestImplementation 'androidx.test:rules:1.1.0' |
| |
| // Assertions |
| androidTestImplementation 'androidx.test.ext:junit:1.0.0' |
| androidTestImplementation 'androidx.test.ext:truth:1.0.0' |
| androidTestImplementation 'com.google.truth:truth:0.42' |
| |
| // Espresso dependencies |
| androidTestImplementation 'androidx.test.espresso:espresso-core:3.1.0' |
| androidTestImplementation 'androidx.test.espresso:espresso-contrib:3.1.0' |
| androidTestImplementation 'androidx.test.espresso:espresso-intents:3.1.0' |
| androidTestImplementation 'androidx.test.espresso:espresso-accessibility:3.1.0' |
| androidTestImplementation 'androidx.test.espresso:espresso-web:3.1.0' |
| androidTestImplementation 'androidx.test.espresso.idling:idling-concurrent:3.1.0' |
| |
| // The following Espresso dependency can be either "implementation" |
| // or "androidTestImplementation", depending on whether you want the |
| // dependency to appear on your APK's compile classpath or the test APK |
| // classpath. |
| androidTestImplementation 'androidx.test.espresso:espresso-idling-resource:3.1.0' |
| } |