Fix add_to_app sample

pull/2768/head
Matt Boetger 5 days ago
parent 3c112d0efc
commit 3df3bfa526

@ -12,7 +12,7 @@ android {
defaultConfig {
applicationId "dev.flutter.example.androidView"
minSdkVersion 21
minSdkVersion 24
targetSdk 36
versionCode 1
versionName "1.0"
@ -55,4 +55,4 @@ dependencies {
testImplementation 'junit:junit:4.+'
androidTestImplementation 'androidx.test.ext:junit:1.2.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.6.1'
}
}

@ -6,7 +6,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.9.0'
classpath 'com.android.tools.build:gradle:8.9.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
// NOTE: Do not place your application dependencies here; they belong
@ -23,4 +23,4 @@ allprojects {
tasks.register('clean', Delete) {
delete rootProject.buildDir
}
}

@ -3,5 +3,5 @@ include ':app'
setBinding(new Binding([gradle: this]))
evaluate(new File(
settingsDir.parentFile,
'flutter_module_using_plugin/.android/include_flutter.groovy'
'flutter_module_using_plugin_android_view/.android/include_flutter.groovy'
))

Loading…
Cancel
Save