Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
 
 
 
 
 
 

49 рядки
1.5 KiB

  1. plugins {
  2. id "com.android.application"
  3. // START: FlutterFire Configuration
  4. id 'com.google.gms.google-services'
  5. // END: FlutterFire Configuration
  6. id "kotlin-android"
  7. // The Flutter Gradle Plugin must be applied after the Android and Kotlin Gradle plugins.
  8. id "dev.flutter.flutter-gradle-plugin"
  9. }
  10. android {
  11. namespace = "com.example.qadirneyriz"
  12. compileSdk = flutter.compileSdkVersion
  13. ndkVersion = flutter.ndkVersion
  14. compileOptions {
  15. sourceCompatibility = JavaVersion.VERSION_1_8
  16. targetCompatibility = JavaVersion.VERSION_1_8
  17. }
  18. kotlinOptions {
  19. jvmTarget = JavaVersion.VERSION_1_8
  20. }
  21. defaultConfig {
  22. // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
  23. applicationId = "com.example.qadirneyriz"
  24. // You can update the following values to match your application needs.
  25. // For more information, see: https://flutter.dev/to/review-gradle-config.
  26. minSdk = flutter.minSdkVersion
  27. targetSdk = flutter.targetSdkVersion
  28. versionCode = flutter.versionCode
  29. versionName = flutter.versionName
  30. }
  31. buildTypes {
  32. release {
  33. // TODO: Add your own signing config for the release build.
  34. // Signing with the debug keys for now, so `flutter run --release` works.
  35. signingConfig = signingConfigs.debug
  36. }
  37. }
  38. }
  39. flutter {
  40. source = "../.."
  41. }
  42. apply plugin: 'com.google.gms.google-services'