mirror of https://github.com/flutter/samples.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
72 lines
2.4 KiB
72 lines
2.4 KiB
3 years ago
|
def localProperties = new Properties()
|
||
|
def localPropertiesFile = rootProject.file('local.properties')
|
||
|
if (localPropertiesFile.exists()) {
|
||
|
localPropertiesFile.withReader('UTF-8') { reader ->
|
||
|
localProperties.load(reader)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
def flutterRoot = localProperties.getProperty('flutter.sdk')
|
||
|
if (flutterRoot == null) {
|
||
|
throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.")
|
||
|
}
|
||
|
|
||
|
def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
|
||
|
if (flutterVersionCode == null) {
|
||
|
flutterVersionCode = '1'
|
||
|
}
|
||
|
|
||
|
def flutterVersionName = localProperties.getProperty('flutter.versionName')
|
||
|
if (flutterVersionName == null) {
|
||
|
flutterVersionName = '1.0'
|
||
|
}
|
||
|
|
||
|
apply plugin: 'com.android.application'
|
||
|
apply plugin: 'kotlin-android'
|
||
|
apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
|
||
|
|
||
|
android {
|
||
|
compileSdkVersion 31
|
||
|
|
||
|
sourceSets {
|
||
|
main.java.srcDirs += 'src/main/kotlin'
|
||
|
}
|
||
|
|
||
|
defaultConfig {
|
||
|
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
|
||
|
applicationId "com.example.splash_screen_sample"
|
||
|
minSdkVersion 21
|
||
|
targetSdkVersion 30
|
||
|
versionCode flutterVersionCode.toInteger()
|
||
|
versionName flutterVersionName
|
||
|
}
|
||
|
|
||
|
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 {
|
||
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
|
||
|
implementation "androidx.core:core-splashscreen:1.0.0-alpha02"
|
||
|
implementation "androidx.core:core:1.5.0-alpha05"
|
||
|
implementation "androidx.core:core-ktx:1.6.0"
|
||
|
implementation 'androidx.constraintlayout:constraintlayout:1.1.2'
|
||
|
implementation "androidx.core:core-animation:1.0.0-alpha02"
|
||
|
implementation "androidx.interpolator:interpolator:1.0.0"
|
||
|
def appcompat_version = "1.3.1"
|
||
|
|
||
|
implementation "androidx.appcompat:appcompat:$appcompat_version"
|
||
|
// For loading and tinting drawables on older versions of the platform
|
||
|
implementation "androidx.appcompat:appcompat-resources:$appcompat_version"
|
||
|
implementation "androidx.constraintlayout:constraintlayout:2.1.0"
|
||
|
}
|