// Copyright 2014 The Flutter Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. apply plugin: 'com.android.application' android { namespace = "io.flutter.addtoapp" compileSdk = 36 compileOptions { sourceCompatibility JavaVersion.VERSION_17 targetCompatibility JavaVersion.VERSION_17 } defaultConfig { applicationId = "io.flutter.addtoapp" minSdk = 24 targetSdk = 36 versionCode = 1 versionName = "1.0" } // Test build types. buildTypes { staging { initWith debug // This is required because the `:flutter` project doesn't define this custom build type. // Without the fallback, the Android plugin will make Gradle exit with the following error: // `Unable to find a matching variant of project :flutter` matchingFallbacks += 'debug' } prod { initWith release matchingFallbacks += 'release' } } // Test flavors. flavorDimensions += "version" productFlavors { demo { dimension "version" } } } dependencies { implementation project(':flutter') }