build.gradle 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. def localProperties = new Properties()
  2. def localPropertiesFile = rootProject.file('local.properties')
  3. if (localPropertiesFile.exists()) {
  4. localPropertiesFile.withReader('UTF-8') { reader ->
  5. localProperties.load(reader)
  6. }
  7. }
  8. def flutterRoot = localProperties.getProperty('flutter.sdk')
  9. if (flutterRoot == null) {
  10. throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.")
  11. }
  12. def flutterVersionCode = localProperties.getProperty('flutter.versionCode')
  13. if (flutterVersionCode == null) {
  14. flutterVersionCode = '1'
  15. }
  16. def flutterVersionName = localProperties.getProperty('flutter.versionName')
  17. if (flutterVersionName == null) {
  18. flutterVersionName = '1.0'
  19. }
  20. apply plugin: 'com.android.application'
  21. apply plugin: 'kotlin-android'
  22. apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"
  23. def keystorePropertiesFile = rootProject.file("key.properties")
  24. def keystoreProperties = new Properties()
  25. keystoreProperties.load(new FileInputStream(keystorePropertiesFile))
  26. android {
  27. compileSdkVersion 29
  28. sourceSets {
  29. main.java.srcDirs += 'src/main/kotlin'
  30. }
  31. lintOptions {
  32. disable 'InvalidPackage'
  33. }
  34. defaultConfig {
  35. // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
  36. applicationId "com.example.movie"
  37. minSdkVersion 19
  38. targetSdkVersion 29
  39. versionCode flutterVersionCode.toInteger()
  40. versionName flutterVersionName
  41. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  42. }
  43. signingConfigs {
  44. release {
  45. keyAlias keystoreProperties['keyAlias']
  46. keyPassword keystoreProperties['keyPassword']
  47. storeFile file(keystoreProperties['storeFile'])
  48. storePassword keystoreProperties['storePassword']
  49. }
  50. }
  51. buildTypes {
  52. release {
  53. // TODO: Add your own signing config for the release build.
  54. // Signing with the debug keys for now, so `flutter run --release` works.
  55. signingConfig signingConfigs.debug
  56. }
  57. }
  58. }
  59. flutter {
  60. source '../..'
  61. }
  62. dependencies {
  63. implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
  64. testImplementation 'junit:junit:4.12'
  65. androidTestImplementation 'com.android.support.test:runner:1.0.2'
  66. androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
  67. }