1
0
mirror of https://github.com/flutter/samples.git synced 2025-11-14 11:28:36 +00:00

infinite_list: Adjust lint rules and rebuild Android, iOS and Web runners (#823)

This commit is contained in:
Brett Morgan
2021-06-07 12:37:13 +10:00
committed by GitHub
parent 936d1fdaae
commit 35f43dae45
22 changed files with 156 additions and 89 deletions

View File

@@ -26,21 +26,17 @@ apply plugin: 'kotlin-android'
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
android {
compileSdkVersion 29
compileSdkVersion 30
sourceSets {
main.java.srcDirs += 'src/main/kotlin'
}
lintOptions {
disable 'InvalidPackage'
}
defaultConfig {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId "dev.flutter.infinitelist"
applicationId "dev.flutter.infinite_list"
minSdkVersion 16
targetSdkVersion 29
targetSdkVersion 30
versionCode flutterVersionCode.toInteger()
versionName flutterVersionName
}