// 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.add2app" compileSdk = 36 compileOptions { sourceCompatibility JavaVersion.VERSION_17 targetCompatibility JavaVersion.VERSION_17 } defaultConfig { applicationId "io.flutter.add2app" minSdk = 24 targetSdk = 36 versionCode 1 versionName "1.0" } } dependencies { implementation project(':flutter') implementation 'androidx.appcompat:appcompat:1.7.0' }