build.gradle 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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 31
  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.ysairplane2"
  37. minSdkVersion 19
  38. targetSdkVersion 31
  39. versionCode flutterVersionCode.toInteger()
  40. versionName flutterVersionName
  41. manifestPlaceholders = [
  42. JPUSH_PKGNAME: "com.example.ysairplane2",
  43. JPUSH_APPKEY : "9a0d84408a11c073527fdaeb", /*NOTE: JPush 上注册的包名对应的 Appkey.*/
  44. JPUSH_CHANNEL: "developer-default", /*暂时填写默认值即可.*/
  45. ]
  46. multiDexEnabled true
  47. }
  48. signingConfigs {
  49. release {
  50. keyAlias keystoreProperties['keyAlias']
  51. keyPassword keystoreProperties['keyPassword']
  52. storeFile file(keystoreProperties['storeFile'])
  53. storePassword keystoreProperties['storePassword']
  54. }
  55. }
  56. buildTypes {
  57. release {
  58. minifyEnabled false
  59. shrinkResources false
  60. consumerProguardFiles "proguard-rules.pro"
  61. signingConfig signingConfigs.release
  62. }
  63. debug {
  64. signingConfig signingConfigs.release
  65. }
  66. }
  67. // buildTypes {
  68. // release {
  69. // minifyEnabled false
  70. // shrinkResources false
  71. // consumerProguardFiles "proguard-rules.pro"
  72. // signingConfig signingConfigs.release
  73. // }
  74. // }
  75. }
  76. flutter {
  77. source '../..'
  78. }
  79. dependencies {
  80. implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
  81. implementation 'com.tencent.map:tencent-map-vector-sdk:4.3.4'
  82. implementation 'com.tencent.map.geolocation:TencentLocationSdk-openplatform:7.2.6'
  83. }