| apply plugin: 'com.android.application' |
| apply plugin: 'flutter' |
| |
| android { |
| compileSdkVersion 25 |
| buildToolsVersion '24.0.2' |
| |
| lintOptions { |
| disable 'InvalidPackage' |
| } |
| |
| defaultConfig { |
| testInstrumentationRunner "android.support.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 { |
| androidTestCompile 'com.android.support:support-annotations:25.0.0' |
| androidTestCompile 'com.android.support.test:runner:0.5' |
| androidTestCompile 'com.android.support.test:rules:0.5' |
| } |